diff options
author | joerg <joerg@pkgsrc.org> | 2005-10-13 14:00:51 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2005-10-13 14:00:51 +0000 |
commit | 25247f3e5d8ab9d6ed7641cab62a78397a55630a (patch) | |
tree | 2ff9b20a45eed21c674a37ad211e8398dbaa5e9e /devel/gnustep-base | |
parent | 6ff565b03a7df663f5e559aeaeac673659b5e95a (diff) | |
download | pkgsrc-25247f3e5d8ab9d6ed7641cab62a78397a55630a.tar.gz |
Don't declare errno as nested extern. Depend on errno.h to provide.
In the upstream version I added the suggestion of explicitly including
errno.h as done in many other files.
Diffstat (limited to 'devel/gnustep-base')
-rw-r--r-- | devel/gnustep-base/distinfo | 4 | ||||
-rw-r--r-- | devel/gnustep-base/patches/patch-ae | 13 | ||||
-rw-r--r-- | devel/gnustep-base/patches/patch-af | 13 |
3 files changed, 29 insertions, 1 deletions
diff --git a/devel/gnustep-base/distinfo b/devel/gnustep-base/distinfo index 2291ad625bd..c50779238a1 100644 --- a/devel/gnustep-base/distinfo +++ b/devel/gnustep-base/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.16 2005/09/30 23:13:57 rh Exp $ +$NetBSD: distinfo,v 1.17 2005/10/13 14:00:51 joerg Exp $ SHA1 (gnustep-base-1.11.1.tar.gz) = c0c284d434a101e321b035ebbe12049bd251b1d3 RMD160 (gnustep-base-1.11.1.tar.gz) = dc367da814719643b3ea0465c809f7f0dfef38b2 @@ -6,3 +6,5 @@ Size (gnustep-base-1.11.1.tar.gz) = 2006854 bytes SHA1 (patch-aa) = 3ffaf85eb43ac0be31790e7ec9602ff08cdbc7ae SHA1 (patch-ab) = 51b4273874c6f66a4c6ee6c7e78de7eadc9e7c95 SHA1 (patch-ac) = 0fe1b14c0d016e9279df84aaa26142b8ed06e63f +SHA1 (patch-ae) = f249ee724e9b1eb7aa2967a8f5d3993e0bbcca46 +SHA1 (patch-af) = 90c356ccaac3b4ad1869548769a252c1d69e7aa4 diff --git a/devel/gnustep-base/patches/patch-ae b/devel/gnustep-base/patches/patch-ae new file mode 100644 index 00000000000..1a6211bf86f --- /dev/null +++ b/devel/gnustep-base/patches/patch-ae @@ -0,0 +1,13 @@ +$NetBSD: patch-ae,v 1.1 2005/10/13 14:00:51 joerg Exp $ + +--- Source/GSFTPURLHandle.m.orig 2005-07-22 17:30:35.000000000 +0000 ++++ Source/GSFTPURLHandle.m +@@ -972,8 +972,6 @@ static NSLock *urlLock = nil; + protocol: @"tcp"]; + if (sock == nil) + { +- extern int errno; +- + /* + * Tell superclass that the load failed - let it do housekeeping. + */ diff --git a/devel/gnustep-base/patches/patch-af b/devel/gnustep-base/patches/patch-af new file mode 100644 index 00000000000..4699d7c5493 --- /dev/null +++ b/devel/gnustep-base/patches/patch-af @@ -0,0 +1,13 @@ +$NetBSD: patch-af,v 1.1 2005/10/13 14:00:51 joerg Exp $ + +--- Source/GSHTTPURLHandle.m.orig 2005-07-22 17:32:11.000000000 +0000 ++++ Source/GSHTTPURLHandle.m +@@ -1039,8 +1039,6 @@ static void debugWrite(GSHTTPURLHandle * + } + if (sock == nil) + { +- extern int errno; +- + /* + * Tell superclass that the load failed - let it do housekeeping. + */ |