diff options
author | Steve Price <steve@FreeBSD.org> | 1999-05-01 02:55:16 +0000 |
---|---|---|
committer | Steve Price <steve@FreeBSD.org> | 1999-05-01 02:55:16 +0000 |
commit | ab38a6b0e5e87370f7d68921f088ab6432e9fc85 (patch) | |
tree | 057bbdd7ab7aa1bd533a032dcfb6e57932563e71 /emulators/frodo | |
parent | c242b7b04a3be56e65229b29db8363f5bb54ccee (diff) | |
download | ports-ab38a6b0e5e87370f7d68921f088ab6432e9fc85.tar.gz ports-ab38a6b0e5e87370f7d68921f088ab6432e9fc85.zip |
If wish is installed the configuration dialog doesn't get called.
PR: 11346
Submitted by: maintainer
Notes
Notes:
svn path=/head/; revision=18278
Diffstat (limited to 'emulators/frodo')
-rw-r--r-- | emulators/frodo/files/patch-C64_x.i | 11 | ||||
-rw-r--r-- | emulators/frodo/files/patch-TkGui.tcl | 37 |
2 files changed, 25 insertions, 23 deletions
diff --git a/emulators/frodo/files/patch-C64_x.i b/emulators/frodo/files/patch-C64_x.i new file mode 100644 index 000000000000..89e4dcde6989 --- /dev/null +++ b/emulators/frodo/files/patch-C64_x.i @@ -0,0 +1,11 @@ +--- C64_x.i.orig Wed Aug 6 20:56:25 1997 ++++ C64_x.i Mon Apr 26 21:50:36 1999 +@@ -100,7 +100,7 @@ + gui = 0; + #else + // try to start up Tk gui. +- gui = new CmdPipe("wish", "TkGui.tcl"); ++ gui = new CmdPipe("wish8.0", "TkGui.tcl"); + if (gui) { + if (gui->fail) { + delete gui; gui = 0; diff --git a/emulators/frodo/files/patch-TkGui.tcl b/emulators/frodo/files/patch-TkGui.tcl index bc2ee1265c93..c617ea7a053d 100644 --- a/emulators/frodo/files/patch-TkGui.tcl +++ b/emulators/frodo/files/patch-TkGui.tcl @@ -1,23 +1,14 @@ -*** ../TkGui.tcl Wed Aug 6 20:56:34 1997 ---- ../TkGui.tcl.neu Thu Dec 4 00:38:15 1997 -*************** -*** 1,9 **** -! #!/usr/local/bin/X11/wish - - # Frodo Tk GUI by Lutz Vieweg <lkv@mania.robin.de> - # requires Tk >= 4.1 - -! package require Tk 4.1 - - set prefname "$env(HOME)/.frodorc" - ---- 1,9 ---- -! #!/usr/local/bin/wish8.0 -f - - # Frodo Tk GUI by Lutz Vieweg <lkv@mania.robin.de> - # requires Tk >= 4.1 - -! ## package require Tk 4.1 - - set prefname "$env(HOME)/.frodorc" - +--- ../TkGui.tcl.orig Wed Aug 6 20:56:34 1997 ++++ ../TkGui.tcl Mon Apr 26 21:49:18 1999 +@@ -1,9 +1,9 @@ +-#!/usr/local/bin/X11/wish ++#!/usr/local/bin/wish8.0 -f + + # Frodo Tk GUI by Lutz Vieweg <lkv@mania.robin.de> + # requires Tk >= 4.1 + +-package require Tk 4.1 ++## package require Tk 4.1 + + set prefname "$env(HOME)/.frodorc" + |