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 | |
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')
-rw-r--r-- | editors/pico/distinfo | 3 | ||||
-rw-r--r-- | editors/pico/patches/patch-ab | 15 |
2 files changed, 1 insertions, 17 deletions
diff --git a/editors/pico/distinfo b/editors/pico/distinfo index 5bdf5dbb311..d690b66fde1 100644 --- a/editors/pico/distinfo +++ b/editors/pico/distinfo @@ -1,9 +1,8 @@ -$NetBSD: distinfo,v 1.13 2004/05/13 18:27:48 adam Exp $ +$NetBSD: distinfo,v 1.14 2004/08/11 14:10:18 markd Exp $ SHA1 (pine4.60.tar.bz2) = 7276fad1325a7d6c96a80454e12dcc05e2ad8b78 Size (pine4.60.tar.bz2) = 2996963 bytes SHA1 (patch-aa) = 13a6268321e3620c9438d19abec92072c7aecab4 -SHA1 (patch-ab) = 8f254beb0fc5d7e8f04ee442db64fccecd1d3eb2 SHA1 (patch-ac) = 0b14723354ef24109015c482acf62f338de4998a SHA1 (patch-ad) = a5145664372b0ad308a0ee2501211e927d343971 SHA1 (patch-ae) = f228f3c7f61be31a36730b252dfa37d611e8be4b 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 - } - - |