summaryrefslogtreecommitdiff
path: root/net/netcat6/patches
diff options
context:
space:
mode:
authorghen <ghen>2006-07-07 18:47:52 +0000
committerghen <ghen>2006-07-07 18:47:52 +0000
commita808adc0c116648213cc7275922a84a53d0476dd (patch)
treeb18a5421838b829d02bdd613ed054521486486cf /net/netcat6/patches
parentb1a13b9cd804dde98c6fb96e5ab95e980458484e (diff)
downloadpkgsrc-a808adc0c116648213cc7275922a84a53d0476dd.tar.gz
Revert patch-aa to the previous revision and just add __NetBSD__ to the list.
Suggested by joerg.
Diffstat (limited to 'net/netcat6/patches')
-rw-r--r--net/netcat6/patches/patch-aa27
1 files changed, 9 insertions, 18 deletions
diff --git a/net/netcat6/patches/patch-aa b/net/netcat6/patches/patch-aa
index 83078858cb1..d387688a8c4 100644
--- a/net/netcat6/patches/patch-aa
+++ b/net/netcat6/patches/patch-aa
@@ -1,22 +1,13 @@
-$NetBSD: patch-aa,v 1.4 2006/07/07 17:51:19 ghen Exp $
+$NetBSD: patch-aa,v 1.5 2006/07/07 18:47:52 ghen Exp $
---- src/netsupport.c.orig 2006-01-19 23:46:23.000000000 +0100
-+++ src/netsupport.c 2006-07-06 20:48:20.000000000 +0200
-@@ -32,6 +32,9 @@
- #include <sys/socket.h>
- #include <netinet/in.h>
-
-+#ifdef __GNUC__
-+#define alloca __builtin_alloca
-+#else
- #if HAVE_ALLOCA_H
- #include <alloca.h>
+--- src/netsupport.c.orig 2006-03-14 01:33:01.000000000 +0000
++++ src/netsupport.c
+@@ -38,7 +38,7 @@
+ #ifdef _AIX
+ #pragma alloca
#else
-@@ -43,6 +46,7 @@ char *alloca();
+-#ifndef alloca /* predefined by HP cc +Olibcalls */
++#if !defined(alloca) && !defined(__DragonFly__) && !defined(__FreeBSD__) && !defined(__NetBSD__)
+ char *alloca();
#endif
#endif
- #endif
-+#endif
-
- RCSID("@(#) $Header: /cvsroot/pkgsrc/net/netcat6/patches/patch-aa,v 1.4 2006/07/07 17:51:19 ghen Exp $");
-