diff options
author | peter <peter@FreeBSD.org> | 1996-10-29 04:36:25 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1996-10-29 04:36:25 +0000 |
commit | 752546ffba2be9ad00a507cd861fafac0163c3c6 (patch) | |
tree | 0b5a7b142997bda903ca6bc4a4d2a6a43d79fc6d /lib | |
parent | 9f7bf9578268bfeceaabace738d4a746d3852061 (diff) | |
download | FreeBSD-src-752546ffba2be9ad00a507cd861fafac0163c3c6.zip FreeBSD-src-752546ffba2be9ad00a507cd861fafac0163c3c6.tar.gz |
Regenerated.. Use new minor number for both installed names, not just
one of them.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libtcl/Makefile | 6 | ||||
-rw-r--r-- | lib/libtcl/tclConfig.sh | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/lib/libtcl/Makefile b/lib/libtcl/Makefile index 149ea27..9a661e0 100644 --- a/lib/libtcl/Makefile +++ b/lib/libtcl/Makefile @@ -1,11 +1,11 @@ -# $Id: m,v 1.1 1996/10/26 14:39:26 wosch Exp wosch $ +# $Id: Makefile,v 1.9 1996/10/26 23:38:07 wosch Exp $ # # This file is generated automatically, do not edit it here! # # Please change src/tools/tools/tcl_bmake/mkMakefile.sh instead # # Generated by src/tools/tools/tcl_bmake/mkMakefile.sh version: -# Id: mkMakefile.sh,v 1.11 1996/09/18 14:27:44 phk Exp +# Id: mkMakefile.sh,v 1.14 1996/10/29 04:31:21 peter Exp # TCLDIST=${.CURDIR}/../../contrib/tcl @@ -25,7 +25,7 @@ LIB= tcl .if !defined(NOPIC) LINKS+= ${SHLIBDIR}/lib${LIB}.so.${SHLIB_MAJOR}.${SHLIB_MINOR} \ - ${SHLIBDIR}/lib${LIB}${SHLIB_MAJOR}.so.1.0 + ${SHLIBDIR}/lib${LIB}${SHLIB_MAJOR}.so.1.${SHLIB_MINOR} .endif LINKS+= ${LIBDIR}/lib${LIB}.a ${LIBDIR}/lib${LIB}${SHLIB_MAJOR}.a diff --git a/lib/libtcl/tclConfig.sh b/lib/libtcl/tclConfig.sh index 573d7b6..84f9080 100644 --- a/lib/libtcl/tclConfig.sh +++ b/lib/libtcl/tclConfig.sh @@ -23,7 +23,7 @@ TCL_CC='cc' TCL_DEFS=' -DHAVE_UNISTD_H=1 -DHAVE_SYS_TIME_H=1 -DTIME_WITH_SYS_TIME=1 -DHAVE_TM_ZONE=1 -DHAVE_TM_GMTOFF=1 -DSTDC_HEADERS=1 -DNEED_MATHERR=1 ' # The name of the Tcl library (may be either a .a file or a shared library): -TCL_LIB_FILE=libtcl75.so.1.0 +TCL_LIB_FILE=libtcl75.so.1.1 # Additional libraries to use when linking Tcl. TCL_LIBS=' -lm' @@ -90,7 +90,7 @@ TCL_LIB_VERSIONS_OK='nodots' # extension, and anything else needed). May depend on the variables # VERSION and SHLIB_SUFFIX. On most UNIX systems this is # ${VERSION}${SHLIB_SUFFIX}. -TCL_SHARED_LIB_SUFFIX='`echo ${VERSION} | tr -d .`.so.1.0' +TCL_SHARED_LIB_SUFFIX='`echo ${VERSION} | tr -d .`.so.1.1' # String that can be evaluated to generate the part of an unshared library # name that comes after the "libxxx" (includes version number, if any, |