diff options
author | Steve Price <steve@FreeBSD.org> | 1999-11-28 18:32:45 +0000 |
---|---|---|
committer | Steve Price <steve@FreeBSD.org> | 1999-11-28 18:32:45 +0000 |
commit | bc087374d35aa9c841dd63d44e9c9697702921ed (patch) | |
tree | 9bfffecdf0e79fc2f3af0e2a2f1044536ad164ca /converters/xdeview/files/patch-ac | |
parent | gcc 2.95 requires us to be explicit about the return type of functions. (diff) |
Update to use Tcl/Tk version 8.2.
Submitted by: Ade Lovett <ade@lovett.com>
Diffstat (limited to 'converters/xdeview/files/patch-ac')
-rw-r--r-- | converters/xdeview/files/patch-ac | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/converters/xdeview/files/patch-ac b/converters/xdeview/files/patch-ac new file mode 100644 index 000000000000..781256ff61f5 --- /dev/null +++ b/converters/xdeview/files/patch-ac @@ -0,0 +1,23 @@ +--- tcl/uuwish.c.orig Thu Jun 6 14:41:11 1996 ++++ tcl/uuwish.c Thu Nov 4 11:34:43 1999 +@@ -78,19 +78,7 @@ + int + main (int argc, char *argv[]) + { +-#ifdef HAVE_TK +- Tk_Main +-#else +-#ifdef HAVE_TCL +- Tcl_Main +-#endif +-#endif +- (argc, argv +-#ifdef TMAIN_THREE +- , Tcl_AppInit +-#endif +- ); +- ++ Tk_MainEx( argc, argv, Tcl_AppInit, Tcl_CreateInterp() ); + return 0; + } + |