put debug -DFOO stuff into CPPFLAGS, not CFLAGS, so CFLAGS can be

* configure.in: put debug -DFOO stuff into CPPFLAGS, not CFLAGS,
so CFLAGS can be overridden at make time properly

-Yosh
This commit is contained in:
Manish Singh 1998-11-29 22:21:13 +00:00
parent e666e8125f
commit 4f0565f380
9 changed files with 42 additions and 2 deletions

View 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.

View 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.

View 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.

View 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.

View 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.

View 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.

View 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.

View 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.

View 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