summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@redhat.com>2016-04-29 13:12:03 +0200
committerNikos Mavrogiannopoulos <nmav@redhat.com>2016-04-29 13:12:03 +0200
commit67197e259aa8be1ce2ae4b048e01a9521572fc48 (patch)
tree26514c19015f9fca0338644639be24cff0ddd696
parenta74525a5b5b028d71ed9d0a50af7fa1f6ed61645 (diff)
downloadlibtasn1-67197e259aa8be1ce2ae4b048e01a9521572fc48.tar.gz
configure: enable all gcc warnings by default
-rw-r--r--configure.ac6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index cb6cb6e..09658bd 100644
--- a/configure.ac
+++ b/configure.ac
@@ -59,14 +59,14 @@ gl_INIT
lgl_INIT
AC_ARG_ENABLE([gcc-warnings],
- [AS_HELP_STRING([--enable-gcc-warnings],
- [turn on lots of GCC warnings (for developers)])],
+ [AS_HELP_STRING([--disable-gcc-warnings],
+ [disable GCC warnings (for developers)])],
[case $enableval in
yes|no) ;;
*) AC_MSG_ERROR([bad value $enableval for gcc-warnings option]) ;;
esac
gl_gcc_warnings=$enableval],
- [gl_gcc_warnings=no]
+ [gl_gcc_warnings=yes]
)
if test "$gl_gcc_warnings" = yes; then