diff options
author | das <das> | 2005-04-26 00:49:49 (GMT) |
---|---|---|
committer | das <das> | 2005-04-26 00:49:49 (GMT) |
commit | 65b0befd37a990632c03983541a806bc3e9eb1e9 (patch) | |
tree | 7b37a45ef8605a80fcf752b180cda52033f800ff /unix/Makefile.in | |
parent | be6d9e33bed687b9fe2a04d816dd5f932a5764d1 (diff) | |
download | tk-65b0befd37a990632c03983541a806bc3e9eb1e9.zip tk-65b0befd37a990632c03983541a806bc3e9eb1e9.tar.gz tk-65b0befd37a990632c03983541a806bc3e9eb1e9.tar.bz2 |
* macosx/tkMacOSXNotify.c: syncd with tclUnixNotfy.c changes since
2004-06-22, added compile time check for threaded tcl core, removed
unthreaded code paths as they are never used anyway, fixed
TkMacOSXAlertNotifier() implementation.
* unix/Makefile.in: added TCL_STUB_LIB_FILE, needed for unexporting of
symbols from libtclstub to avoid duplicate symbol warnings.
* unix/tcl.m4 (Darwin): added configure checks for recently added linker
flags -single_module and -search_paths_first to allow building with
older tools (and on Mac OS X 10.1), use -single_module in SHLIB_LD and
not just T{CL,K}_SHLIB_LD_EXTRAS, added unexporting from Tk of symbols
from libtclstub to avoid duplicate symbol warnings, added PLAT_SRCS
definition for Mac OS X.
(SC_MISSING_POSIX_HEADERS): added caching of dirent.h check.
(SC_TCL_64BIT_FLAGS): fixed 'checking for off64_t' message output.
* unix/configure: autoconf-2.13
Diffstat (limited to 'unix/Makefile.in')
-rw-r--r-- | unix/Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in index b5a208d..696e7c4 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.87.2.7 2005/02/10 23:42:01 hobbs Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.87.2.8 2005/04/26 00:49:50 das Exp $ # Current Tk version; used in various names. @@ -219,6 +219,7 @@ TK_LIB_FLAG = @TK_LIB_FLAG@ TCL_LIB_SPEC = @TCL_LIB_SPEC@ TCL_STUB_LIB_SPEC = @TCL_STUB_LIB_SPEC@ TCL_STUB_LIB_FLAG = @TCL_STUB_LIB_FLAG@ +TCL_STUB_LIB_FILE = @TCL_STUB_LIB_FILE@ TK_EXP_FILE = @TK_EXP_FILE@ TK_BUILD_EXP_FILE = @TK_BUILD_EXP_FILE@ |