Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fixed quoting typo on LD_SEARCH_FLAGS definition for Linux |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | core-8-1-branch-old |
Files: | files | file ages | folders |
SHA1: |
17c61a930371d9def1ed87752cb0d804 |
User & Date: | welch 1999-03-25 22:44:47.000 |
Context
1999-03-25
| ||
23:27 | lint check-in: d3a21d1def user: stanton tags: core-8-1-branch-old | |
22:44 | Fixed quoting typo on LD_SEARCH_FLAGS definition for Linux check-in: 17c61a9303 user: welch tags: core-8-1-branch-old | |
22:03 | Documented that Win98 has tcl_platform(os)=="Windows 95" check-in: b754d9b333 user: redman tags: core-8-1-branch-old | |
Changes
Changes to unix/configure.in.
1 2 3 4 | 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) | | | 1 2 3 4 5 6 7 8 9 10 11 12 | 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.1.2.13 1999/03/25 22:44:47 welch Exp $ TCL_VERSION=8.1 TCL_MAJOR_VERSION=8 TCL_MINOR_VERSION=1 TCL_PATCH_LEVEL=b3 VERSION=${TCL_VERSION} |
︙ | ︙ | |||
861 862 863 864 865 866 867 | SHLIB_LD_LIBS="${LIBS}" SHLIB_SUFFIX=".so" if test "$have_dl" = yes; then SHLIB_LD="${CC} -shared" DL_OBJS="tclLoadDl.o" DL_LIBS="-ldl" LD_FLAGS="-rdynamic" | | | 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 | SHLIB_LD_LIBS="${LIBS}" SHLIB_SUFFIX=".so" if test "$have_dl" = yes; then SHLIB_LD="${CC} -shared" DL_OBJS="tclLoadDl.o" DL_LIBS="-ldl" LD_FLAGS="-rdynamic" LD_SEARCH_FLAGS='-Wl,-rpath,${LIB_RUNTIME_DIR}' else AC_CHECK_HEADER(dld.h, [ SHLIB_LD="ld -shared" DL_OBJS="tclLoadDld.o" DL_LIBS="-ldld" LD_FLAGS="" LD_SEARCH_FLAGS=""]) |
︙ | ︙ |