diff options
author | das <das@noemail.net> | 2006-02-09 19:09:43 (GMT) |
---|---|---|
committer | das <das@noemail.net> | 2006-02-09 19:09:43 (GMT) |
commit | e8f5b5e6825d361e7efe2b7e78c4daa6fb94d61b (patch) | |
tree | 3aa7b0f5431615f40e0dcabaf762aa4c63d2de66 /generic/tk.h | |
parent | 5ce4aa1dbdffd51fbf98a925297fb20973eae775 (diff) | |
download | tk-e8f5b5e6825d361e7efe2b7e78c4daa6fb94d61b.zip tk-e8f5b5e6825d361e7efe2b7e78c4daa6fb94d61b.tar.gz tk-e8f5b5e6825d361e7efe2b7e78c4daa6fb94d61b.tar.bz2 |
* generic/tk.decls: fix signature of TkMacOSXInvalClipRgns
* generic/tkPlatDecls.h: to use Tk_Window instead of internal
* macosx/tkMacOSXSubwindows.c: type TkWindow (which led to any include
* macosx/tkMacOSXWindowEvent.c: of public header tkMacOSX.h requiring
* macosx/tkMacOSXWm.c: prior include of tkInt.h).
* generic/tk.h: move TkAqua specific REDO_KEYSYM_LOOKUP define
* macosx/tkMacOSXPort.h: out of tk.h into platform header.
FossilOrigin-Name: 17f6ab80d73813018e189362ff776b6ce20689c7
Diffstat (limited to 'generic/tk.h')
-rw-r--r-- | generic/tk.h | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/generic/tk.h b/generic/tk.h index a11d207..3119f3a 100644 --- a/generic/tk.h +++ b/generic/tk.h @@ -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: tk.h,v 1.74.2.13 2005/11/27 02:44:25 das Exp $ + * RCS: @(#) $Id: tk.h,v 1.74.2.14 2006/02/09 19:09:43 das Exp $ */ #ifndef _TK @@ -53,17 +53,6 @@ extern "C" { #define TK_VERSION "8.4" #define TK_PATCH_LEVEL "8.4.12" -/* - * The following definitions set up the proper options for Macintosh - * compilers. We use this method because there is no autoconf equivalent. - */ - -#if defined(MAC_TCL) || defined(MAC_OSX_TK) -# ifndef REDO_KEYSYM_LOOKUP -# define REDO_KEYSYM_LOOKUP -# endif -#endif - #ifndef _TCL # include <tcl.h> # if (TCL_MAJOR_VERSION != 8) || (TCL_MINOR_VERSION != 4) |