summaryrefslogtreecommitdiffstats
path: root/unix/configure
diff options
context:
space:
mode:
authorstu <stwo@users.sourceforge.net>2017-05-31 06:10:46 (GMT)
committerstu <stwo@users.sourceforge.net>2017-05-31 06:10:46 (GMT)
commita0b8a82e5511a9503eaa1fc5174be0e652e0fe6d (patch)
tree62bf50f4f6f0eab77abb09d08e92e56da1cdbd1c /unix/configure
parent7ce82f66426af0697c36c5252335fa40820c2307 (diff)
downloadtcl-a0b8a82e5511a9503eaa1fc5174be0e652e0fe6d.zip
tcl-a0b8a82e5511a9503eaa1fc5174be0e652e0fe6d.tar.gz
tcl-a0b8a82e5511a9503eaa1fc5174be0e652e0fe6d.tar.bz2
Unbreak on OpenBSD, again. Put back the old SHLIB_VERSION doings.
On OpenBSD, Tcl's libs will need the extra version numbers probably forever. There's no point to adding the extra knob. On OpenBSD, the extra version numbers are used for dependency tracking. The extra version numbers must be on linkable libs (code will be linked to them, they have a corresponding .h file). Loadable libs (no code will be linked to them, they don't have a corresponding .h file. Usually a Tcl extension) don't need the burden (OpenBSD has to track the libs' dependencies) of the extra version numbers. Libs that are loadable and linkable are treated as linkable. I hope that clears things up.
Diffstat (limited to 'unix/configure')
-rwxr-xr-xunix/configure4
1 files changed, 1 insertions, 3 deletions
diff --git a/unix/configure b/unix/configure
index bef7c84..a9132b57 100755
--- a/unix/configure
+++ b/unix/configure
@@ -5085,9 +5085,7 @@ fi
PLAT_SRCS=""
LDAIX_SRC=""
if test "x${SHLIB_VERSION}" = x; then :
- SHLIB_VERSION=".1.0"
-else
- SHLIB_VERSION=".${SHLIB_VERSION}"
+ SHLIB_VERSION="1.0"
fi
case $system in
AIX-*)