diff options
author | markd <markd@pkgsrc.org> | 2004-08-11 14:10:18 +0000 |
---|---|---|
committer | markd <markd@pkgsrc.org> | 2004-08-11 14:10:18 +0000 |
commit | eb06afd01299583008938f8772ae18245247d85d (patch) | |
tree | dc31436c40a4d01a46a438d364531fb8a91fed9a /editors/pico/patches | |
parent | ab9f67cf5d647470ef2e173ac5d9279d2175e242 (diff) | |
download | pkgsrc-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-ab | 15 |
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 - } - - |