diff options
author | dgp <dgp@users.sourceforge.net> | 2017-05-23 13:25:07 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2017-05-23 13:25:07 (GMT) |
commit | 8a90be9a1087bff0553a828d64cb181cbd5504d9 (patch) | |
tree | 33067220a99eb9d89322eb8a9274e1302374739b /unix/configure | |
parent | 2f9e40fef10ab740283e34cf9679d62a78e56cda (diff) | |
parent | c571887777c0fea5679125daa68dc66e94e3f834 (diff) | |
download | tcl-8a90be9a1087bff0553a828d64cb181cbd5504d9.zip tcl-8a90be9a1087bff0553a828d64cb181cbd5504d9.tar.gz tcl-8a90be9a1087bff0553a828d64cb181cbd5504d9.tar.bz2 |
merge 8.6
Diffstat (limited to 'unix/configure')
-rwxr-xr-x | unix/configure | 10 |
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 ;; |