summaryrefslogtreecommitdiff
path: root/editors/pico/patches
diff options
context:
space:
mode:
authormarkd <markd@pkgsrc.org>2004-08-11 14:10:18 +0000
committermarkd <markd@pkgsrc.org>2004-08-11 14:10:18 +0000
commiteb06afd01299583008938f8772ae18245247d85d (patch)
treedc31436c40a4d01a46a438d364531fb8a91fed9a /editors/pico/patches
parentab9f67cf5d647470ef2e173ac5d9279d2175e242 (diff)
downloadpkgsrc-eb06afd01299583008938f8772ae18245247d85d.tar.gz
Remove patch-ab. Fixes build on Solaris 9. Assume all platforms we
support have strerror(). If there is a platform that doesn't have strerror() then this should be changed to make OLDWAY properly choose between the two alternatives and then define OLDWAY in make flags.
Diffstat (limited to 'editors/pico/patches')
-rw-r--r--editors/pico/patches/patch-ab15
1 files changed, 0 insertions, 15 deletions
diff --git a/editors/pico/patches/patch-ab b/editors/pico/patches/patch-ab
deleted file mode 100644
index e4986a82c5a..00000000000
--- a/editors/pico/patches/patch-ab
+++ /dev/null
@@ -1,15 +0,0 @@
-$NetBSD: patch-ab,v 1.10 2004/05/13 18:27:48 adam Exp $
-
---- pico/osdep/unix.orig 2004-05-05 22:01:13.000000000 +0000
-+++ pico/osdep/unix
-@@ -2659,10 +2659,7 @@ char *
- errstr(err)
- int err;
- {
-- return((err >= 0) ? (char *) strerror(err) : NULL);
--#ifdef OLDWAY
- return((err >= 0 && err < sys_nerr) ? (char *)sys_errlist[err] : NULL);
--#endif
- }
-
-