about summary refs log tree commit diff
path: root/configure.ac
diff options
context:
space:
mode:
authorPeter Stephenson <pws@users.sourceforge.net>2007-08-16 10:54:40 +0000
committerPeter Stephenson <pws@users.sourceforge.net>2007-08-16 10:54:40 +0000
commitc05f1046d874fa51eb11c395ed1e2f2b184cddb5 (patch)
treee399388b55cf595dde263c004ac4d146ede8a3d9 /configure.ac
parentc9a9214740db8be90d8e01da8c526f2d5262af11 (diff)
downloadzsh-c05f1046d874fa51eb11c395ed1e2f2b184cddb5.tar.gz
zsh-c05f1046d874fa51eb11c395ed1e2f2b184cddb5.tar.xz
zsh-c05f1046d874fa51eb11c395ed1e2f2b184cddb5.zip
Roy Marples: 23762: need to suppress [...] quoting in case in configure
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac8
1 files changed, 8 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index ef555571c..bb50986d5 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2248,6 +2248,10 @@ char *argv[];
   zsh_cv_sys_elf=yes,
   zsh_cv_sys_elf=no,
   zsh_cv_sys_elf=yes)])
+
+  # We use [0-9]* in case statements, so need to change quoting
+  changequote(, )
+
   DL_EXT="${DL_EXT=so}"
   if test x$zsh_cv_sys_elf = xyes; then
     case "$host" in
@@ -2350,6 +2354,10 @@ char *argv[];
       esac
     ;;
   esac
+
+  # Done with our shell code, so restore autotools quoting
+  changequote([, ])
+
 AC_CACHE_CHECK(if we can use -rdynamic, zsh_cv_rdynamic_available,
 old_LDFLAGS="$LDFLAGS"
 LDFLAGS="$LDFLAGS -rdynamic"