summaryrefslogtreecommitdiff
path: root/devel/mkmf/files
diff options
context:
space:
mode:
Diffstat (limited to 'devel/mkmf/files')
-rw-r--r--devel/mkmf/files/patch-aa49
-rw-r--r--devel/mkmf/files/patch-ab28
-rw-r--r--devel/mkmf/files/patch-ac13
3 files changed, 0 insertions, 90 deletions
diff --git a/devel/mkmf/files/patch-aa b/devel/mkmf/files/patch-aa
deleted file mode 100644
index 97b039a3eba4..000000000000
--- a/devel/mkmf/files/patch-aa
+++ /dev/null
@@ -1,49 +0,0 @@
-*** Makefile.orig Tue Nov 26 17:16:37 1991
---- Makefile Wed Mar 13 23:38:28 1996
-***************
-*** 1,3 ****
-! INSTALLDIR= /usr/contrib
-
- SUBDIR= src templates
---- 1,3 ----
-! INSTALLDIR= $(PREFIX)
-
- SUBDIR= src templates
-*** src/Makefile.orig Wed May 26 09:19:57 1993
---- src/Makefile Wed Mar 13 23:39:35 1996
-***************
-*** 5,11 ****
- #CFLAGS= -O -DUNICOS5 -DINSTALLDIR=\"$(INSTALLDIR)\" # Cray Unicos 5.x
-
-! CFLAGS = -O -DBSD4X -DINSTALLDIR=\"$(INSTALLDIR)\" # Generic BSD
-
-! INSTALLDIR= /usr/contrib
-
- PROG= mkmf
---- 5,15 ----
- #CFLAGS= -O -DUNICOS5 -DINSTALLDIR=\"$(INSTALLDIR)\" # Cray Unicos 5.x
-
-! #CFLAGS = -O -DBSD4X -DINSTALLDIR=\"$(INSTALLDIR)\" # Generic BSD
-
-! CFLAGS+= -DBSD4X -DINSTALLDIR=\"$(INSTALLDIR)\"
-!
-! INSTALLDIR= $(PREFIX)
-! BINDIR= $(INSTALLDIR)/bin
-! MANDIR= $(INSTALLDIR)/man/man
-
- PROG= mkmf
-*** templates/Makefile~ Tue Nov 26 17:16:50 1991
---- templates/Makefile Wed Mar 13 23:42:36 1996
-***************
-*** 10,14 ****
- C.p
-
-! INSTALLDIR= /usr/contrib
-
- MKMFLIB= ${DESTDIR}$(INSTALLDIR)/lib/mkmf
---- 10,14 ----
- C.p
-
-! INSTALLDIR= $(PREFIX)
-
- MKMFLIB= ${DESTDIR}$(INSTALLDIR)/lib/mkmf
diff --git a/devel/mkmf/files/patch-ab b/devel/mkmf/files/patch-ab
deleted file mode 100644
index 8a2d5d507d2b..000000000000
--- a/devel/mkmf/files/patch-ab
+++ /dev/null
@@ -1,28 +0,0 @@
-*** src/misc.c~ Wed May 26 06:51:17 1993
---- src/misc.c Wed Mar 13 23:37:13 1996
-***************
-*** 68,76 ****
- HASHBLK *htinstall(); /* install hash table entry */
-
-! if (gets(answerbuf) == NULL)
- exit(1);
- if (*answerbuf != '\0')
- if (htinstall(mdefkey, answerbuf, mdefval, MDEFTABLE) == NULL)
- exit(1);
- }
-
---- 68,81 ----
- HASHBLK *htinstall(); /* install hash table entry */
-
-! if (fgets(answerbuf, ANSWERBUFSIZE, stdin) == NULL)
- exit(1);
- if (*answerbuf != '\0')
-+ {
-+ char *nlpos = strchr(answerbuf, '\n');
-+ if (nlpos)
-+ *nlpos = '\0';
- if (htinstall(mdefkey, answerbuf, mdefval, MDEFTABLE) == NULL)
- exit(1);
-+ }
- }
-
diff --git a/devel/mkmf/files/patch-ac b/devel/mkmf/files/patch-ac
deleted file mode 100644
index 2ac7192d5876..000000000000
--- a/devel/mkmf/files/patch-ac
+++ /dev/null
@@ -1,13 +0,0 @@
---- src/stringx.h~ Tue Jun 4 12:58:03 2002
-+++ src/stringx.h Tue Jun 4 12:58:33 2002
-@@ -47,9 +47,8 @@
-
- #ifdef _HasIncludeStrings
- # include <strings.h>
--#else
--# include <string.h>
- #endif
-+# include <string.h>
-
- #ifndef _HasStrDcl
- int strcmp();