I try to run WOK on my Mac. I don't get errors from the system but during launch I get Error : Could not move to entity : wokcd
Could a WOK/TCL guru give me a hint where I probably missed a variable?
Torsten
Torsten Sadowski Tue, 10/31/2006 - 23:25
I found the reason but it puzzles me. Its a Apple problem which is Unix with GNU C but it works with:
Tue, 10/31/2006 - 23:25
I found the reason but it puzzles me. Its a Apple problem which is Unix with GNU C but it works with:
#if !defined( WNT ) && !defined( __GNUC__ ) || defined( __APPLE__ )
optind = 1;
#else
optind = 0;
#endif // WNT
in WOKTools_Options.cxx
Torsten