From: <arj...@us...> - 2010-01-28 08:52:16
|
Revision: 10773 http://plplot.svn.sourceforge.net/plplot/?rev=10773&view=rev Author: arjenmarkus Date: 2010-01-28 08:52:09 +0000 (Thu, 28 Jan 2010) Log Message: ----------- Correct the #ifdef TCL_MAJOR_VERSION ... - it should be #if Modified Paths: -------------- trunk/bindings/tcl/tclMain.c Modified: trunk/bindings/tcl/tclMain.c =================================================================== --- trunk/bindings/tcl/tclMain.c 2010-01-28 08:03:13 UTC (rev 10772) +++ trunk/bindings/tcl/tclMain.c 2010-01-28 08:52:09 UTC (rev 10773) @@ -51,7 +51,7 @@ #include <tcl.h> #include "plplot.h" -#ifdef TCL_MAJOR_VERSION >= 8 && TCL_MINOR_VERSION >= 5 +#if TCL_MAJOR_VERSION >= 8 && TCL_MINOR_VERSION >= 5 /* From (private) tclInt.h in tcl8.5 */ #define TclFormatInt( buf, n ) sprintf(( buf ), "%ld", (long) ( n )) #else This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |