From: <ai...@us...> - 2013-10-26 21:18:58
|
Revision: 12637 http://sourceforge.net/p/plplot/code/12637 Author: airwin Date: 2013-10-26 21:18:55 +0000 (Sat, 26 Oct 2013) Log Message: ----------- Fix build issue for Tcl/Tk 8.6 which no longer #defines Tcl_Import_TCL_DECLARED. Instead, we now assume that all Tcl/Tk versions we use declare Tcl_Import (true for at least Tcl/Tk 8.5.x and probably for much earlier Tcl/Tk versions as well) so we no longer declare Tcl_Import ourselves. Modified Paths: -------------- trunk/bindings/tk/tkMain.c Modified: trunk/bindings/tk/tkMain.c =================================================================== --- trunk/bindings/tk/tkMain.c 2013-10-26 20:47:49 UTC (rev 12636) +++ trunk/bindings/tk/tkMain.c 2013-10-26 21:18:55 UTC (rev 12637) @@ -85,7 +85,8 @@ // From tclIntDecls.h -#ifndef Tcl_Import_TCL_DECLARED +//#ifndef Tcl_Import_TCL_DECLARED +#if 0 EXTERN int Tcl_Import _ANSI_ARGS_( ( Tcl_Interp * interp, Tcl_Namespace * nsPtr, char * pattern, int allowOverwrite ) ); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |