Merge from vendor branch TNF:
[pkgsrcv2.git] / mail / thunderbird / patches / patch-ae
1 $NetBSD: patch-ae,v 1.8 2011/11/13 16:59:58 tnn Exp $
2
3 --- mozilla/nsprpub/pr/src/misc/prnetdb.c.orig  2012-02-16 10:25:22.000000000 +0000
4 +++ mozilla/nsprpub/pr/src/misc/prnetdb.c
5 @@ -105,7 +105,7 @@ PRLock *_pr_dnsLock = NULL;
6          || defined(AIX4_3_PLUS) || (defined(AIX) && defined(_THREAD_SAFE)) \
7         || (defined(HPUX10_10) && defined(_REENTRANT)) \
8          || (defined(HPUX10_20) && defined(_REENTRANT)) \
9 -        || defined(OPENBSD)
10 +        || defined(OPENBSD) || defined(NETBSD)
11  #define _PR_HAVE_GETPROTO_R
12  #define _PR_HAVE_GETPROTO_R_INT
13  #endif
14 @@ -115,6 +115,11 @@ PRLock *_pr_dnsLock = NULL;
15  #define _PR_HAVE_5_ARG_GETPROTO_R
16  #endif
17  
18 +#if __DragonFly_version >= 200202
19 +#define _PR_HAVE_GETPROTO_R
20 +#define _PR_HAVE_5_ARG_GETPROTO_R
21 +#endif
22 +
23  /* BeOS has glibc but not the glibc-style getprotobyxxx_r functions. */
24  #if (defined(__GLIBC__) && __GLIBC__ >= 2 && !defined(XP_BEOS))
25  #define _PR_HAVE_GETPROTO_R
26 @@ -332,7 +337,7 @@ _pr_QueryNetIfs(void)
27  }
28  
29  #elif (defined(DARWIN) && defined(HAVE_GETIFADDRS)) || defined(FREEBSD) \
30 -    || defined(NETBSD) || defined(OPENBSD)
31 +    || defined(NETBSD) || defined(OPENBSD) || defined(DRAGONFLY)
32  
33  /*
34   * Use the BSD getifaddrs function.
35 @@ -2076,6 +2081,11 @@ PR_IMPLEMENT(PRAddrInfo *) PR_GetAddrInf
36           */
37          hints.ai_socktype = SOCK_STREAM;
38  
39 +/* NetBSD >= 2.99.9 has a thread-safe resolver */
40 +#if defined(__NetBSD_Version__) && __NetBSD_Version__ < 299000900
41 +        LOCK_DNS();
42 +#endif
43 +
44          rv = GETADDRINFO(hostname, NULL, &hints, &res);
45  #ifdef AI_ADDRCONFIG
46          if (rv == EAI_BADFLAGS && (hints.ai_flags & AI_ADDRCONFIG)) {
47 @@ -2083,6 +2093,11 @@ PR_IMPLEMENT(PRAddrInfo *) PR_GetAddrInf
48              rv = GETADDRINFO(hostname, NULL, &hints, &res);
49          }
50  #endif
51 +
52 +#if defined(__NetBSD_Version__) && __NetBSD_Version__ < 299000900
53 +        UNLOCK_DNS();
54 +#endif
55 +
56          if (rv == 0)
57              return (PRAddrInfo *) res;
58