Skip to content

Commit 99198ac

Browse files
committed
Enable WAL in config.h, not Makefile.global.
1 parent 2b1d8bd commit 99198ac

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

src/Makefile.global.in

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*-makefile-*-
2-
# $Header: /cvsroot/pgsql/src/Makefile.global.in,v 1.112 2000/11/20 05:18:38 vadim Exp $
2+
# $Header: /cvsroot/pgsql/src/Makefile.global.in,v 1.113 2000/11/20 16:52:54 petere Exp $
33

44
#------------------------------------------------------------------------------
55
# All PostgreSQL makefiles include this file and use the variables it sets,
@@ -146,8 +146,6 @@ ifeq ($(GCC), yes)
146146
CFLAGS += -Wall -Wmissing-prototypes -Wmissing-declarations
147147
endif
148148

149-
CFLAGS += -DXLOG
150-
151149
CXX = @CXX@
152150
GXX = @GXX@
153151
CXXFLAGS = @CXXFLAGS@

src/include/config.h.in

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* or in config.h afterwards. Of course, if you edit config.h, then your
99
* changes will be overwritten the next time you run configure.
1010
*
11-
* $Id: config.h.in,v 1.148 2000/11/20 15:56:13 petere Exp $
11+
* $Id: config.h.in,v 1.149 2000/11/20 16:52:54 petere Exp $
1212
*/
1313

1414
#ifndef CONFIG_H
@@ -234,6 +234,9 @@
234234
# define HAVE_UNIX_SOCKETS 1
235235
#endif
236236

237+
/* Enable WAL. Don't disable this, it was only used during development. */
238+
#define XLOG 1
239+
237240
/*
238241
*------------------------------------------------------------------------
239242
* These hand-configurable symbols are for enabling debugging code,

0 commit comments

Comments
 (0)