1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-01-29 02:32:11 +01:00

Merge of 23726: Roy Marples: need to suppress [...] quoting in case in configure.

This commit is contained in:
Paul Ackersviller 2007-11-24 23:15:32 +00:00
parent 6f11d4ea0d
commit 3fdf7a77f2

View file

@ -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"