mirror of
https://github.com/postgres/postgres.git
synced 2025-07-28 23:42:10 +03:00
Enable WAL in config.h, not Makefile.global.
This commit is contained in:
@ -1,5 +1,5 @@
|
|||||||
# -*-makefile-*-
|
# -*-makefile-*-
|
||||||
# $Header: /cvsroot/pgsql/src/Makefile.global.in,v 1.112 2000/11/20 05:18:38 vadim Exp $
|
# $Header: /cvsroot/pgsql/src/Makefile.global.in,v 1.113 2000/11/20 16:52:54 petere Exp $
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
# All PostgreSQL makefiles include this file and use the variables it sets,
|
# All PostgreSQL makefiles include this file and use the variables it sets,
|
||||||
@ -146,8 +146,6 @@ ifeq ($(GCC), yes)
|
|||||||
CFLAGS += -Wall -Wmissing-prototypes -Wmissing-declarations
|
CFLAGS += -Wall -Wmissing-prototypes -Wmissing-declarations
|
||||||
endif
|
endif
|
||||||
|
|
||||||
CFLAGS += -DXLOG
|
|
||||||
|
|
||||||
CXX = @CXX@
|
CXX = @CXX@
|
||||||
GXX = @GXX@
|
GXX = @GXX@
|
||||||
CXXFLAGS = @CXXFLAGS@
|
CXXFLAGS = @CXXFLAGS@
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
* or in config.h afterwards. Of course, if you edit config.h, then your
|
* or in config.h afterwards. Of course, if you edit config.h, then your
|
||||||
* changes will be overwritten the next time you run configure.
|
* changes will be overwritten the next time you run configure.
|
||||||
*
|
*
|
||||||
* $Id: config.h.in,v 1.148 2000/11/20 15:56:13 petere Exp $
|
* $Id: config.h.in,v 1.149 2000/11/20 16:52:54 petere Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef CONFIG_H
|
#ifndef CONFIG_H
|
||||||
@ -234,6 +234,9 @@
|
|||||||
# define HAVE_UNIX_SOCKETS 1
|
# define HAVE_UNIX_SOCKETS 1
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/* Enable WAL. Don't disable this, it was only used during development. */
|
||||||
|
#define XLOG 1
|
||||||
|
|
||||||
/*
|
/*
|
||||||
*------------------------------------------------------------------------
|
*------------------------------------------------------------------------
|
||||||
* These hand-configurable symbols are for enabling debugging code,
|
* These hand-configurable symbols are for enabling debugging code,
|
||||||
|
Reference in New Issue
Block a user