diff options
author | sketch <sketch> | 2004-09-08 15:28:38 +0000 |
---|---|---|
committer | sketch <sketch> | 2004-09-08 15:28:38 +0000 |
commit | c85e08f68a5e46db4e710d9ad7849ed13da0c908 (patch) | |
tree | 30f50a92efe1348b334ace38c71f8ed8c0a5d0fe /net | |
parent | 6b8d8d630b78e5df9bf1be5d1406f30dbcbb225b (diff) | |
download | pkgsrc-c85e08f68a5e46db4e710d9ad7849ed13da0c908.tar.gz |
Complete the job of detecting strcasestr(3) by using it if available.
Diffstat (limited to 'net')
-rw-r--r-- | net/wu-ftpd/distinfo | 5 | ||||
-rw-r--r-- | net/wu-ftpd/patches/patch-ae | 16 | ||||
-rw-r--r-- | net/wu-ftpd/patches/patch-ah | 20 | ||||
-rw-r--r-- | net/wu-ftpd/patches/patch-aj | 12 |
4 files changed, 52 insertions, 1 deletions
diff --git a/net/wu-ftpd/distinfo b/net/wu-ftpd/distinfo index 7d8285ebb36..669f5769b49 100644 --- a/net/wu-ftpd/distinfo +++ b/net/wu-ftpd/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.9 2003/09/23 10:42:09 wiz Exp $ +$NetBSD: distinfo,v 1.10 2004/09/08 15:28:38 sketch Exp $ SHA1 (wu-ftpd/wu-ftpd-2.6.2.tar.gz) = e39112bd8a67f189b6a8da8dd81ceb00a910e271 Size (wu-ftpd/wu-ftpd-2.6.2.tar.gz) = 354784 bytes @@ -10,6 +10,9 @@ SHA1 (patch-aa) = 0e11b95eb9ce697d48d3665d3bb5dc903b67d89b SHA1 (patch-ab) = c3c91639939142ac5c49aa6897d4c0df211b74c6 SHA1 (patch-ac) = b5f6142045bb092e7dc6b1420d17c15d594d9350 SHA1 (patch-ad) = 3aafdad6da3ae50272d78c605f3bc2285b0ea085 +SHA1 (patch-ae) = cf36fe524ffa690e5586ccd629ff20ff9d1b06dd SHA1 (patch-af) = 6f9fe289ea5af19ba4c85f63109e8e47e5b21bca SHA1 (patch-ag) = 59cc211f4770e5e447b2cd9ca7bd5ab3dc07fc3d +SHA1 (patch-ah) = a5305d6b9f8d3e1145e6951eaf37f0cdd5c98edc SHA1 (patch-ai) = 2c866946d003fe474c74a2c1b90b87953bd99902 +SHA1 (patch-aj) = 65eef2815b2364aaa243cb93ce4a99fdf2eb9f10 diff --git a/net/wu-ftpd/patches/patch-ae b/net/wu-ftpd/patches/patch-ae new file mode 100644 index 00000000000..ecd4f3bad66 --- /dev/null +++ b/net/wu-ftpd/patches/patch-ae @@ -0,0 +1,16 @@ +$NetBSD: patch-ae,v 1.7 2004/09/08 15:28:38 sketch Exp $ + +--- support/strcasestr.c.orig 2000-07-01 19:36:29.000000000 +0100 ++++ support/strcasestr.c 2004-09-08 16:25:25.000000000 +0100 +@@ -25,4 +25,7 @@ + + ****************************************************************************/ ++#include "config.h" ++ ++#ifndef HAVE_STRCASESTR + #include <string.h> + /* +@@ -46,2 +49,3 @@ + return ((char *) s); + } ++#endif diff --git a/net/wu-ftpd/patches/patch-ah b/net/wu-ftpd/patches/patch-ah new file mode 100644 index 00000000000..7bf7504772c --- /dev/null +++ b/net/wu-ftpd/patches/patch-ah @@ -0,0 +1,20 @@ +$NetBSD: patch-ah,v 1.6 2004/09/08 15:28:39 sketch Exp $ + +--- src/proto.h.orig 2000-07-01 19:17:39.000000000 +0100 ++++ src/proto.h 2004-09-08 16:25:25.000000000 +0100 +@@ -25,4 +25,6 @@ + + ****************************************************************************/ ++#include "config.h" ++ + #include <sys/types.h> + #include <sys/stat.h> +@@ -290,6 +292,8 @@ + void endusershell(void); + ++#ifndef HAVE_STRCASESTR + /* + ** support/strcasestr.c + */ + char *strcasestr(register char *s, register char *find); ++#endif diff --git a/net/wu-ftpd/patches/patch-aj b/net/wu-ftpd/patches/patch-aj new file mode 100644 index 00000000000..8f00722dc77 --- /dev/null +++ b/net/wu-ftpd/patches/patch-aj @@ -0,0 +1,12 @@ +$NetBSD: patch-aj,v 1.7 2004/09/08 15:28:39 sketch Exp $ + +--- src/config.h.in.orig 2004-09-08 16:21:50.000000000 +0100 ++++ src/config.h.in 2004-09-08 16:22:01.000000000 +0100 +@@ -76,6 +76,7 @@ + #undef HAVE_REGEXEC + #undef HAVE_SETSID + #undef HAVE_MEMMOVE ++#undef HAVE_STRCASESTR + #undef HAVE_STRTOUL + #undef HAVE_SIGLIST + #undef FACILITY |