summaryrefslogtreecommitdiffstats
path: root/unix/configure
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2014-03-20 14:45:05 (GMT)
committerdgp <dgp@users.sourceforge.net>2014-03-20 14:45:05 (GMT)
commit4033e67b9e4a36d0f19804bfca308d32c12d4af2 (patch)
treef6e96d15ab33319625c6c8bb87edde2cbe68d626 /unix/configure
parenta174107efac416856e4183ea90821edac8c266b2 (diff)
parent088a4cf13f80f2f550ea83ae3e1cb085449aa424 (diff)
downloadtcl-4033e67b9e4a36d0f19804bfca308d32c12d4af2.zip
tcl-4033e67b9e4a36d0f19804bfca308d32c12d4af2.tar.gz
tcl-4033e67b9e4a36d0f19804bfca308d32c12d4af2.tar.bz2
merge 8.5
Diffstat (limited to 'unix/configure')
-rwxr-xr-xunix/configure22
1 files changed, 9 insertions, 13 deletions
diff --git a/unix/configure b/unix/configure
index 6800fe2..1b2ea41 100755
--- a/unix/configure
+++ b/unix/configure
@@ -7639,14 +7639,6 @@ fi
fi
- case $system in
- FreeBSD-3.*)
- # FreeBSD-3 doesn't handle version numbers with dots.
- UNSHARED_LIB_SUFFIX='${TCL_TRIM_DOTS}.a'
- SHARED_LIB_SUFFIX='${TCL_TRIM_DOTS}.so'
- TCL_LIB_VERSIONS_OK=nodots
- ;;
- esac
;;
FreeBSD-*)
# This configuration from FreeBSD Ports.
@@ -7672,11 +7664,15 @@ fi
LDFLAGS="$LDFLAGS $PTHREAD_LIBS"
fi
- # Version numbers are dot-stripped by system policy.
- TCL_TRIM_DOTS=`echo ${VERSION} | tr -d .`
- UNSHARED_LIB_SUFFIX='${TCL_TRIM_DOTS}.a'
- SHARED_LIB_SUFFIX='${TCL_TRIM_DOTS}\$\{DBGX\}.so.1'
- TCL_LIB_VERSIONS_OK=nodots
+ case $system in
+ FreeBSD-3.*)
+ # Version numbers are dot-stripped by system policy.
+ TCL_TRIM_DOTS=`echo ${VERSION} | tr -d .`
+ UNSHARED_LIB_SUFFIX='${TCL_TRIM_DOTS}.a'
+ SHARED_LIB_SUFFIX='${TCL_TRIM_DOTS}.so'
+ TCL_LIB_VERSIONS_OK=nodots
+ ;;
+ esac
;;
Darwin-*)
CFLAGS_OPTIMIZE="-Os"