diff options
author | das <das@noemail.net> | 2002-09-26 17:07:33 (GMT) |
---|---|---|
committer | das <das@noemail.net> | 2002-09-26 17:07:33 (GMT) |
commit | b3f3cd91758f0c1e7296b560ff4ef7ab3948f9d3 (patch) | |
tree | 112cb862271c362e292651bcd940c53f02ab243c /macosx/tkMacOSXNotify.c | |
parent | 54bd6a4f6e2ec40f2e249a6c163a82f790e3be6f (diff) | |
download | tk-b3f3cd91758f0c1e7296b560ff4ef7ab3948f9d3.zip tk-b3f3cd91758f0c1e7296b560ff4ef7ab3948f9d3.tar.gz tk-b3f3cd91758f0c1e7296b560ff4ef7ab3948f9d3.tar.bz2 |
* macosx/Makefile: preserve environment value of INSTALL_ROOT.
When embedding only use deployment build. Force relink before
embedded build to ensure new linker flags are picked up.
* macosx/buildTkConfig.tcl (new):
* macosx/Wish.pbproj/project.pbxproj: synthesize tkConfig.sh
based on tclConfig.sh in Tcl.framework and tkConfig.sh.in.
Add symbolic links to debug lib, stub libs and tkConfig.sh
in framework toplevel. Made tkIntXlibDecls.h a public header
since Headers/X11/Xlib.h includes it. Install wish8.4 script
that runs "Wish Shell.app" and corresponding wish link.
Use tcl headers from built Tcl.framework instead of from tcl
source directory.
* macosx/tkMacOSXPort.h: added missing standard unix includes
and defines, similarly to tkUnixPort.h.
* macosx/tkMacOSXNotify.c: removed dependency on internal tcl
header "tclPort.h"
* unix/Makefile.in:
* unix/install-sh: copied support for 'install-strip' target
over from tcl/unix/{Makefile.in,install-sh}
FossilOrigin-Name: 405953cfce4dca4fe79e1db1b496e642b0d2644c
Diffstat (limited to 'macosx/tkMacOSXNotify.c')
-rw-r--r-- | macosx/tkMacOSXNotify.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/macosx/tkMacOSXNotify.c b/macosx/tkMacOSXNotify.c index e64fee7..0d0764f 100644 --- a/macosx/tkMacOSXNotify.c +++ b/macosx/tkMacOSXNotify.c @@ -12,7 +12,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkMacOSXNotify.c,v 1.4 2002/09/23 07:17:16 wolfsuit Exp $ + * RCS: @(#) $Id: tkMacOSXNotify.c,v 1.5 2002/09/26 17:07:33 das Exp $ */ #include "tclInt.h" @@ -23,7 +23,6 @@ #include "tkMacOSX.h" #include "tkMacOSXEvent.h" -#include "tclPort.h" #include <signal.h> extern TclStubs tclStubs; |