diff options
author | Peter Foley <pefoley2@pefoley.com> | 2016-03-31 14:04:16 -0400 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2016-04-01 13:46:04 +0200 |
commit | 02cfe004458f20f95539db14251f2473a842fc95 (patch) | |
tree | 9d848b4302f35b60d29fedca9511ba82dd8b74db /winsup/cygwin/configure | |
parent | 5d89883790130e0104111131a25bfded19ff5c16 (diff) | |
download | newlib-02cfe004458f20f95539db14251f2473a842fc95.zip newlib-02cfe004458f20f95539db14251f2473a842fc95.tar.gz newlib-02cfe004458f20f95539db14251f2473a842fc95.tar.bz2 |
Don't use deprecated acconfig.h for DEBUGGING
Use the 3-arg form of AC_DEFINE.
winsup/cygwin/ChangeLog:
acconfig.h: Remove DEBUGGING define.
configure.ac: Add description to DEBUGGING define.
config.h.in: Regenerate.
configure: Ditto.
Signed-off-by: Peter Foley <pefoley2@pefoley.com>
Diffstat (limited to 'winsup/cygwin/configure')
-rwxr-xr-x | winsup/cygwin/configure | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/winsup/cygwin/configure b/winsup/cygwin/configure index aa26015..30a1405 100755 --- a/winsup/cygwin/configure +++ b/winsup/cygwin/configure @@ -4427,7 +4427,8 @@ fi # Check whether --enable-debugging was given. if test "${enable_debugging+set}" = set; then : enableval=$enable_debugging; case "${enableval}" in -yes) $as_echo "#define DEBUGGING 1" >>confdefs.h +yes) +$as_echo "#define DEBUGGING 1" >>confdefs.h ;; no) ;; esac |