diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2011-02-21 18:57:56 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2011-02-21 20:53:42 +0800 |
commit | 24915e378ea1cd185acb406e4f69ddb029f6aea2 (patch) | |
tree | e4a6deb0fe07b32acd74fd0437e212e0738efce6 /configure.ac | |
parent | f80ac5a563fe7e7b88f7c3f3b737907792dae355 (diff) | |
download | gsoc2013-empathy-24915e378ea1cd185acb406e4f69ddb029f6aea2.tar gsoc2013-empathy-24915e378ea1cd185acb406e4f69ddb029f6aea2.tar.gz gsoc2013-empathy-24915e378ea1cd185acb406e4f69ddb029f6aea2.tar.bz2 gsoc2013-empathy-24915e378ea1cd185acb406e4f69ddb029f6aea2.tar.lz gsoc2013-empathy-24915e378ea1cd185acb406e4f69ddb029f6aea2.tar.xz gsoc2013-empathy-24915e378ea1cd185acb406e4f69ddb029f6aea2.tar.zst gsoc2013-empathy-24915e378ea1cd185acb406e4f69ddb029f6aea2.zip |
re-enable strict-prototypes warning
It seems that GTK+ has been fixed
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index c7d18a0ba..80aa724f3 100644 --- a/configure.ac +++ b/configure.ac @@ -133,8 +133,7 @@ AS_COMPILER_FLAG(-Wdeclaration-after-statement, ERROR_CFLAGS="$ERROR_CFLAGS -Wde AS_COMPILER_FLAG(-Wshadow, ERROR_CFLAGS="$ERROR_CFLAGS -Wshadow") AS_COMPILER_FLAG(-Wmissing-prototypes, ERROR_CFLAGS="$ERROR_CFLAGS -Wmissing-prototypes") AS_COMPILER_FLAG(-Wmissing-declarations, ERROR_CFLAGS="$ERROR_CFLAGS -Wmissing-declarations") -# Disabled because some GTK+ headers (like gtkitemfactory.h) are bugged :( -#AS_COMPILER_FLAG(-Wstrict-prototypes, ERROR_CFLAGS="$ERROR_CFLAGS -Wstrict-prototypes") +AS_COMPILER_FLAG(-Wstrict-prototypes, ERROR_CFLAGS="$ERROR_CFLAGS -Wstrict-prototypes") AC_SUBST(ERROR_CFLAGS) |