diff options
author | dgp <dgp@noemail.net> | 2004-04-06 22:25:46 (GMT) |
---|---|---|
committer | dgp <dgp@noemail.net> | 2004-04-06 22:25:46 (GMT) |
commit | be667cfb961331d3226eca9b63275158abfccd28 (patch) | |
tree | f364fcb944511bb8790be7882532203c0195be6b /unix/tclXtNotify.c | |
parent | d89e73fbbdd3e3ae2228cce783e59f0e4fec7627 (diff) | |
download | tcl-be667cfb961331d3226eca9b63275158abfccd28.zip tcl-be667cfb961331d3226eca9b63275158abfccd28.tar.gz tcl-be667cfb961331d3226eca9b63275158abfccd28.tar.bz2 |
Patch 922727 committed. Implements three changes:
* generic/tclInt.h: Reworked the Tcl header files into a clean
* unix/tclUnixPort.h: hierarchy where tcl.h < tclPort.h < tclInt.h
* win/tclWinInt.h: and every C source file should #include
* win/tclWinPort.h: at most one of those files to satisfy its
declaration needs. tclWinInt.h and tclWinPort.h also better organized
so that tclWinPort.h includes the Windows implementation of
cross-platform declarations, while tclWinInt.h makes declarations that
are available on Windows only.
* generic/tclBinary.c (TCL_NO_MATH): Deleted the generic/tclMath.h
* generic/tclMath.h (removed): header file. The internal Tcl
* macosx/Makefile (PRIVATE_HEADERS): header, tclInt.h, has a
* win/tcl.dsp: #include <math.h> directly,
and file external to Tcl needing libm should do the same.
* win/Makefile.in (WIN_OBJS): Deleted the win/tclWinMtherr.c file.
* win/makefile.bc (TCLOBJS): It's a vestige from matherr() days
* win/makefile.vc (TCLOBJS): gone by.
* win/tcl.dsp:
* win/tclWinMtherr.c (removed):
FossilOrigin-Name: 2e5b18c85c944b46540edfdd6580648e32645e2b
Diffstat (limited to 'unix/tclXtNotify.c')
-rw-r--r-- | unix/tclXtNotify.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/tclXtNotify.c b/unix/tclXtNotify.c index 5b186bd..0d13d15 100644 --- a/unix/tclXtNotify.c +++ b/unix/tclXtNotify.c @@ -9,11 +9,11 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclXtNotify.c,v 1.5 2003/12/24 04:18:22 davygrvy Exp $ + * RCS: @(#) $Id: tclXtNotify.c,v 1.6 2004/04/06 22:25:57 dgp Exp $ */ #include <X11/Intrinsic.h> -#include <tclInt.h> +#include "tclInt.h" /* * This structure is used to keep track of the notifier info for a |