diff options
author | mdejong <mdejong> | 2001-07-11 01:36:41 (GMT) |
---|---|---|
committer | mdejong <mdejong> | 2001-07-11 01:36:41 (GMT) |
commit | 29effb59e09d1f7eab3016936a53e909d40aed16 (patch) | |
tree | 5275368aa5647aa876cac8e7da4e830b8196416b /unix/Makefile.in | |
parent | 79b281a385aa3099927b9f15abf490b30789089c (diff) | |
download | tk-29effb59e09d1f7eab3016936a53e909d40aed16.zip tk-29effb59e09d1f7eab3016936a53e909d40aed16.tar.gz tk-29effb59e09d1f7eab3016936a53e909d40aed16.tar.bz2 |
* unix/Makefile.in: Add AR and STLIB_LD variables.
* unix/configure:
* unix/configure.in: Use STLIB_LD when defining MAKE_LIB
and MAKE_STUB_LIB. Subst STLIB_LD, RANLIB, and AR.
* unix/tcl.m4: Update from Tcl.
* win/configure: Regen.
* win/tcl.m4: Update from Tcl.
Diffstat (limited to 'unix/Makefile.in')
-rw-r--r-- | unix/Makefile.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in index 0719826..33267f0 100644 --- a/unix/Makefile.in +++ b/unix/Makefile.in @@ -5,7 +5,7 @@ # "autoconf" program (constructs like "@foo@" will get replaced in the # actual Makefile. # -# RCS: @(#) $Id: Makefile.in,v 1.52 2001/06/27 02:06:13 mdejong Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.53 2001/07/11 01:36:41 mdejong Exp $ # Current Tk version; used in various names. @@ -209,6 +209,7 @@ WISH_LIBS = $(TCL_LIB_SPEC) @LIBS@ $(X11_LIB_SWITCHES) @DL_LIBS@ @MATH_LIBS@ -lc # libraries. See configure.in for a description of what it means. # The values of the symbolis normally set by the configure script. +STLIB_LD = @STLIB_LD@ SHLIB_LD = @SHLIB_LD@ SHLIB_LD_LIBS = @SHLIB_LD_LIBS@ @@ -225,6 +226,7 @@ TK_LD_SEARCH_FLAGS = @TK_LD_SEARCH_FLAGS@ #---------------------------------------------------------------- AC_FLAGS = @EXTRA_CFLAGS@ @DEFS@ +AR = @AR@ RANLIB = @RANLIB@ SRC_DIR = @srcdir@/.. TOP_DIR = @srcdir@/.. |