]> granicus.if.org Git - postgresql/commitdiff
Enable WAL in config.h, not Makefile.global.
authorPeter Eisentraut <peter_e@gmx.net>
Mon, 20 Nov 2000 16:52:54 +0000 (16:52 +0000)
committerPeter Eisentraut <peter_e@gmx.net>
Mon, 20 Nov 2000 16:52:54 +0000 (16:52 +0000)
src/Makefile.global.in
src/include/config.h.in

index 2789a8d0b43ac558e17a23e6df92e27cace29c56..72d489d38d531c0550182ed5cb6549342ab73ed7 100644 (file)
@@ -1,5 +1,5 @@
 # -*-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,
@@ -146,8 +146,6 @@ ifeq ($(GCC), yes)
   CFLAGS += -Wall -Wmissing-prototypes -Wmissing-declarations
 endif
 
-CFLAGS += -DXLOG
-
 CXX = @CXX@
 GXX = @GXX@
 CXXFLAGS = @CXXFLAGS@
index 4e36b9099a8870cb310cf92039f3ed7c000d1325..ab699b30f3cf1a17dd757656d292725630caf664 100644 (file)
@@ -8,7 +8,7 @@
  * or in config.h afterwards.  Of course, if you edit config.h, then your
  * 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
 # define HAVE_UNIX_SOCKETS 1
 #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,