diff options
author | hobbs <hobbs> | 1999-09-21 04:21:26 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 1999-09-21 04:21:26 (GMT) |
commit | 89420b81b99afdd1c68f441f4a099c2d9e4e290a (patch) | |
tree | 71b471eaa7912e94f153f38b64cf41b4af69ccff /unix/aclocal.m4 | |
parent | a583a768fbe40ec2b7d661fe32d8347a34632fcf (diff) | |
download | tcl-89420b81b99afdd1c68f441f4a099c2d9e4e290a.zip tcl-89420b81b99afdd1c68f441f4a099c2d9e4e290a.tar.gz tcl-89420b81b99afdd1c68f441f4a099c2d9e4e290a.tar.bz2 |
* unix/Makefile.in: fixed gendate target - this never worked
since RCS was intro'd.
* unix/tcl.m4:
* unix/aclocal.m4: added fix for FreeBSD-[1-2] recognition
[Bug: 2070] and fix for IRIX SHLIB_LB_LIBS. [Bug: 2610]
Diffstat (limited to 'unix/aclocal.m4')
-rw-r--r-- | unix/aclocal.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/aclocal.m4 b/unix/aclocal.m4 index a04638b..40cb6eb 100644 --- a/unix/aclocal.m4 +++ b/unix/aclocal.m4 @@ -646,7 +646,7 @@ AC_DEFUN(SC_CONFIG_CFLAGS, [ 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="" @@ -726,7 +726,7 @@ AC_DEFUN(SC_CONFIG_CFLAGS, [ LDFLAGS="-Wl,-Bexport" LD_SEARCH_FLAGS="" ;; - NetBSD-*|FreeBSD-[[12]].*|OpenBSD-*) + NetBSD-*|FreeBSD-[[1-2]].*|OpenBSD-*) # Not available on all versions: check for include file. AC_CHECK_HEADER(dlfcn.h, [ SHLIB_CFLAGS="-fpic" |