aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2000-11-20 16:52:54 +0000
committerPeter Eisentraut <peter_e@gmx.net>2000-11-20 16:52:54 +0000
commit99198ac6b8d2003949a02a148f4483e2f95e7dd4 (patch)
tree6b684cfd20d9e5f37628bbb5b83aa25ca99c40cd
parent2b1d8bd29a3adb4facc2968ad666159c5567f77f (diff)
downloadpostgresql-99198ac6b8d2003949a02a148f4483e2f95e7dd4.tar.gz
postgresql-99198ac6b8d2003949a02a148f4483e2f95e7dd4.zip
Enable WAL in config.h, not Makefile.global.
-rw-r--r--src/Makefile.global.in4
-rw-r--r--src/include/config.h.in5
2 files changed, 5 insertions, 4 deletions
diff --git a/src/Makefile.global.in b/src/Makefile.global.in
index 2789a8d0b43..72d489d38d5 100644
--- a/src/Makefile.global.in
+++ b/src/Makefile.global.in
@@ -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@
diff --git a/src/include/config.h.in b/src/include/config.h.in
index 4e36b9099a8..ab699b30f3c 100644
--- a/src/include/config.h.in
+++ b/src/include/config.h.in
@@ -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
@@ -234,6 +234,9 @@
# 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,