summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1999-04-27 22:06:08 (GMT)
committerGuido van Rossum <guido@python.org>1999-04-27 22:06:08 (GMT)
commita8acf72afa2a057cc72b86420e4ee3e17aece142 (patch)
tree168452aaaa527f356b409e46301d62d06684bdf9 /configure
parent3369927322ed163a98d955461e60d7e5e7f35f37 (diff)
downloadcpython-a8acf72afa2a057cc72b86420e4ee3e17aece142.zip
cpython-a8acf72afa2a057cc72b86420e4ee3e17aece142.tar.gz
cpython-a8acf72afa2a057cc72b86420e4ee3e17aece142.tar.bz2
Need to double the macro brackets in FreeBSD check.
(My fault, not Dom's -- he submitted a correct patch to configure.)
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure b/configure
index 8327722..9c99a21 100755
--- a/configure
+++ b/configure
@@ -1,6 +1,6 @@
#! /bin/sh
-# From configure.in Revision: 1.104
+# From configure.in Revision: 1.105
# Guess values for system-dependent variables and create Makefiles.
# Generated automatically using autoconf version 2.13
@@ -2246,7 +2246,7 @@ then
fi ;;
Linux*) LDSHARED="gcc -shared";;
dgux*) LDSHARED="ld -G";;
- FreeBSD*/34*) LDSHARED="gcc -shared";;
+ FreeBSD*/[34]*) LDSHARED="gcc -shared";;
FreeBSD*|OpenBSD*) LDSHARED="ld -Bshareable";;
NetBSD*)
if [ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]
@@ -2292,7 +2292,7 @@ then
AIX*) LINKFORSHARED='-Wl,-bE:python.exp -lld';;
hp*|HP*)
LINKFORSHARED="-Wl,-E -Wl,+s -Wl,+b\$(BINLIBDEST)/lib-dynload";;
- FreeBSD/34*) LINKFORSHARED="-Xlinker -export-dynamic";;
+ FreeBSD/[34]*) LINKFORSHARED="-Xlinker -export-dynamic";;
Linux*) LINKFORSHARED="-Xlinker -export-dynamic";;
# -u libsys_s pulls in all symbols in libsys
next/2*|next/3*) LINKFORSHARED="-u libsys_s";;