summaryrefslogtreecommitdiffstats
path: root/unix/configure
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2017-05-23 13:25:07 (GMT)
committerdgp <dgp@users.sourceforge.net>2017-05-23 13:25:07 (GMT)
commit4cd1e4ceff0f24728a6444ac699b58a3461f8447 (patch)
tree33067220a99eb9d89322eb8a9274e1302374739b /unix/configure
parent63e77cfac497ed6dc339c4b229d28bb30951e939 (diff)
parentf6e07341e6d9bc5be18d57dc08c1bed03f036212 (diff)
downloadtcl-4cd1e4ceff0f24728a6444ac699b58a3461f8447.zip
tcl-4cd1e4ceff0f24728a6444ac699b58a3461f8447.tar.gz
tcl-4cd1e4ceff0f24728a6444ac699b58a3461f8447.tar.bz2
merge 8.6
Diffstat (limited to 'unix/configure')
-rwxr-xr-xunix/configure10
1 files changed, 7 insertions, 3 deletions
diff --git a/unix/configure b/unix/configure
index 4133a9a..39076a4 100755
--- a/unix/configure
+++ b/unix/configure
@@ -6650,8 +6650,10 @@ fi
PLAT_OBJS=""
PLAT_SRCS=""
LDAIX_SRC=""
- if test x"${SHLIB_VERSION}" = x; then
- SHLIB_VERSION="1.0"
+ if test "x${SHLIB_VERSION}" = x; then
+ SHLIB_VERSION=".1.0"
+else
+ SHLIB_VERSION=".${SHLIB_VERSION}"
fi
case $system in
@@ -7525,6 +7527,8 @@ fi
esac
SHLIB_LD='${CC} -shared ${SHLIB_CFLAGS}'
SHLIB_SUFFIX=".so"
+ DL_OBJS="tclLoadDl.o"
+ DL_LIBS=""
if test $doRpath = yes; then
CC_SEARCH_FLAGS='-Wl,-rpath,${LIB_RUNTIME_DIR}'
@@ -8272,7 +8276,7 @@ fi
# requires an extra version number at the end of .so file names.
# So, the library has to have a name like libtcl75.so.1.0
- SHARED_LIB_SUFFIX='${TCL_TRIM_DOTS}.so.${SHLIB_VERSION}'
+ SHARED_LIB_SUFFIX='${TCL_TRIM_DOTS}.so${SHLIB_VERSION}'
UNSHARED_LIB_SUFFIX='${TCL_TRIM_DOTS}.a'
TCL_LIB_VERSIONS_OK=nodots
;;