diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | configure.ac | 2 |
2 files changed, 7 insertions, 1 deletions
@@ -2,6 +2,12 @@ * dfa.c: Sync with GNU grep. + Unrelated: + + * configure.ac: Move AM_CONDITIONAL[ENABLE_EXTENSIONS] outside + the enclosing if. Thanks to Assaf Gordon <assafgordon@gmail.com> + for the report. + 2016-06-08 Arnold D. Robbins <arnold@skeeve.com> * symbol.c (lookup): If got Node_val, it's a non-variable diff --git a/configure.ac b/configure.ac index 62f79ece..58600f23 100644 --- a/configure.ac +++ b/configure.ac @@ -334,8 +334,8 @@ if test "x$enable_extensions" != "xno"; then AC_MSG_ERROR([extension support requested, but unavailable]) fi enable_extensions=$extensions_supported - AM_CONDITIONAL([ENABLE_EXTENSIONS], [test "x$enable_extensions" = "xyes"]) fi +AM_CONDITIONAL([ENABLE_EXTENSIONS], [test "x$enable_extensions" = "xyes"]) dnl check for how to use getpgrp dnl have to hardwire it for VMS POSIX. Sigh. |