summaryrefslogtreecommitdiff
path: root/x11/xp/patches
diff options
context:
space:
mode:
authorcvs <cvs@pkgsrc.org>2007-03-23 19:00:19 +0000
committercvs <cvs@pkgsrc.org>2007-03-23 19:00:19 +0000
commitda1b24d6fdfe442753c8272da5432c8fcaa1f43c (patch)
tree8c7c348db30abadfdc6b77822405d9ffe7b79103 /x11/xp/patches
parentda5bb3f20f33565c1db65018aabd8cf59023cfef (diff)
downloadpkgsrc-jlam-pkgviews.tar.gz
Creating branch jlam-pkgviewsjlam-pkgviews
Diffstat (limited to 'x11/xp/patches')
-rw-r--r--x11/xp/patches/patch-aa32
-rw-r--r--x11/xp/patches/patch-ab23
-rw-r--r--x11/xp/patches/patch-ac46
-rw-r--r--x11/xp/patches/patch-ad21
4 files changed, 0 insertions, 122 deletions
diff --git a/x11/xp/patches/patch-aa b/x11/xp/patches/patch-aa
deleted file mode 100644
index 6096b24e3af..00000000000
--- a/x11/xp/patches/patch-aa
+++ /dev/null
@@ -1,32 +0,0 @@
-$NetBSD: patch-aa,v 1.1.1.1 1999/08/13 19:35:45 tron Exp $
-
---- Imakefile.orig Thu Feb 11 15:55:09 1999
-+++ Imakefile Fri Aug 13 21:30:56 1999
-@@ -1,23 +1,12 @@
--/* set MKDIRHIER in case you change BINDIR */
--MKDIRHIER = mkdirhier
--
--XPTOP = /usr/local/xp/1.2b10
--
--/* where do you want the binary installed */
--BINDIR = ${XPTOP}/bin
--
--/* where do you want the man page installed */
--MANDIR = ${XPTOP}/man/man1
--
--/* where do you want the application defaults file installed */
--XAPPLOADDIR = ${XPTOP}/lib/app-defaults
--
--
- #ifdef HasVFork
- VFORK_DEFINES = -DHASVFORK
- #endif
-
- #XP_DEFINES= -DNOPUTENV
-+
-+#if !(defined(SunArchitecture) && OSMajorVersion == 4)
-+XP_DEFINES+= -DHAS_STRERROR
-+#endif
-
- DEFINES= $(SIGNAL_DEFINES) $(VFORK_DEFINES) $(XP_DEFINES)
-
diff --git a/x11/xp/patches/patch-ab b/x11/xp/patches/patch-ab
deleted file mode 100644
index 2216b2f5cef..00000000000
--- a/x11/xp/patches/patch-ab
+++ /dev/null
@@ -1,23 +0,0 @@
-$NetBSD: patch-ab,v 1.1.1.1 1999/08/13 19:35:45 tron Exp $
-
---- utils.c.orig Thu Feb 11 13:44:15 1999
-+++ utils.c Fri Aug 13 21:30:56 1999
-@@ -1,13 +1,18 @@
- #include <errno.h>
-+#include <string.h>
- #define NULL 0
-
-
- char *
- uerror() {
-+#ifdef HAS_STRERROR
-+ return strerror(errno);
-+#else
- extern int sys_nerr;
- extern char *sys_errlist[];
- if (errno > sys_nerr)
- return NULL;
- else
- return sys_errlist[errno];
-+#endif
- }
diff --git a/x11/xp/patches/patch-ac b/x11/xp/patches/patch-ac
deleted file mode 100644
index 138d3bef017..00000000000
--- a/x11/xp/patches/patch-ac
+++ /dev/null
@@ -1,46 +0,0 @@
-$NetBSD: patch-ac,v 1.2 2006/08/22 20:20:20 jdc Exp $
-
---- xp.c.orig 2005-12-04 00:57:12.000000000 +0000
-+++ xp.c
-@@ -32,6 +32,7 @@
- */
-
- #include <stdio.h>
-+#include <stdlib.h>
- #include <errno.h>
- #include <signal.h>
- #include <sys/wait.h>
-@@ -434,7 +435,6 @@
- int size;
-
- {
-- extern int errno;
- extern char* uerror();
- extern char* readfile();
- char *mess = NULL;
-@@ -649,8 +649,6 @@
- filedata = readfile(argc > 1 ? argv[1] : "-", &size);
-
- if (argc == 2 && !filedata) {
-- extern int errno;
--
- fprintf(stderr,"%s: %s: %s\n", argv[0], argv[1], uerror());
- exit (1);
- }
-@@ -1677,6 +1675,8 @@
- *
- */
-
-+static void shellr();
-+
- /*ARGSUSED*/
- static void
- Cmnd(w, event,params,num_params)
-@@ -1688,7 +1688,6 @@
-
- char *linesearch();
- char *lastlinesearch();
-- static void shellr();
- String userdata;
- textextra *te;
- static char cmndbuf[BUFSIZ];
diff --git a/x11/xp/patches/patch-ad b/x11/xp/patches/patch-ad
deleted file mode 100644
index 4bfc4f31180..00000000000
--- a/x11/xp/patches/patch-ad
+++ /dev/null
@@ -1,21 +0,0 @@
-$NetBSD: patch-ad,v 1.1 2005/12/04 01:21:00 joerg Exp $
-
---- mysystem.c.orig 2005-12-04 00:58:03.000000000 +0000
-+++ mysystem.c
-@@ -1,15 +1,12 @@
- #include <errno.h>
- #include <signal.h>
- #include <stdio.h>
-+#include <stdlib.h>
- #include <X11/Xos.h>
- #include <X11/Intrinsic.h>
- #include "mysystem.h"
- #include "appres.h"
-
--extern char *malloc();
--extern char *getenv();
--
--extern int errno;
- extern Argc;
- extern char **Argv;
- extern AppResources app_resources;