pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc Fix devel/boost-libs build under recent NetBSD 9.99



details:   https://anonhg.NetBSD.org/pkgsrc/rev/126d2b8febca
branches:  trunk
changeset: 340855:126d2b8febca
user:      ryoon <ryoon%pkgsrc.org@localhost>
date:      Wed Oct 09 19:17:45 2019 +0000

description:
Fix devel/boost-libs build under recent NetBSD 9.99

* Follow EV_SET fingerprint change
* Bump PKGREVISION of devel/boost-headers

diffstat:

 devel/boost-headers/Makefile                                             |   4 +-
 meta-pkgs/boost/distinfo                                                 |   3 +-
 meta-pkgs/boost/patches/patch-boost_asio_detail_impl_kqueue__reactor.ipp |  17 ++++++++++
 3 files changed, 21 insertions(+), 3 deletions(-)

diffs (50 lines):

diff -r 4d9eba538627 -r 126d2b8febca devel/boost-headers/Makefile
--- a/devel/boost-headers/Makefile      Wed Oct 09 16:27:30 2019 +0000
+++ b/devel/boost-headers/Makefile      Wed Oct 09 19:17:45 2019 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.56 2019/08/23 03:08:40 ryoon Exp $
+# $NetBSD: Makefile,v 1.57 2019/10/09 19:17:45 ryoon Exp $
 
-PKGREVISION=           1
+PKGREVISION=           2
 BOOST_PACKAGE=         headers
 BOOST_COMMENT=         (build-time headers)
 BOOST_CONFIG=          generate
diff -r 4d9eba538627 -r 126d2b8febca meta-pkgs/boost/distinfo
--- a/meta-pkgs/boost/distinfo  Wed Oct 09 16:27:30 2019 +0000
+++ b/meta-pkgs/boost/distinfo  Wed Oct 09 19:17:45 2019 +0000
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.127 2019/08/22 21:05:27 tnn Exp $
+$NetBSD: distinfo,v 1.128 2019/10/09 19:17:45 ryoon Exp $
 
 SHA1 (boost_1_71_0.tar.bz2) = 5b0a3cef23f0c124dde5bbb64324f615ac843ace
 RMD160 (boost_1_71_0.tar.bz2) = a46b886ca26993610c84615fca4340ad3f955f81
@@ -6,6 +6,7 @@
 Size (boost_1_71_0.tar.bz2) = 100124647 bytes
 SHA1 (patch-boost_archive_basic__archive.hpp) = 7e7c88cfc00fbf524c70dedd8b9c3c889f8b684f
 SHA1 (patch-boost_asio_detail_config.hpp) = f3ae1fd0a026c21a89d196c74e02c4d3c8ea0808
+SHA1 (patch-boost_asio_detail_impl_kqueue__reactor.ipp) = ce16c7c875e6361f952513e700a14761312650fa
 SHA1 (patch-boost_atomic_detail_ops_gcc_sparc.hpp) = 53525f876daeec0a23963917c4c6fad154cf67c4
 SHA1 (patch-boost_config_detail_posix__features.hpp) = 7d310574e7020c79c8bfa87cff4db0a2edc5b0bc
 SHA1 (patch-boost_config_detail_suffix.hpp) = 12e22085e7c292b2451ea8bc581beaddcb936252
diff -r 4d9eba538627 -r 126d2b8febca meta-pkgs/boost/patches/patch-boost_asio_detail_impl_kqueue__reactor.ipp
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/meta-pkgs/boost/patches/patch-boost_asio_detail_impl_kqueue__reactor.ipp  Wed Oct 09 19:17:45 2019 +0000
@@ -0,0 +1,17 @@
+$NetBSD: patch-boost_asio_detail_impl_kqueue__reactor.ipp,v 1.1 2019/10/09 19:17:45 ryoon Exp $
+
+* Fix build with recent NetBSD 9.99
+
+--- boost/asio/detail/impl/kqueue_reactor.ipp.orig     2019-08-14 12:02:17.000000000 +0000
++++ boost/asio/detail/impl/kqueue_reactor.ipp
+@@ -28,6 +28,10 @@
+ #include <boost/asio/detail/push_options.hpp>
+ 
+ #if defined(__NetBSD__)
++#include <sys/param.h>
++#endif
++
++#if defined(__NetBSD__) && __NetBSD_Version__ < 999001500
+ # define BOOST_ASIO_KQUEUE_EV_SET(ev, ident, filt, flags, fflags, data, udata) \
+     EV_SET(ev, ident, filt, flags, fflags, data, \
+       reinterpret_cast<intptr_t>(static_cast<void*>(udata)))



Home | Main Index | Thread Index | Old Index