diff options
author | hobbs <hobbs> | 2007-02-19 23:49:33 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2007-02-19 23:49:33 (GMT) |
commit | 97978900be292e6ee29c76072cf5e5f5d61de68b (patch) | |
tree | 64d932a9665719becb7f46e89a44cd608bbae5e3 /unix/tcl.m4 | |
parent | ad885f8be5199baa5f321468fa6b6c0a3d1b8055 (diff) | |
download | tcl-97978900be292e6ee29c76072cf5e5f5d61de68b.zip tcl-97978900be292e6ee29c76072cf5e5f5d61de68b.tar.gz tcl-97978900be292e6ee29c76072cf5e5f5d61de68b.tar.bz2 |
* unix/tcl.m4: use SHLIB_SUFFIX=".so" on HP-UX ia64 arch.
* unix/configure: autoconf-2.13
Diffstat (limited to 'unix/tcl.m4')
-rw-r--r-- | unix/tcl.m4 | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/unix/tcl.m4 b/unix/tcl.m4 index 16cccd9..24a0899 100644 --- a/unix/tcl.m4 +++ b/unix/tcl.m4 @@ -1198,7 +1198,11 @@ dnl AC_CHECK_TOOL(AR, ar) AC_DEFINE(_XOPEN_SOURCE_EXTENDED) # Use the XOPEN network library LIBS="$LIBS -lxnet" # Use the XOPEN network library - SHLIB_SUFFIX=".sl" + if test "`uname -m`" = "ia64" ; then + SHLIB_SUFFIX=".so" + else + SHLIB_SUFFIX=".sl" + fi AC_CHECK_LIB(dld, shl_load, tcl_ok=yes, tcl_ok=no) if test "$tcl_ok" = yes; then SHLIB_CFLAGS="+z" |