diff options
author | stanton <stanton> | 1999-02-02 22:29:16 (GMT) |
---|---|---|
committer | stanton <stanton> | 1999-02-02 22:29:16 (GMT) |
commit | ed912f84b4997a7189cea10f63ea22c419c9fff0 (patch) | |
tree | bf20faf211cc60891d7d9da08a50a8e5f3aa877c /unix/configure.in | |
parent | ae08beafaca217726da76339786c87bbde65652a (diff) | |
download | tcl-ed912f84b4997a7189cea10f63ea22c419c9fff0.zip tcl-ed912f84b4997a7189cea10f63ea22c419c9fff0.tar.gz tcl-ed912f84b4997a7189cea10f63ea22c419c9fff0.tar.bz2 |
* unix/configure.in: Added branch for BSD/OS-4* to shared library
case statement. [Bug: 975]
Fixed to correctly handle IRIX 6.5 n32 library support. [Bug: 1117]
* unix/configure.in: Changed Linux and IRIX to set SHLIB_LIBS to
LIBS so shared libraries are linked with the system
libraries. [Bug: 1018]
Diffstat (limited to 'unix/configure.in')
-rw-r--r-- | unix/configure.in | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/unix/configure.in b/unix/configure.in index 0f7d6aa..8347361 100644 --- a/unix/configure.in +++ b/unix/configure.in @@ -2,7 +2,7 @@ dnl This file is an input file used by the GNU "autoconf" program to dnl generate the file "configure", which is run during Tcl installation dnl to configure the system for the local environment. AC_INIT(../generic/tcl.h) -# RCS: @(#) $Id: configure.in,v 1.25 1999/01/29 00:32:01 rjohnson Exp $ +# RCS: @(#) $Id: configure.in,v 1.26 1999/02/02 22:29:16 stanton Exp $ TCL_VERSION=8.0 TCL_MAJOR_VERSION=8 @@ -708,7 +708,7 @@ case $system in LD_SEARCH_FLAGS='-L${LIB_RUNTIME_DIR}' TCL_SHARED_LIB_SUFFIX='${VERSION}\$\{DBGX\}.a' ;; - BSD/OS-2.1*|BSD/OS-3*) + BSD/OS-2.1*|BSD/OS-3*|BSD/OS-4*) SHLIB_CFLAGS="" SHLIB_LD="shlicc -r" SHLIB_LD_LIBS='${LIBS}' @@ -752,10 +752,10 @@ case $system in LD_SEARCH_FLAGS='-L${LIB_RUNTIME_DIR}' TCL_SHARED_LIB_SUFFIX='${VERSION}\$\{DBGX\}.a' ;; - IRIX-5.*|IRIX-6.*) + IRIX-5.*|IRIX-6.*|IRIX64-6.5*) SHLIB_CFLAGS="" SHLIB_LD="ld -n32 -shared -rdata_shared" - SHLIB_LD_LIBS="" + SHLIB_LD_LIBS='${LIBS}' SHLIB_SUFFIX=".so" DL_OBJS="tclLoadDl.o" DL_LIBS="" @@ -788,7 +788,7 @@ case $system in ;; Linux*) SHLIB_CFLAGS="-fPIC" - SHLIB_LD_LIBS="" + SHLIB_LD_LIBS='${LIBS}' SHLIB_SUFFIX=".so" if test "$have_dl" = yes; then SHLIB_LD="${CC} -shared" |