summaryrefslogtreecommitdiff
path: root/www
diff options
context:
space:
mode:
authormycroft <mycroft@pkgsrc.org>2000-11-09 07:33:06 +0000
committermycroft <mycroft@pkgsrc.org>2000-11-09 07:33:06 +0000
commita14313bb27789e8a320d75767a3c03a5d8457402 (patch)
tree5cff9a6edfdcb517c02d0babc1d230c29d2bab37 /www
parent40cb0246223edeae834f3f5741051f5bfbd70207 (diff)
downloadpkgsrc-a14313bb27789e8a320d75767a3c03a5d8457402.tar.gz
Make the LDAP stuff compile. (Not needed for Mozilla proper, but for PSM.)
Diffstat (limited to 'www')
-rw-r--r--www/mozilla/files/patch-sum3
-rw-r--r--www/mozilla/patches/patch-am22
2 files changed, 24 insertions, 1 deletions
diff --git a/www/mozilla/files/patch-sum b/www/mozilla/files/patch-sum
index 8b994c98003..559399ee037 100644
--- a/www/mozilla/files/patch-sum
+++ b/www/mozilla/files/patch-sum
@@ -1,4 +1,4 @@
-$NetBSD: patch-sum,v 1.30 2000/11/09 07:26:28 mycroft Exp $
+$NetBSD: patch-sum,v 1.31 2000/11/09 07:33:06 mycroft Exp $
MD5 (patch-aa) = a07a4956a8c6a91fce0ef653b59c902f
MD5 (patch-ab) = dfa8ac0ffaac96293904adb6372c5b8d
@@ -12,3 +12,4 @@ MD5 (patch-ai) = ebd71ac01fc02d0fa639af6348d1926e
MD5 (patch-aj) = dae5f7b6f80a833fd63721c5c751fe0b
MD5 (patch-ak) = 287b726e245828a0ef5801a621573e09
MD5 (patch-al) = f3d66fcac5c26d8ade008ceb6e4ec731
+MD5 (patch-am) = ae0011f145fee15042a104d9a67a7b44
diff --git a/www/mozilla/patches/patch-am b/www/mozilla/patches/patch-am
new file mode 100644
index 00000000000..ca46233ae1f
--- /dev/null
+++ b/www/mozilla/patches/patch-am
@@ -0,0 +1,22 @@
+$NetBSD: patch-am,v 1.4 2000/11/09 07:33:06 mycroft Exp $
+
+--- directory/c-sdk/ldap/include/portable.h.orig Thu Apr 20 16:18:00 2000
++++ directory/c-sdk/ldap/include/portable.h Thu Nov 9 06:49:11 2000
+@@ -243,7 +243,7 @@
+ defined(UNIXWARE) || defined(SUNOS4) || defined(SNI) || defined(BSDI) || \
+ defined(NCR) || defined(OSF1) || defined(NEC) || \
+ ( defined(HPUX10) && !defined(_REENTRANT)) || defined(HPUX11) || \
+- defined(UnixWare) || defined(LINUX) || (defined(AIX) && !defined(USE_REENTRANT_LIBC))
++ defined(UnixWare) || defined(LINUX) || (defined(AIX) && !defined(USE_REENTRANT_LIBC)) || defined(NETBSD)
+ #define GETHOSTBYNAME( n, r, b, l, e ) gethostbyname( n )
+ #elif defined(AIX)
+ /* Maybe this is for another version of AIX?
+@@ -273,7 +273,7 @@
+ #elif defined(HPUX10) && defined(_REENTRANT) && !defined(HPUX11)
+ #define CTIME( c, b, l ) nsldapi_compat_ctime_r( c, b, l )
+ #elif defined( IRIX6_2 ) || defined( IRIX6_3 ) || defined(UNIXWARE) \
+- || defined(OSF1V4) || defined(AIX) || defined(UnixWare) || defined(hpux) || defined(HPUX11)
++ || defined(OSF1V4) || defined(AIX) || defined(UnixWare) || defined(hpux) || defined(HPUX11) || defined(NETBSD)
+ #define CTIME( c, b, l ) ctime_r( c, b )
+ #elif defined( OSF1V3 )
+ #define CTIME( c, b, l ) (ctime_r( c, b, l ) ? NULL : b)