[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Failure in building otcl-1.0a3 with tcl/tk 8.0.3
It can be fixed using the following patch:
766,768d765
< #if TCL_RELEASE_SERIAL >= 3
< if (TclIsVarArgument(args))
< #else
770d766
< #endif
Or using replace:
> #if TCL_MAJOR_VERSION >= 8
> if (args->isArg)
> #endif
with:
#if TCL_MAJOR_VERSION >= 8
#if TCL_RELEASE_SERIAL >= 3
if (TclIsVarArgument(args))
#else
if (args->isArg)
#endif
#endif
We'll release a new otcl which works with tcl 8.0.{3,4} with the next ns
release.
- Haobo