summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authortrawick <trawick@13f79535-47bb-0310-9956-ffa450edef68>2007-11-03 14:07:50 +0000
committertrawick <trawick@13f79535-47bb-0310-9956-ffa450edef68>2007-11-03 14:07:50 +0000
commitbb5937fd6c1916ac6db191b23217f39e3200cef7 (patch)
tree6e50b1f227ce90e0df94967a125823ff5d19505c /configure.in
parente2acaa7c32548d42b7f2e72500bc658072dd59e1 (diff)
downloadlibapr-bb5937fd6c1916ac6db191b23217f39e3200cef7.tar.gz
add missing autoconf/m4 quoting to correct the dso implementation
choice on older Darwin/OS X as well as HP-UX throw in a similar fix for detection of ancient AIX git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@591624 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.in b/configure.in
index b6c47e8f2..5d2b4173b 100644
--- a/configure.in
+++ b/configure.in
@@ -412,7 +412,7 @@ INSTALL_SUBDIRS="none"
OBJECTS_PLATFORM='$(OBJECTS_unix)'
case $host in
- i386-ibm-aix* | *-ibm-aix[1-2].* | *-ibm-aix3.* | *-ibm-aix4.1 | *-ibm-aix4.1.* | *-ibm-aix4.2 | *-ibm-aix4.2.*)
+ i386-ibm-aix* | *-ibm-aix[[1-2]].* | *-ibm-aix3.* | *-ibm-aix4.1 | *-ibm-aix4.1.* | *-ibm-aix4.2 | *-ibm-aix4.2.*)
OSDIR="aix"
APR_ADDTO(LDFLAGS,-lld)
eolstr="\\n"
@@ -1580,10 +1580,10 @@ AC_ARG_ENABLE(dso,
if test "$dsotype" = "any"; then
if test "$dsotype" = "any"; then
case $host in
- *darwin[0-8]\.*)
+ *darwin[[0-8]]\.*)
# Original Darwin, not for 9.0!:
AC_CHECK_FUNC(NSLinkModule, [dsotype=dyld]);;
- *-hpux[1-9]\.*|*-hpux1[01]*)
+ *-hpux[[1-9]]\.*|*-hpux1[[01]]*)
# shl is specific to hpux(?), and is suboptimal for 64 bit builds,
# and most unlikely to be the choice of 12.x developers.
AC_CHECK_LIB(dld, shl_load, [have_shl=1])