Wed Sep 17 15:04:21 2008 UTC ()
Fix build on DragonFly. From PR 39561.


(joerg)
diff -r1.15 -r1.16 pkgsrc/meta-pkgs/boost/distinfo
diff -r1.1 -r1.2 pkgsrc/meta-pkgs/boost/patches/patch-aq

cvs diff -r1.15 -r1.16 pkgsrc/meta-pkgs/boost/distinfo (expand / switch to unified diff)

--- pkgsrc/meta-pkgs/boost/distinfo 2008/09/13 16:14:13 1.15
+++ pkgsrc/meta-pkgs/boost/distinfo 2008/09/17 15:04:21 1.16
@@ -1,12 +1,12 @@ @@ -1,12 +1,12 @@
1$NetBSD: distinfo,v 1.15 2008/09/13 16:14:13 jmmv Exp $ 1$NetBSD: distinfo,v 1.16 2008/09/17 15:04:21 joerg Exp $
2 2
3SHA1 (boost_1_36_0.tar.bz2) = b8f0f5d90b260aff995ef38fad4eee5e73d00810 3SHA1 (boost_1_36_0.tar.bz2) = b8f0f5d90b260aff995ef38fad4eee5e73d00810
4RMD160 (boost_1_36_0.tar.bz2) = 0ac38ee3c355c22fd5534bc806bf516890e5182d 4RMD160 (boost_1_36_0.tar.bz2) = 0ac38ee3c355c22fd5534bc806bf516890e5182d
5Size (boost_1_36_0.tar.bz2) = 28839275 bytes 5Size (boost_1_36_0.tar.bz2) = 28839275 bytes
6SHA1 (patch-ac) = 453d4107df03e96e66cbdbebceebdfcbed2710c1 6SHA1 (patch-ac) = 453d4107df03e96e66cbdbebceebdfcbed2710c1
7SHA1 (patch-ad) = cf9811e3ce56e0d32a63eeb86eaf520f730ab70f 7SHA1 (patch-ad) = cf9811e3ce56e0d32a63eeb86eaf520f730ab70f
8SHA1 (patch-af) = f0a1fc4b9884663fbe5b9613bc61837b8e6e6af1 8SHA1 (patch-af) = f0a1fc4b9884663fbe5b9613bc61837b8e6e6af1
9SHA1 (patch-ak) = 32785c636ccc9be479db2d40d170f95e77d4e291 9SHA1 (patch-ak) = 32785c636ccc9be479db2d40d170f95e77d4e291
10SHA1 (patch-am) = 1b49351c5172903956886959859f4fd97fdf060c 10SHA1 (patch-am) = 1b49351c5172903956886959859f4fd97fdf060c
11SHA1 (patch-ap) = 41960933cc1b59b13a3346d31393b1ccd917e147 11SHA1 (patch-ap) = 41960933cc1b59b13a3346d31393b1ccd917e147
12SHA1 (patch-aq) = e76dbb67925682a8daa2cc5da2f7f127f8f1c346 12SHA1 (patch-aq) = 490fdf23b2422c75b0cfd3e2035766f4530d2d33

cvs diff -r1.1 -r1.2 pkgsrc/meta-pkgs/boost/patches/Attic/patch-aq (expand / switch to unified diff)

--- pkgsrc/meta-pkgs/boost/patches/Attic/patch-aq 2008/09/13 16:14:13 1.1
+++ pkgsrc/meta-pkgs/boost/patches/Attic/patch-aq 2008/09/17 15:04:21 1.2
@@ -1,13 +1,27 @@ @@ -1,13 +1,27 @@
1$NetBSD: patch-aq,v 1.1 2008/09/13 16:14:13 jmmv Exp $ 1--- boost/test/impl/execution_monitor.ipp.orig 2008-09-15 04:30:57 +0300
2 2+++ boost/test/impl/execution_monitor.ipp 2008-09-16 09:35:04 +0300
3--- boost/test/impl/execution_monitor.ipp.orig 2007-11-25 11:07:19.000000000 -0700 3@@ -139,7 +139,7 @@ namespace { void _set_se_translator( voi
4+++ boost/test/impl/execution_monitor.ipp 
5@@ -139,7 +139,7 @@ 
6 # define BOOST_TEST_USE_ALT_STACK 4 # define BOOST_TEST_USE_ALT_STACK
7 # endif 5 # endif
8  6
9-# if !defined(__CYGWIN__) && !(defined(macintosh) || defined(__APPLE__) || defined(__APPLE_CC__)) 7-# if !defined(__CYGWIN__) && !(defined(macintosh) || defined(__APPLE__) || defined(__APPLE_CC__))
10+# if !defined(__CYGWIN__) && !(defined(macintosh) || defined(__APPLE__) || defined(__APPLE_CC__)) && !defined(__NetBSD__) 8+# if !defined(__CYGWIN__) && !(defined(macintosh) || defined(__APPLE__) || defined(__APPLE_CC__)) && !defined(__NetBSD__) && !defined(__DragonFly__)
11 # define BOOST_TEST_CATCH_SIGPOLL 9 # define BOOST_TEST_CATCH_SIGPOLL
12 # endif 10 # endif
13  11
 12@@ -249,6 +249,7 @@ system_signal_exception::report() const
 13 if( !m_sig_info )
 14 return; // no error actually occur?
 15
 16+#if !defined(__DragonFly__)
 17 if( m_sig_info->si_code <= 0 ) {
 18 switch( m_sig_info->si_code ) {
 19 case SI_USER:
 20@@ -489,6 +490,7 @@ system_signal_exception::report() const
 21 report_error( execution_exception::system_error, "unrecognized signal" );
 22 }
 23 }
 24+#endif /* !__DragonFly__ */
 25 }
 26
 27 //____________________________________________________________________________//