summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikael Hallendal <micke@imendio.com>2003-08-15 04:32:06 +0000
committerMikael Hallendal <hallski@src.gnome.org>2003-08-15 04:32:06 +0000
commit78cab80b1ecf6931ab79b231bda65355d96ac902 (patch)
tree294cdaa66139bbf58729aa3206c93ad44a976839
parentcc1facf61bbc68d5dd3ee55c9f0611e6ab1c5fd4 (diff)
downloadyelp-78cab80b1ecf6931ab79b231bda65355d96ac902.tar.gz
- Applied patch from Steve Chaplin that fixes the CFLAGS. - Fixes bug
2003-08-15 Mikael Hallendal <micke@imendio.com> * configure.in: - Applied patch from Steve Chaplin that fixes the CFLAGS. - Fixes bug #118984
-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)