summaryrefslogtreecommitdiff
path: root/mail/ja-mh
diff options
context:
space:
mode:
authorminskim <minskim@pkgsrc.org>2006-07-21 16:43:56 +0000
committerminskim <minskim@pkgsrc.org>2006-07-21 16:43:56 +0000
commitcdd376112bd009f8459108a7e1599bb9cd9fdb14 (patch)
tree11551a720b0f8cb3a024e82f4f89b42b6375ba66 /mail/ja-mh
parentff3f0a0e476849cd2660fd522f852d52697b6c04 (diff)
downloadpkgsrc-cdd376112bd009f8459108a7e1599bb9cd9fdb14.tar.gz
Make this package build on Linux by conditionally removing conflicting
declarations.
Diffstat (limited to 'mail/ja-mh')
-rw-r--r--mail/ja-mh/distinfo3
-rw-r--r--mail/ja-mh/patches/patch-bj31
2 files changed, 33 insertions, 1 deletions
diff --git a/mail/ja-mh/distinfo b/mail/ja-mh/distinfo
index 32f43699a47..3f6c2fd1fd9 100644
--- a/mail/ja-mh/distinfo
+++ b/mail/ja-mh/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.9 2006/04/11 15:08:38 joerg Exp $
+$NetBSD: distinfo,v 1.10 2006/07/21 16:43:56 minskim Exp $
SHA1 (mh-6.8.4-JP-3.05.tar.gz) = cb531f80be4326cd56d33d6fa9efba4d2d63d0ce
RMD160 (mh-6.8.4-JP-3.05.tar.gz) = a092a9447370a09f770121baa2ae7eced130ff0f
@@ -49,3 +49,4 @@ SHA1 (patch-bf) = 6510f0ac0b88c1f08622948ba070f450cbcf02e1
SHA1 (patch-bg) = 46a1d43ad4496ee2f4d031751f13ba48c4e492d4
SHA1 (patch-bh) = f40cc4c0859f5e1bad7daabab99a33249561c061
SHA1 (patch-bi) = c00381964adedd04613429c6adc9d9a91aac50b7
+SHA1 (patch-bj) = 609aaee6ceaf77b254f863e0b8a822b94f8bd481
diff --git a/mail/ja-mh/patches/patch-bj b/mail/ja-mh/patches/patch-bj
new file mode 100644
index 00000000000..f041b522f02
--- /dev/null
+++ b/mail/ja-mh/patches/patch-bj
@@ -0,0 +1,31 @@
+$NetBSD: patch-bj,v 1.1 2006/07/21 16:43:57 minskim Exp $
+
+--- h/strings.h.orig 2001-04-02 10:35:24.000000000 +0000
++++ h/strings.h
+@@ -35,7 +35,7 @@
+ char *index ();
+ char *mktemp ();
+ char *rindex ();
+-#ifndef SPRINTFTYPE
++#if !defined(SPRINTFTYPE) && !defined(linux)
+ #ifndef ncr /* NCR compiler complains about re-declaration */
+ char *sprintf (); /* I guess this is the new standard */
+ #endif
+@@ -47,7 +47,7 @@ SPRINTFTYPE sprintf ();
+ char *strcat ();
+ int strcmp ();
+ char *strcpy ();
+-#ifndef hpux
++#if !defined(hpux) && !defined(linux)
+ int strlen ();
+ #endif
+ char *strncat ();
+@@ -55,7 +55,7 @@ int strncmp ();
+ char *strncpy ();
+ #endif
+
+-#if !defined(SVR4) && !defined(__386BSD__) && !defined(BSD44)
++#if !defined(SVR4) && !defined(__386BSD__) && !defined(BSD44) && !defined(linux)
+ char *getenv ();
+ char *calloc (), *malloc (), *realloc ();
+ #endif /* SVR4 */