diff options
author | hobbs <hobbs> | 2007-02-19 23:52:45 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2007-02-19 23:52:45 (GMT) |
commit | c9eb2dc978954b137eddffea41b69be6efc4e0de (patch) | |
tree | c5e791bd9b1eaff57d9ba29b24ce6a592d2ac49c /unix/configure | |
parent | ed67f65a25da8dd9527cdbef6ad5e2433581d603 (diff) | |
download | tk-c9eb2dc978954b137eddffea41b69be6efc4e0de.zip tk-c9eb2dc978954b137eddffea41b69be6efc4e0de.tar.gz tk-c9eb2dc978954b137eddffea41b69be6efc4e0de.tar.bz2 |
* unix/tcl.m4: use SHLIB_SUFFIX=".so" on HP-UX ia64 arch.
* unix/configure: autoconf-2.59
Diffstat (limited to 'unix/configure')
-rwxr-xr-x | unix/configure | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/unix/configure b/unix/configure index d9d80cc..9487ac3 100755 --- a/unix/configure +++ b/unix/configure @@ -5174,7 +5174,11 @@ _ACEOF 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 echo "$as_me:$LINENO: checking for shl_load in -ldld" >&5 echo $ECHO_N "checking for shl_load in -ldld... $ECHO_C" >&6 if test "${ac_cv_lib_dld_shl_load+set}" = set; then |