diff options
author | mdejong <mdejong> | 2002-07-28 03:23:08 (GMT) |
---|---|---|
committer | mdejong <mdejong> | 2002-07-28 03:23:08 (GMT) |
commit | b112f523461ca796691161f03eade4284dbc145d (patch) | |
tree | 98a4574a033fa6390189810bad409dd81502c946 /unix/tkConfig.sh.in | |
parent | a77bbdbd8abff88d2b84cbf28473094750e1bfbf (diff) | |
download | tk-b112f523461ca796691161f03eade4284dbc145d.zip tk-b112f523461ca796691161f03eade4284dbc145d.tar.gz tk-b112f523461ca796691161f03eade4284dbc145d.tar.bz2 |
* unix/Makefile.in: Add MAJOR_VERSION, MINOR_VERSION,
PATCH_LEVEL, INSTALL_LIBRARY, STUB_LIB_FILE, and LIB_FILE
to support changes in tcl.m4 related to library builds.
Use MAKE_LIB macro to avoid dealing with RANLIB issues.
Rename TK_CC_SEARCH_FLAGS to CC_SEARCH_FLAGS and
rename TK_LD_SEARCH_FLAGS to LD_SEARCH_FLAGS.
Use new INSTALL_LIB and INSTALL_STUB_LIB substs to
deal with ranlib issues when install libraries.
* unix/configure: Regen.
* unix/configure.in: Remove AC_PROG_RANLIB since
this is done by tcl.m4 now. Define CC_SEARCH_FLAGS
instead of TK_CC_SEARCH_FLAGS and so on.
Use MAKE_LIB and MAKE_STUB_LIB from tcl.m4.
Remove AC_SUBST calls that are no done in tcl.m4.
* unix/tcl.m4: Update from Tcl.
* unix/tkConfig.sh.in: Subst CC_SEARCH_FLAGS and
LD_SEARCH_FLAGS.
Diffstat (limited to 'unix/tkConfig.sh.in')
-rw-r--r-- | unix/tkConfig.sh.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/unix/tkConfig.sh.in b/unix/tkConfig.sh.in index 7e0d7ca..f8d43f1 100644 --- a/unix/tkConfig.sh.in +++ b/unix/tkConfig.sh.in @@ -11,7 +11,7 @@ # # The information in this file is specific to a single platform. # -# RCS: @(#) $Id: tkConfig.sh.in,v 1.7 1999/03/10 07:04:45 stanton Exp $ +# RCS: @(#) $Id: tkConfig.sh.in,v 1.8 2002/07/28 03:23:08 mdejong Exp $ # Tk's version number. TK_VERSION='@TK_VERSION@' @@ -69,8 +69,8 @@ TK_SRC_DIR='@TK_SRC_DIR@' # Needed if you want to make a 'fat' shared library library # containing tk objects or link a different wish. -TK_CC_SEARCH_FLAGS='@TK_CC_SEARCH_FLAGS@' -TK_LD_SEARCH_FLAGS='@TK_LD_SEARCH_FLAGS@' +TK_CC_SEARCH_FLAGS='@CC_SEARCH_FLAGS@' +TK_LD_SEARCH_FLAGS='@LD_SEARCH_FLAGS@' # The name of the Tk stub library (.a): TK_STUB_LIB_FILE='@TK_STUB_LIB_FILE@' |