diff options
Diffstat (limited to 'gprof/configure')
-rwxr-xr-x | gprof/configure | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/gprof/configure b/gprof/configure index 5a9c81e..3d6b415 100755 --- a/gprof/configure +++ b/gprof/configure @@ -12004,6 +12004,9 @@ fi +# Set the 'development' global. +. $srcdir/../bfd/development.sh + GCC_WARN_CFLAGS="-W -Wall -Wstrict-prototypes -Wmissing-prototypes" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ @@ -12038,8 +12041,8 @@ case "${host}" in *) ;; esac -# Enable -Werror by default when using gcc -if test "${GCC}" = yes -a -z "${ERROR_ON_WARNING}" ; then +# Enable -Werror by default when using gcc. Turn it off for releases. +if test "${GCC}" = yes -a -z "${ERROR_ON_WARNING}" -a "$development" = true ; then ERROR_ON_WARNING=yes fi |