diff options
author | Tuncer Ayaz <[email protected]> | 2012-10-11 19:13:46 +0200 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2013-01-11 19:57:35 +0100 |
commit | 37fb3503c4b1467d2b28f407b9c27c1de147869e (patch) | |
tree | b85c8f0d8655d23392f2d6f455d0d9dc83976d6c /lib/wx/configure.in | |
parent | 8df9bc2fc2336245d26bdcf386fee43904d2b34b (diff) | |
download | otp-37fb3503c4b1467d2b28f407b9c27c1de147869e.tar.gz otp-37fb3503c4b1467d2b28f407b9c27c1de147869e.tar.bz2 otp-37fb3503c4b1467d2b28f407b9c27c1de147869e.zip |
If GCC is used, treat -Wreturn-type as error
Diffstat (limited to 'lib/wx/configure.in')
-rwxr-xr-x | lib/wx/configure.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/wx/configure.in b/lib/wx/configure.in index 7b35fed672..0d3a3c11b3 100755 --- a/lib/wx/configure.in +++ b/lib/wx/configure.in @@ -621,6 +621,12 @@ fi dnl - if test "$WXERL_CAN_BUILD_DRIVER" != "false" AC_SUBST(WXERL_CAN_BUILD_DRIVER) +if test "x$GCC" = xyes; then + # Treat certain GCC warnings as errors + LM_TRY_ENABLE_CFLAG([-Werror=return-type], [CFLAGS]) + LM_TRY_ENABLE_CFLAG([-Werror=return-type], [CXXFLAGS]) +fi + ############################################################################# dnl |