diff options
author | mdejong <mdejong@noemail.net> | 2002-01-11 18:41:03 (GMT) |
---|---|---|
committer | mdejong <mdejong@noemail.net> | 2002-01-11 18:41:03 (GMT) |
commit | f525ad2742bec02e3ab79541c77ce70b5b0c698f (patch) | |
tree | 0b5c563ac401e39d2cee8a52b67e833641e59143 /unix/Makefile.in | |
parent | c972f8e5a09e1e9f7552f6725f44b3b14bfe739b (diff) | |
download | tk-f525ad2742bec02e3ab79541c77ce70b5b0c698f.zip tk-f525ad2742bec02e3ab79541c77ce70b5b0c698f.tar.gz tk-f525ad2742bec02e3ab79541c77ce70b5b0c698f.tar.bz2 |
Enable use of Tcl stubs when building Tk as
a shared library. This should fix the build
under AIX. [Bugs 220858, 220955, 220921]
* unix/Makefile.in: Add TCL_STUB_LIB_SPEC and
TCL_STUB_LIB_FLAG variables.
* unix/configure: Regen.
* unix/configure.in: Pass TCL_STUB_LIB_SPEC into
Makefile and use it when linking the tk shared library.
Define USE_TCL_STUBS when building shared. Subst
TCL_STUB_LIB_SPEC and TCL_STUB_LIB_FLAG.
FossilOrigin-Name: 7695ed9ebcdbf0e6cc0a2697964df49cea740427
Diffstat (limited to 'unix/Makefile.in')
-rw-r--r-- | unix/Makefile.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in index 17d3198..1080cff 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.59 2001/12/19 07:45:52 mdejong Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.60 2002/01/11 18:41:04 mdejong Exp $ # Current Tk version; used in various names. @@ -195,6 +195,9 @@ TK_LIB_FLAG = @TK_LIB_FLAG@ #TCL_LIB_SPEC = @TCL_BUILD_LIB_SPEC@ TCL_LIB_SPEC = @TCL_LIB_SPEC@ +#TCL_STUB_LIB_SPEC = @TCL_BUILD_STUB_LIB_SPEC@ +TCL_STUB_LIB_SPEC = @TCL_STUB_LIB_SPEC@ +TCL_STUB_LIB_FLAG = @TCL_STUB_LIB_FLAG@ TK_EXP_FILE = @TK_EXP_FILE@ TK_BUILD_EXP_FILE = @TK_BUILD_EXP_FILE@ |