diff options
author | George Lebl <jirka@5z.com> | 2003-07-29 23:42:20 +0000 |
---|---|---|
committer | George Lebl <jirka@src.gnome.org> | 2003-07-29 23:42:20 +0000 |
commit | 3b69044e26dd2a71b357dc1b4ef3262bbdca8cdb (patch) | |
tree | cf5f537c2491296acdd13b2ad8178c0e239772a7 /configure.in | |
parent | 43e5654ab3599bd69a720dfa555e9e9c578b7c10 (diff) | |
download | gdm-3b69044e26dd2a71b357dc1b4ef3262bbdca8cdb.tar.gz |
fix the GNOME_COMPILE_WARNINGS and remove GNOME_COMMON_INIT, fixes #118578
Tue Jul 29 16:39:51 2003 George Lebl <jirka@5z.com>
* configure.in: fix the GNOME_COMPILE_WARNINGS and remove
GNOME_COMMON_INIT, fixes #118578
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 18 |
1 files changed, 2 insertions, 16 deletions
diff --git a/configure.in b/configure.in index a7fe1e7c..0f627cff 100644 --- a/configure.in +++ b/configure.in @@ -97,32 +97,18 @@ else fi fi -dnl -dnl Standard stuff -dnl -GNOME_COMMON_INIT - AC_ISC_POSIX AC_PROG_CC AC_STDC_HEADERS dnl AC_ARG_PROGRAM AM_PROG_LIBTOOL -changequote(,)dnl -if test "x$GCC" = "xyes"; then - case " $CFLAGS " in - *[\ \ ]-Wall[\ \ ]*) ;; - *) CFLAGS="$CFLAGS -Wall -Wpointer-arith -Wmissing-prototypes -Wmissing-declarations" ;; - esac -fi -changequote([,])dnl - - AC_PATH_XTRA AC_CHECK_TYPE(socklen_t,size_t) AC_CHECK_FUNCS([setresuid setenv unsetenv clearenv]) -GNOME_COMPILER_WARNINGS +GNOME_COMPILE_WARNINGS +CFLAGS="$CFLAGS $WARN_CFLAGS" PKG_CHECK_MODULES(DAEMON, gdk-pixbuf-2.0 >= $GDK_PIXBUF_REQUIRED gtk+-2.0 >= $GTK_REQUIRED) AC_SUBST(DAEMON_CFLAGS) |