From 3b57812e2994c4c7522345ad8bbcf661a26c010d Mon Sep 17 00:00:00 2001 From: "Jasper St. Pierre" Date: Fri, 18 Jan 2013 23:17:41 -0500 Subject: [PATCH] configure.ac: Use GNOME_COMPILE_WARNINGS This is now implemented as standard in gnome-common. https://bugzilla.gnome.org/show_bug.cgi?id=692052 --- configure.ac | 27 +-------------------------- 1 file changed, 1 insertion(+), 26 deletions(-) diff --git a/configure.ac b/configure.ac index c8600f052..dcfd250d0 100644 --- a/configure.ac +++ b/configure.ac @@ -223,32 +223,7 @@ if test "$enable_man" != no; then fi AM_CONDITIONAL(ENABLE_MAN, test "$enable_man" != no) -# Stay command-line compatible with the gnome-common configure option. Here -# minimum/yes/maximum are the same, however. -AC_ARG_ENABLE(compile_warnings, - AS_HELP_STRING([--enable-compile-warnings=@<:@no/minimum/yes/maximum/error@:>@],[Turn on compiler warnings]),, - enable_compile_warnings=error) - -changequote(,)dnl -if test "$enable_compile_warnings" != no ; then - if test "x$GCC" = "xyes"; then - case " $CFLAGS " in - *[\ \ ]-Wall[\ \ ]*) ;; - *) CFLAGS="$CFLAGS -Wall" ;; - esac - case " $CFLAGS " in - *[\ \ ]-Wmissing-prototypes[\ \ ]*) ;; - *) CFLAGS="$CFLAGS -Wmissing-prototypes" ;; - esac - if test "$enable_compile_warnings" = error ; then - case " $CFLAGS " in - *[\ \ ]-Werror[\ \ ]*) ;; - *) CFLAGS="$CFLAGS -Werror -Wno-error=deprecated-declarations" ;; - esac - fi - fi -fi -changequote([,])dnl +GNOME_COMPILE_WARNINGS([error]) AC_ARG_ENABLE(jhbuild-wrapper-script, AS_HELP_STRING([--enable-jhbuild-wrapper-script],[Make "gnome-shell" script work for jhbuild]),,enable_jhbuild_wrapper_script=no)