summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--configure.in2
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index cae3a33f..7726b806 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
2003-08-15 Mikael Hallendal <micke@imendio.com>
+ * configure.in:
+ - Applied patch from Steve Chaplin that fixes the CFLAGS.
+ - Fixes bug #118984
+
+2003-08-15 Mikael Hallendal <micke@imendio.com>
+
* src/yelp-main.c:
(main_restore_session): Return FALSE, otherwise we'll try to start Yelp
from the session over and over again. Reported by Jody earlier.
diff --git a/configure.in b/configure.in
index 947ba1f5..fb9808f7 100644
--- a/configure.in
+++ b/configure.in
@@ -16,7 +16,7 @@ AM_PATH_GLIB_2_0
dnl NOTE : it appears that some systems do not like it when you use line
dnl continuation charactes to split CFLAGS into readable chunks
if test "x$GCC" = "xyes"; then
- CFLAGS="$CFLAGS -Wall -Wno-uninitialized -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-sign-compare -Wsign-promo"
+ CFLAGS="$CFLAGS -Wall -Wno-uninitialized -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-sign-compare"
fi
AC_SUBST(CFLAGS)