diff options
Diffstat (limited to 'unix/tkAppInit.c')
-rw-r--r-- | unix/tkAppInit.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/unix/tkAppInit.c b/unix/tkAppInit.c index 13bcdde..91dcba7 100644 --- a/unix/tkAppInit.c +++ b/unix/tkAppInit.c @@ -73,6 +73,9 @@ main( { #ifdef TK_LOCAL_MAIN_HOOK TK_LOCAL_MAIN_HOOK(&argc, &argv); +#elif (TCL_MAJOR_VERSION > 8) || (TCL_MINOR_VERSION > 6) + /* This doesn't work with Tcl 8.6 */ + TclZipfs_AppHook(&argc, &argv); #endif Tk_Main(argc, argv, TK_LOCAL_APPINIT); |