summaryrefslogtreecommitdiff
path: root/cad/jspice3/files
diff options
context:
space:
mode:
Diffstat (limited to 'cad/jspice3/files')
-rw-r--r--cad/jspice3/files/patch-build26
-rw-r--r--cad/jspice3/files/patch-conf_util_configure15
-rw-r--r--cad/jspice3/files/patch-src_bin_help.c27
-rw-r--r--cad/jspice3/files/patch-src_bin_spiced.c18
-rw-r--r--cad/jspice3/files/patch-src_lib_fte_misccoms.c11
-rw-r--r--cad/jspice3/files/patch-src_lib_fte_resource.c11
-rw-r--r--cad/jspice3/files/patch-src_lib_plot_x11.c20
7 files changed, 0 insertions, 128 deletions
diff --git a/cad/jspice3/files/patch-build b/cad/jspice3/files/patch-build
deleted file mode 100644
index c6b9b0bc4505..000000000000
--- a/cad/jspice3/files/patch-build
+++ /dev/null
@@ -1,26 +0,0 @@
---- build.orig 2015-11-05 18:10:02 UTC
-+++ build
-@@ -51,7 +51,7 @@ if [ -f conf/util/configure ]; then
- if [ `uname -s` = Darwin -a -d /opt/X11 ]; then
- util/configure --x-includes=/opt/X11/include --x-libraries=/opt/X11/lib -srcdir .
- else
-- util/configure -srcdir .
-+ util/configure --prefix=${PREFIX} --x-includes=${LOCALBASE}/include --x-libraries=${LOCALBASE}/lib -srcdir .
- fi
-
- if [ ! -f ../src/include/config.h ] || \
-@@ -102,8 +102,14 @@ if [ -f conf/mkheader ]; then
- fi
- echo Creating makefiles in the subdirectories...
- $makeprog make
-+ if [ $? -ne 0 ]; then
-+ exit $?
-+ fi
- echo ...done
- $makeprog all 2> ../../errs
-+ if [ $? -ne 0 ]; then
-+ exit $?
-+ fi
- echo done
- echo Check the errs file for any problems.
- echo To finish the installation, cd to src/bin, become root, and type
diff --git a/cad/jspice3/files/patch-conf_util_configure b/cad/jspice3/files/patch-conf_util_configure
deleted file mode 100644
index ba94f82853b7..000000000000
--- a/cad/jspice3/files/patch-conf_util_configure
+++ /dev/null
@@ -1,15 +0,0 @@
---- conf/util/configure.orig 2002-01-15 19:21:25 UTC
-+++ conf/util/configure
-@@ -805,11 +805,7 @@ else
- fi
-
-
--if test "$GCC" = yes; then
-- DEPEND_PROG="gcc -MM"
--else
-- DEPEND_PROG="cc -M"
--fi
-+DEPEND_PROG="cc -MM"
-
- if test -x /usr/ucb/install; then
- INSTALL="/usr/ucb/install"
diff --git a/cad/jspice3/files/patch-src_bin_help.c b/cad/jspice3/files/patch-src_bin_help.c
deleted file mode 100644
index 1ca588c6470c..000000000000
--- a/cad/jspice3/files/patch-src_bin_help.c
+++ /dev/null
@@ -1,27 +0,0 @@
---- src/bin/help.c.orig 2015-11-05 17:57:50 UTC
-+++ src/bin/help.c
-@@ -14,6 +14,7 @@ Authors: 1986 Wayne A. Christopher
- #include <pwd.h>
- #endif
-
-+static char *hcopydev;
- #ifdef HAVE_X11
-
- #include <X11/Intrinsic.h>
-@@ -22,7 +23,6 @@ Authors: 1986 Wayne A. Christopher
- Display *Xdisplay;
- static XtAppContext app_con;
- static Widget toplevel;
--static char *hcopydev;
-
- static String fallback_resources[] = {
-
-@@ -188,7 +188,7 @@ int t;
- {
- if (!strcmp(n, kw_hcopydev)) {
- strcpy(r, hcopydev);
-- return (True);
-+ return (1);
- }
- return (false);
- }
diff --git a/cad/jspice3/files/patch-src_bin_spiced.c b/cad/jspice3/files/patch-src_bin_spiced.c
deleted file mode 100644
index 7e391a1415b5..000000000000
--- a/cad/jspice3/files/patch-src_bin_spiced.c
+++ /dev/null
@@ -1,18 +0,0 @@
---- src/bin/spiced.c.orig 2015-11-05 17:58:45 UTC
-+++ src/bin/spiced.c
-@@ -16,12 +16,11 @@ Author: 1985 Wayne A. Christopher, U. C.
-
- #include "spice.h"
- #include <stdio.h>
--#ifdef HAVE_STRINGS_H
--#include <strings.h>
--#else
- #include <string.h>
--#endif
- #include <errno.h>
-+#include <unistd.h>
-+#include <stdlib.h>
-+#include <ctype.h>
- #include <sys/types.h>
-
- #ifdef HAVE_SOCKET
diff --git a/cad/jspice3/files/patch-src_lib_fte_misccoms.c b/cad/jspice3/files/patch-src_lib_fte_misccoms.c
deleted file mode 100644
index 3d355747d161..000000000000
--- a/cad/jspice3/files/patch-src_lib_fte_misccoms.c
+++ /dev/null
@@ -1,11 +0,0 @@
---- src/lib/fte/misccoms.c.orig 2001-05-01 20:58:18 UTC
-+++ src/lib/fte/misccoms.c
-@@ -284,7 +284,7 @@ wordlist *wl;
- pl->pl_title,
- pl->pl_name);
- }
-- (void) SCEDfgets(buf,BSIZE_SP,cp_in,zz);
-+ (void) SCEDfgets(buf, sizeof buf,cp_in,zz);
-
- if ((*buf == 'y') || (*buf == 'Y') || (*buf == '\n'))
- byemesg();
diff --git a/cad/jspice3/files/patch-src_lib_fte_resource.c b/cad/jspice3/files/patch-src_lib_fte_resource.c
deleted file mode 100644
index 71caa541fcd9..000000000000
--- a/cad/jspice3/files/patch-src_lib_fte_resource.c
+++ /dev/null
@@ -1,11 +0,0 @@
---- src/lib/fte/resource.c.orig 1997-03-21 22:03:41 UTC
-+++ src/lib/fte/resource.c
-@@ -36,7 +36,7 @@ static struct timeb lasttime;
- #endif
- #endif
- #endif
--static char *enddata;
-+char *enddata;
- static int origsec;
- static int origusec;
- static int lastsec;
diff --git a/cad/jspice3/files/patch-src_lib_plot_x11.c b/cad/jspice3/files/patch-src_lib_plot_x11.c
deleted file mode 100644
index 895f3483b1e8..000000000000
--- a/cad/jspice3/files/patch-src_lib_plot_x11.c
+++ /dev/null
@@ -1,20 +0,0 @@
---- src/lib/plot/x11.c.orig 2004-09-02 21:43:35 UTC
-+++ src/lib/plot/x11.c
-@@ -2205,7 +2205,7 @@ ScedESC()
- void
- com_setrdb(wl)
-
--wordlist *wl;
-+void *wl;
- {
- /* be silent */
- }
-@@ -2213,7 +2213,7 @@ wordlist *wl;
- int
- PopUpErrMessage(fp)
-
--File *fp;
-+void *fp;
- {
- return (0);
- }