summaryrefslogtreecommitdiff
path: root/sysutils/cd-write/files/patch-4
diff options
context:
space:
mode:
Diffstat (limited to 'sysutils/cd-write/files/patch-4')
-rw-r--r--sysutils/cd-write/files/patch-449
1 files changed, 0 insertions, 49 deletions
diff --git a/sysutils/cd-write/files/patch-4 b/sysutils/cd-write/files/patch-4
deleted file mode 100644
index 400f538396d2..000000000000
--- a/sysutils/cd-write/files/patch-4
+++ /dev/null
@@ -1,49 +0,0 @@
---- c++tk/c++tk.cc.orig Thu Sep 25 03:43:24 1997
-+++ c++tk/c++tk.cc Sat Apr 29 23:40:59 2000
-@@ -28,6 +28,9 @@
- // $Id: c++tk.cc,v 1.22 1997/05/19 04:06:12 jmz Exp $
- //
- #include <tcl.h>
-+#ifdef TIX
-+#include <tix.h>
-+#endif
- #include <string.h>
- #include <stdlib.h>
- #include <limits.h>
-@@ -38,7 +41,9 @@
-
- extern "C" {
- int Tk_Init (Tcl_Interp *);
-- ClientData Tk_MainWindow (Tcl_Interp *);
-+#ifdef TIX
-+ int Tixsam_Init (Tcl_Interp *);
-+#endif
- }
-
- #include "c++tk.h"
-@@ -80,7 +85,7 @@
- add_tvar (v)
- #define VARIABLE \
- sprintf (xstr, "%s%x", VARNAME, v);\
-- Tcl_SetVar (interp, xstr, *v? "1":"0", TCL_GLOBAL_ONLY);\
-+ Tcl_SetVar (interp, xstr, *v? (char *)"1":(char*)"0", TCL_GLOBAL_ONLY);\
- sprintf (xstr, "%s configure -variable %s%x", pname, VARNAME, v);\
- TkError = Tcl_GlobalEval (interp, xstr);\
- sprintf (xstr, "%s%x", VARNAME, v);\
-@@ -270,7 +275,6 @@
- }
- return 0;
- }
--
- static void
- initialize ()
- {
-@@ -302,7 +306,7 @@
- #endif
- Tcl_CreateCommand (interp, JMPNAME,
- (Tcl_CmdProc *) Proc_Handler,
-- Tk_MainWindow (interp), 0);
-+ (void *)Tk_MainWindow (interp), 0);
- i_vars = new int * [VAR_SIZE];
- I_vars = new int [VAR_SIZE];
- t_vars = new char * [VAR_SIZE];