diff options
author | das <das> | 2007-05-16 21:18:21 (GMT) |
---|---|---|
committer | das <das> | 2007-05-16 21:18:21 (GMT) |
commit | 431d24219e2b0d400ba947ce4f1b677a46ec3e16 (patch) | |
tree | ff148ad04d99ead5d0f94f154b5ea8521d50678f /generic/tcl.decls | |
parent | f7de0447c4c22debc09815073b1e4c5f64fec0de (diff) | |
download | tcl-431d24219e2b0d400ba947ce4f1b677a46ec3e16.zip tcl-431d24219e2b0d400ba947ce4f1b677a46ec3e16.tar.gz tcl-431d24219e2b0d400ba947ce4f1b677a46ec3e16.tar.bz2 |
* generic/tcl.decls: workaround 'make checkstubs' failures from
tclStubLib.c MODULE_SCOPE revert. [Bug 1716117]
Diffstat (limited to 'generic/tcl.decls')
-rw-r--r-- | generic/tcl.decls | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/generic/tcl.decls b/generic/tcl.decls index 5d44688..558a0a0 100644 --- a/generic/tcl.decls +++ b/generic/tcl.decls @@ -11,7 +11,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: tcl.decls,v 1.125 2007/02/23 23:02:54 nijtmans Exp $ +# RCS: @(#) $Id: tcl.decls,v 1.126 2007/05/16 21:18:22 das Exp $ library tcl @@ -2142,3 +2142,16 @@ declare 1 macosx { # complain about them) # void Tcl_Main(int argc, char **argv, Tcl_AppInitProc *appInitProc) +# CONST char *Tcl_InitStubs(Tcl_Interp *interp, CONST char *version, int exact) +# CONST char *TclTomMathInitializeStubs(Tcl_Interp* interp, +# CONST char* version, int epoch, int revision + +# Global variables that need to be exported from the tcl shared library: +# (listed here _as comments_ so that the 'checkstubs' make target does not +# complain about them, c.f. tk bug bug 1716117) + +# TclStubs *tclStubsPtr (fool checkstubs) +# TclPlatStubs *tclPlatStubsPtr (fool checkstubs) +# TclIntStubs *tclIntStubsPtr (fool checkstubs) +# TclIntPlatStubs *tclIntPlatStubsPtr (fool checkstubs) +# TclTomMathStubs* tclTomMathStubsPtr (fool checkstubs) |