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:   tnn
Date:           Thu Sep 10 07:54:52 UTC 2020

Modified Files:
        pkgsrc/devel/boost-headers: Makefile
        pkgsrc/meta-pkgs/boost: distinfo
        pkgsrc/meta-pkgs/boost/patches:
            patch-boost_process_detail_posix_handles.hpp

Log Message:
boost-headers: changed dirfd patch to be platform agnostic


To generate a diff of this commit:
cvs rdiff -u -r1.60 -r1.61 pkgsrc/devel/boost-headers/Makefile
cvs rdiff -u -r1.132 -r1.133 pkgsrc/meta-pkgs/boost/distinfo
cvs rdiff -u -r1.1 -r1.2 \
    pkgsrc/meta-pkgs/boost/patches/patch-boost_process_detail_posix_handles.hpp

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.60 pkgsrc/devel/boost-headers/Makefile:1.61
--- pkgsrc/devel/boost-headers/Makefile:1.60    Wed Sep  9 06:39:14 2020
+++ pkgsrc/devel/boost-headers/Makefile Thu Sep 10 07:54:52 2020
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.60 2020/09/09 06:39:14 tnn Exp $
+# $NetBSD: Makefile,v 1.61 2020/09/10 07:54:52 tnn Exp $
 
-PKGREVISION=           2
+PKGREVISION=           3
 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.132 pkgsrc/meta-pkgs/boost/distinfo:1.133
--- pkgsrc/meta-pkgs/boost/distinfo:1.132       Wed Sep  9 06:38:52 2020
+++ pkgsrc/meta-pkgs/boost/distinfo     Thu Sep 10 07:54:52 2020
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.132 2020/09/09 06:38:52 tnn Exp $
+$NetBSD: distinfo,v 1.133 2020/09/10 07:54:52 tnn Exp $
 
 SHA1 (boost_1_73_0.tar.bz2) = 6d6ed02b29c860fd21b274fc4e1f820855e765e9
 RMD160 (boost_1_73_0.tar.bz2) = 3cd711ac0f6ee60d63f5f77df4957beaa6e0bf3d
@@ -20,7 +20,7 @@ SHA1 (patch-boost_math_special__function
 SHA1 (patch-boost_math_special__functions_log1p.hpp) = df6fd088da736a4640663b64841383432f1a1201
 SHA1 (patch-boost_math_tools_config.hpp) = 9d7ef331414526057a6ac1a0ba1af815f017dfc3
 SHA1 (patch-boost_numeric_ublas_storage.hpp) = 282b5a3b5d09216ded14fae166169d64db72590e
-SHA1 (patch-boost_process_detail_posix_handles.hpp) = 2841be73b01d4949cc1f6ac9a16e59a30f1bc882
+SHA1 (patch-boost_process_detail_posix_handles.hpp) = 4084feb75142107244db86ca7d44da8037c5c745
 SHA1 (patch-boost_process_detail_posix_is__running.hpp) = cc9084735774bd33c5ff6ff936a039fa30f989dd
 SHA1 (patch-boost_property__tree_detail_xml__parser__read__rapidxml.hpp) = 3499fcc37e72396d23a9fce0f1c97891adf12a9f
 SHA1 (patch-boost_regex_config.hpp) = 6b752c7c23168c591cd391739c7a4539bef44c12

Index: pkgsrc/meta-pkgs/boost/patches/patch-boost_process_detail_posix_handles.hpp
diff -u pkgsrc/meta-pkgs/boost/patches/patch-boost_process_detail_posix_handles.hpp:1.1 pkgsrc/meta-pkgs/boost/patches/patch-boost_process_detail_posix_handles.hpp:1.2
--- pkgsrc/meta-pkgs/boost/patches/patch-boost_process_detail_posix_handles.hpp:1.1     Wed Sep  9 06:38:52 2020
+++ pkgsrc/meta-pkgs/boost/patches/patch-boost_process_detail_posix_handles.hpp Thu Sep 10 07:54:52 2020
@@ -1,4 +1,4 @@
-$NetBSD: patch-boost_process_detail_posix_handles.hpp,v 1.1 2020/09/09 06:38:52 tnn Exp $
+$NetBSD: patch-boost_process_detail_posix_handles.hpp,v 1.2 2020/09/10 07:54:52 tnn Exp $
 
 dirfd(3) on NetBSD is implemented as a macro and cannot use namespace prefix.
 
@@ -8,8 +8,8 @@ dirfd(3) on NetBSD is implemented as a m
      else
          ec.clear();
  
-+#if defined(__NetBSD__)
-+    auto my_fd = (dir.get())->dd_fd;
++#ifdef dirfd
++    auto my_fd = dirfd(dir.get());
 +#else
      auto my_fd = ::dirfd(dir.get());
 +#endif
@@ -20,8 +20,8 @@ dirfd(3) on NetBSD is implemented as a m
              return;
          }
  
-+#if defined(__NetBSD__)
-+        auto my_fd = (dir)->dd_fd;
++#ifdef dirfd
++        auto my_fd = dirfd(dir);
 +#else
          auto my_fd = ::dirfd(dir);
 +#endif



Home | Main Index | Thread Index | Old Index