summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordarcy <darcy>2012-10-13 22:43:22 +0000
committerdarcy <darcy>2012-10-13 22:43:22 +0000
commit84b4adbedda82575c67dd35a39fcd02c0bcb41f2 (patch)
treeada77841b944245c082477fc97921d0e22e292a0
parent4ea850c2098354dbdf3e9a9be345181f9329e465 (diff)
downloadpkgsrc-84b4adbedda82575c67dd35a39fcd02c0bcb41f2.tar.gz
Missed two more files in PLIST.
Add another patch that stops an annoying warning.
-rw-r--r--devel/ptlib/PLIST4
-rw-r--r--devel/ptlib/distinfo3
-rw-r--r--devel/ptlib/patches/patch-include_ptlib_pmachdep.h46
3 files changed, 51 insertions, 2 deletions
diff --git a/devel/ptlib/PLIST b/devel/ptlib/PLIST
index ccc55fd7732..553a09e6079 100644
--- a/devel/ptlib/PLIST
+++ b/devel/ptlib/PLIST
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.10 2012/10/13 16:48:19 darcy Exp $
+@comment $NetBSD: PLIST,v 1.11 2012/10/13 22:43:23 darcy Exp $
bin/ptlib-config
include/ptbuildopts.h
include/ptclib/asnber.h
@@ -133,6 +133,7 @@ include/ptlib/unix/ptlib/icmpsock.h
include/ptlib/unix/ptlib/ipdsock.h
include/ptlib/unix/ptlib/ipsock.h
include/ptlib/unix/ptlib/maccoreaudio.h
+include/ptlib/unix/ptlib/mail.h
include/ptlib/unix/ptlib/mutex.h
include/ptlib/unix/ptlib/pdirect.h
include/ptlib/unix/ptlib/pipechan.h
@@ -161,6 +162,7 @@ include/ptlib/vconvert.h
include/ptlib/video.h
include/ptlib/videoio.h
include/ptlib/videoio1394dc.h
+include/ptlib/wxstring.h
lib/libpt.so
lib/libpt.so.${PKGVERSION}
lib/libpt_s.a
diff --git a/devel/ptlib/distinfo b/devel/ptlib/distinfo
index a33108a4bd6..0f1c16a3a7e 100644
--- a/devel/ptlib/distinfo
+++ b/devel/ptlib/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.14 2012/10/13 00:49:37 darcy Exp $
+$NetBSD: distinfo,v 1.15 2012/10/13 22:43:23 darcy Exp $
SHA1 (ptlib-2.10.7.tar.xz) = 51077b76aed30ab614e31b2a18cb383848d4332c
RMD160 (ptlib-2.10.7.tar.xz) = 0c05b57f5435f4646af05278e66718e0e433a10a
@@ -8,6 +8,7 @@ SHA1 (patch-configure) = d05e68485a9cd3190410e7f4beb14ac44050d2cb
SHA1 (patch-configure.ac) = 0813261dd595f2980bf691ad6fc69b27a527f803
SHA1 (patch-include_ptbuildopts.h.in) = 93559a280ec01e3eaa8396cd83bce7cf4ac275c5
SHA1 (patch-include_ptclib_pldap.h) = f220ea3f2dcae8d098bdb70329cdf86d4f1279fa
+SHA1 (patch-include_ptlib_pmachdep.h) = 2603979ef5da32d5856275421ae0d5f72a30bf08
SHA1 (patch-make_unix.mak) = 13d814a914b3bc4897a350f4393873b9b3a2b685
SHA1 (patch-plugins_sound_esd_sound_esd.h) = 6caff0b4890fe3b137e5dd7ceb1013abe1f7fec8
SHA1 (patch-plugins_sound_oss_sound_oss.cxx) = 50817861710a82e98ebb3b029d021619a09c1132
diff --git a/devel/ptlib/patches/patch-include_ptlib_pmachdep.h b/devel/ptlib/patches/patch-include_ptlib_pmachdep.h
new file mode 100644
index 00000000000..57d5a1b18b5
--- /dev/null
+++ b/devel/ptlib/patches/patch-include_ptlib_pmachdep.h
@@ -0,0 +1,46 @@
+$NetBSD: patch-include_ptlib_pmachdep.h,v 1.1 2012/10/13 22:43:23 darcy Exp $
+
+- Prevent an annoying warning while building
+
+--- /usr/obj/devel/ptlib/work.x86_64/ptlib-2.10.7/include/ptlib/unix/ptlib/pmachdep.h.orig 2012-08-23 02:12:57.000000000 +0000
++++ /usr/obj/devel/ptlib/work.x86_64/ptlib-2.10.7/include/ptlib/unix/ptlib/pmachdep.h
+@@ -112,7 +112,9 @@ typedef int socklen_t;
+ #elif defined(P_OPENBSD)
+
+ #if defined(P_PTHREADS)
++#ifndef _THREAD_SAFE
+ #define _THREAD_SAFE
++#endif
+ #define P_THREAD_SAFE_CLIB
+
+ #include <pthread.h>
+@@ -137,7 +139,9 @@ typedef int socklen_t;
+ #elif defined(P_NETBSD)
+
+ #if defined(P_PTHREADS)
++#ifndef _THREAD_SAFE
+ #define _THREAD_SAFE
++#endif
+ #define P_THREAD_SAFE_CLIB
+
+ #include <pthread.h>
+@@ -447,7 +451,9 @@ struct hostent * Vx_gethostbyaddr(char *
+ #define strcasecmp strcmp
+
+ #define P_HAS_SEMAPHORES
++#ifndef _THREAD_SAFE
+ #define _THREAD_SAFE
++#endif
+ #define P_THREAD_SAFE_CLIB
+ typedef long PThreadIdentifier;
+ typedef long PProcessIdentifier;
+@@ -481,7 +487,9 @@ extern "C" {
+ #elif defined(P_QNX)
+
+ #if defined(P_PTHREADS)
++#ifndef _THREAD_SAFE
+ #define _THREAD_SAFE
++#endif
+ #define P_THREAD_SAFE_CLIB
+
+ #include <pthread.h>