Rename switch to enable/disable -Werror to --enable-werror/--disable-werror

for compatibility with gcc.
This commit is contained in:
Nick Clifton
2005-03-16 17:18:17 +00:00
parent ec442778f9
commit 569acd2ce2
18 changed files with 83 additions and 83 deletions

View File

@@ -1,9 +1,9 @@
2005-03-16 Nick Clifton <nickc@redhat.com>
Ben Elliston <bje@au.ibm.com>
* configure.in (error-on-warning): New switch: Add -Werror to the
* configure.in (werror): New switch: Add -Werror to the
compiler command line. Enabled by default. Disable via
--disable-error-on-warning.
--disable-werror.
* configure: Regenerate.
2005-03-15 Daniel Marques <marques@cs.cornell.edu>

14
binutils/configure vendored
View File

@@ -28,7 +28,7 @@ ac_help="$ac_help
ac_help="$ac_help
--enable-commonbfdlib build shared BFD/opcodes/libiberty library"
ac_help="$ac_help
--enable-error-on-warning treat compile warnings as errors"
--enable-werror treat compile warnings as errors"
ac_help="$ac_help
--enable-build-warnings Enable build-time compiler warnings if gcc is used"
ac_help="$ac_help
@@ -2209,24 +2209,24 @@ fi
build_warnings="-W -Wall -Wstrict-prototypes -Wmissing-prototypes"
# Check whether --enable-error-on-warning or --disable-error-on-warning was given.
if test "${enable_error_on_warning+set}" = set; then
enableval="$enable_error_on_warning"
# Check whether --enable-werror or --disable-werror was given.
if test "${enable_werror+set}" = set; then
enableval="$enable_werror"
case "${enableval}" in
yes | y) ERROR_ON_WARNING="yes" ;;
no | n) ERROR_ON_WARNING="no" ;;
*) { echo "configure: error: bad value ${enableval} for --enable-error-on-warning" 1>&2; exit 1; } ;;
*) { echo "configure: error: bad value ${enableval} for --enable-werror" 1>&2; exit 1; } ;;
esac
fi
# Enable -Werror by default, suppressing it only for --disable-error-on-warning
# Enable -Werror by default, suppressing it only for --disable-werror
# or --disable-build-warnings.
if test "${ERROR_ON_WARNING}" != no
then
build_warnings="$build_warnings -Werror"
fi
# Check whether --enable-build-warnings or --disable-build-warnings was given.
if test "${enable_build_warnings+set}" = set; then
enableval="$enable_build_warnings"

View File

@@ -31,21 +31,21 @@ esac])dnl
build_warnings="-W -Wall -Wstrict-prototypes -Wmissing-prototypes"
AC_ARG_ENABLE(error-on-warning,
[ --enable-error-on-warning treat compile warnings as errors],
AC_ARG_ENABLE(werror,
[ --enable-werror treat compile warnings as errors],
[case "${enableval}" in
yes | y) ERROR_ON_WARNING="yes" ;;
no | n) ERROR_ON_WARNING="no" ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-error-on-warning) ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-werror) ;;
esac])
# Enable -Werror by default, suppressing it only for --disable-error-on-warning
# Enable -Werror by default, suppressing it only for --disable-werror
# or --disable-build-warnings.
if test "${ERROR_ON_WARNING}" != no
then
build_warnings="$build_warnings -Werror"
fi
AC_ARG_ENABLE(build-warnings,
[ --enable-build-warnings Enable build-time compiler warnings if gcc is used],
[case "${enableval}" in