pkgsrc-Changes archive

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

CVS commit: pkgsrc



Module Name:    pkgsrc
Committed By:   ryoon
Date:           Wed Oct  9 19:17:45 UTC 2019

Modified Files:
        pkgsrc/devel/boost-headers: Makefile
        pkgsrc/meta-pkgs/boost: distinfo
Added Files:
        pkgsrc/meta-pkgs/boost/patches:
            patch-boost_asio_detail_impl_kqueue__reactor.ipp

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

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


To generate a diff of this commit:
cvs rdiff -u -r1.56 -r1.57 pkgsrc/devel/boost-headers/Makefile
cvs rdiff -u -r1.127 -r1.128 pkgsrc/meta-pkgs/boost/distinfo
cvs rdiff -u -r0 -r1.1 \
    pkgsrc/meta-pkgs/boost/patches/patch-boost_asio_detail_impl_kqueue__reactor.ipp

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/devel/boost-headers/Makefile
diff -u pkgsrc/devel/boost-headers/Makefile:1.56 pkgsrc/devel/boost-headers/Makefile:1.57
--- pkgsrc/devel/boost-headers/Makefile:1.56    Fri Aug 23 03:08:40 2019
+++ pkgsrc/devel/boost-headers/Makefile Wed Oct  9 19:17:45 2019
@@ -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

Index: pkgsrc/meta-pkgs/boost/distinfo
diff -u pkgsrc/meta-pkgs/boost/distinfo:1.127 pkgsrc/meta-pkgs/boost/distinfo:1.128
--- pkgsrc/meta-pkgs/boost/distinfo:1.127       Thu Aug 22 21:05:27 2019
+++ pkgsrc/meta-pkgs/boost/distinfo     Wed Oct  9 19:17:45 2019
@@ -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 @@ SHA512 (boost_1_71_0.tar.bz2) = b7937d50
 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

Added files:

Index: pkgsrc/meta-pkgs/boost/patches/patch-boost_asio_detail_impl_kqueue__reactor.ipp
diff -u /dev/null pkgsrc/meta-pkgs/boost/patches/patch-boost_asio_detail_impl_kqueue__reactor.ipp:1.1
--- /dev/null   Wed Oct  9 19:17:46 2019
+++ pkgsrc/meta-pkgs/boost/patches/patch-boost_asio_detail_impl_kqueue__reactor.ipp     Wed Oct  9 19:17:45 2019
@@ -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