diff options
author | hobbs <hobbs> | 2007-02-19 23:51:06 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2007-02-19 23:51:06 (GMT) |
commit | b0f20f7621b7a266aa45d3f289e913e510986ce1 (patch) | |
tree | e01f3349dbd741513ced9f83a3b30e60fccab98e /unix/configure | |
parent | 96466cfddf10a573f506e12f2414c193d3418c66 (diff) | |
download | tcl-b0f20f7621b7a266aa45d3f289e913e510986ce1.zip tcl-b0f20f7621b7a266aa45d3f289e913e510986ce1.tar.gz tcl-b0f20f7621b7a266aa45d3f289e913e510986ce1.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 36f9740..5cc036e 100755 --- a/unix/configure +++ b/unix/configure @@ -6898,7 +6898,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 |