summaryrefslogtreecommitdiff
path: root/meta-pkgs
diff options
context:
space:
mode:
authoradam <adam@pkgsrc.org>2010-08-28 15:28:23 +0000
committeradam <adam@pkgsrc.org>2010-08-28 15:28:23 +0000
commit862b4e1f2314c513c00a506696a94242c89c32e2 (patch)
treefc0db3fa5a780dadffb270aee45b24c278472081 /meta-pkgs
parentd583c23e60bbfb3a9dec0a65ec4e0252c13eebb1 (diff)
downloadpkgsrc-862b4e1f2314c513c00a506696a94242c89c32e2.tar.gz
Fix buildling serialization libs
Diffstat (limited to 'meta-pkgs')
-rw-r--r--meta-pkgs/boost/distinfo3
-rw-r--r--meta-pkgs/boost/patches/patch-ad13
2 files changed, 15 insertions, 1 deletions
diff --git a/meta-pkgs/boost/distinfo b/meta-pkgs/boost/distinfo
index ff47c544cda..afb570ca360 100644
--- a/meta-pkgs/boost/distinfo
+++ b/meta-pkgs/boost/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.27 2010/08/26 17:40:59 adam Exp $
+$NetBSD: distinfo,v 1.28 2010/08/28 15:28:23 adam Exp $
SHA1 (boost_1_44_0.tar.bz2) = 0dfeaad7a316ddfdcdb8a7e42443ef048ad18c01
RMD160 (boost_1_44_0.tar.bz2) = 1fe1bf83ce5699dc43cbfc3d5a6997722c34c938
@@ -6,6 +6,7 @@ Size (boost_1_44_0.tar.bz2) = 38806420 bytes
SHA1 (patch-aa) = 5a38ee7ad5f16a823d8bb81a95734e7957c55f2d
SHA1 (patch-ab) = 2fa89ce671e5fb0dca160a820524cff2d1ec8927
SHA1 (patch-ac) = 12304069d394b56bb6294701ff30fe811a91abed
+SHA1 (patch-ad) = 299272ecd11cab1b5af099ef1a65e6db1daa4784
SHA1 (patch-af) = ef9a9363420f519c45baaf98badff4c885a7595c
SHA1 (patch-aq) = 6078cb5ac979c339a787e48cfe949e76613987e7
SHA1 (patch-ar) = 6b7e3b808fe0c20d92522b87ee949690ce34f749
diff --git a/meta-pkgs/boost/patches/patch-ad b/meta-pkgs/boost/patches/patch-ad
new file mode 100644
index 00000000000..c3d021e4eb5
--- /dev/null
+++ b/meta-pkgs/boost/patches/patch-ad
@@ -0,0 +1,13 @@
+$NetBSD: patch-ad,v 1.10 2010/08/28 15:28:55 adam Exp $
+
+--- boost/archive/basic_archive.hpp.orig 2010-08-28 14:31:24.000000000 +0000
++++ boost/archive/basic_archive.hpp
+@@ -115,7 +115,7 @@ public:
+ explicit class_id_type(const int t_) : t(t_){
+ assert(t_ <= boost::integer_traits<base_type>::const_max);
+ }
+- explicit class_id_type(const std::size_t t_) : t(t_){
++ explicit class_id_type(const size_t t_) : t(t_){
+ // assert(t_ <= boost::integer_traits<base_type>::const_max);
+ }
+ class_id_type(const class_id_type & t_) :