put debug -DFOO stuff into CPPFLAGS, not CFLAGS, so CFLAGS can be
authorManish Singh <yosh@src.gnome.org>
Sun, 29 Nov 1998 22:21:13 +0000 (22:21 +0000)
committerManish Singh <yosh@src.gnome.org>
Sun, 29 Nov 1998 22:21:13 +0000 (22:21 +0000)
* configure.in: put debug -DFOO stuff into CPPFLAGS, not CFLAGS,
so CFLAGS can be overridden at make time properly

-Yosh

ChangeLog
ChangeLog.pre-2-0
ChangeLog.pre-2-10
ChangeLog.pre-2-12
ChangeLog.pre-2-2
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
configure.in

index c9eeed9..c76a615 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Sun Nov 29 14:17:09 PST 1998 Manish Singh <yosh@gimp.org>
+
+       * configure.in: put debug -DFOO stuff into CPPFLAGS, not CFLAGS,
+       so CFLAGS can be overridden at make time properly
+
 Sat Nov 28 01:23:25 1998  Tim Janik  <timj@gtk.org>
 
        * ghash.c: implemented incremental freezing facility.
index c9eeed9..c76a615 100644 (file)
@@ -1,3 +1,8 @@
+Sun Nov 29 14:17:09 PST 1998 Manish Singh <yosh@gimp.org>
+
+       * configure.in: put debug -DFOO stuff into CPPFLAGS, not CFLAGS,
+       so CFLAGS can be overridden at make time properly
+
 Sat Nov 28 01:23:25 1998  Tim Janik  <timj@gtk.org>
 
        * ghash.c: implemented incremental freezing facility.
index c9eeed9..c76a615 100644 (file)
@@ -1,3 +1,8 @@
+Sun Nov 29 14:17:09 PST 1998 Manish Singh <yosh@gimp.org>
+
+       * configure.in: put debug -DFOO stuff into CPPFLAGS, not CFLAGS,
+       so CFLAGS can be overridden at make time properly
+
 Sat Nov 28 01:23:25 1998  Tim Janik  <timj@gtk.org>
 
        * ghash.c: implemented incremental freezing facility.
index c9eeed9..c76a615 100644 (file)
@@ -1,3 +1,8 @@
+Sun Nov 29 14:17:09 PST 1998 Manish Singh <yosh@gimp.org>
+
+       * configure.in: put debug -DFOO stuff into CPPFLAGS, not CFLAGS,
+       so CFLAGS can be overridden at make time properly
+
 Sat Nov 28 01:23:25 1998  Tim Janik  <timj@gtk.org>
 
        * ghash.c: implemented incremental freezing facility.
index c9eeed9..c76a615 100644 (file)
@@ -1,3 +1,8 @@
+Sun Nov 29 14:17:09 PST 1998 Manish Singh <yosh@gimp.org>
+
+       * configure.in: put debug -DFOO stuff into CPPFLAGS, not CFLAGS,
+       so CFLAGS can be overridden at make time properly
+
 Sat Nov 28 01:23:25 1998  Tim Janik  <timj@gtk.org>
 
        * ghash.c: implemented incremental freezing facility.
index c9eeed9..c76a615 100644 (file)
@@ -1,3 +1,8 @@
+Sun Nov 29 14:17:09 PST 1998 Manish Singh <yosh@gimp.org>
+
+       * configure.in: put debug -DFOO stuff into CPPFLAGS, not CFLAGS,
+       so CFLAGS can be overridden at make time properly
+
 Sat Nov 28 01:23:25 1998  Tim Janik  <timj@gtk.org>
 
        * ghash.c: implemented incremental freezing facility.
index c9eeed9..c76a615 100644 (file)
@@ -1,3 +1,8 @@
+Sun Nov 29 14:17:09 PST 1998 Manish Singh <yosh@gimp.org>
+
+       * configure.in: put debug -DFOO stuff into CPPFLAGS, not CFLAGS,
+       so CFLAGS can be overridden at make time properly
+
 Sat Nov 28 01:23:25 1998  Tim Janik  <timj@gtk.org>
 
        * ghash.c: implemented incremental freezing facility.
index c9eeed9..c76a615 100644 (file)
@@ -1,3 +1,8 @@
+Sun Nov 29 14:17:09 PST 1998 Manish Singh <yosh@gimp.org>
+
+       * configure.in: put debug -DFOO stuff into CPPFLAGS, not CFLAGS,
+       so CFLAGS can be overridden at make time properly
+
 Sat Nov 28 01:23:25 1998  Tim Janik  <timj@gtk.org>
 
        * ghash.c: implemented incremental freezing facility.
index 95a2eda..dc529c0 100644 (file)
@@ -83,10 +83,10 @@ fi
 
 if test "x$enable_debug" = "xyes"; then
   test "$cflags_set" = set || CFLAGS="$CFLAGS -g"
-  CFLAGS="$CFLAGS -DG_ENABLE_DEBUG"
+  CPPFLAGS="$CPPFLAGS -DG_ENABLE_DEBUG"
 else
   if test "x$enable_debug" = "xno"; then
-    CFLAGS="$CFLAGS -DG_DISABLE_ASSERT -DG_DISABLE_CHECKS"
+    CPPFLAGS="$CPPFLAGS -DG_DISABLE_ASSERT -DG_DISABLE_CHECKS"
   fi
 fi