diff options
author | Jason Molenda <jmolenda@apple.com> | 1998-09-25 03:04:03 +0000 |
---|---|---|
committer | Jason Molenda <jmolenda@apple.com> | 1998-09-25 03:04:03 +0000 |
commit | 4817b40893ad3836543d8254269860687578dd3d (patch) | |
tree | bc99e9ead27335e65f0e4dfe9e8292aa709de454 /gdb/configure.in | |
parent | 4b23e55c624b367e13310864ecc43bda71c5e006 (diff) | |
download | gdb-4817b40893ad3836543d8254269860687578dd3d.zip gdb-4817b40893ad3836543d8254269860687578dd3d.tar.gz gdb-4817b40893ad3836543d8254269860687578dd3d.tar.bz2 |
1998-09-24 Jason Molenda (jsm@bugshack.cygnus.com)
* configure.in: Change --enable-warnings to --enable-build-warnings.
* configure: Updated.
Diffstat (limited to 'gdb/configure.in')
-rw-r--r-- | gdb/configure.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/configure.in b/gdb/configure.in index ad552d7..a177c4b 100644 --- a/gdb/configure.in +++ b/gdb/configure.in @@ -279,14 +279,14 @@ if test "${enable_netrom}" = "yes"; then fi AC_ARG_ENABLE(warnings, -[ --enable-warnings Enable compiler warnings if gcc is used], +[ --enable-build-warnings Enable compiler warnings if gcc is used], [case "${enableval}" in -yes) enable_warnings=yes ;; -no) enable_warnings=no ;; +yes) enable_build_warnings=yes ;; +no) enable_build_warnings=no ;; *) AC_MSG_ERROR(bad value ${enableval} given for warnings options) ;; esac]) -if test "x$enable_warnings" = xyes -a "x$GCC" = xyes +if test "x$enable_build_warnings" = xyes -a "x$GCC" = xyes then WARN_CFLAGS="-Wall -Wstrict-prototypes -Wmissing-prototypes" else |