about summary refs log tree commit diff
path: root/configure.ac
diff options
context:
space:
mode:
authorPaul Ackersviller <packersv@users.sourceforge.net>2007-11-24 23:15:32 +0000
committerPaul Ackersviller <packersv@users.sourceforge.net>2007-11-24 23:15:32 +0000
commit3fdf7a77f200042a4086bb05d4c99e85b7598292 (patch)
treea51d6dfd50a28d4417f7c6febe87f69f7333155b /configure.ac
parent6f11d4ea0de1f41b495ef5fabfb0a53d08ed5b88 (diff)
downloadzsh-3fdf7a77f200042a4086bb05d4c99e85b7598292.tar.gz
zsh-3fdf7a77f200042a4086bb05d4c99e85b7598292.tar.xz
zsh-3fdf7a77f200042a4086bb05d4c99e85b7598292.zip
Merge of 23726: Roy Marples: 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 840b5dbec..a5d99a637 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2167,6 +2167,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 $zsh_cv_sys_elf = yes; then
     case "$host" in
@@ -2269,6 +2273,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"