diff options
-rw-r--r-- | dev-db/mongodb/ChangeLog | 5 | ||||
-rw-r--r-- | dev-db/mongodb/files/mongodb-2.2-r2-boost-1.50.patch | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/dev-db/mongodb/ChangeLog b/dev-db/mongodb/ChangeLog index afc51b13f338..37be50c41632 100644 --- a/dev-db/mongodb/ChangeLog +++ b/dev-db/mongodb/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-db/mongodb # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/mongodb/ChangeLog,v 1.48 2012/11/04 14:23:25 ultrabug Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/mongodb/ChangeLog,v 1.49 2012/11/04 17:20:15 ultrabug Exp $ + + 04 Nov 2012; <alexys@gentoo.org> files/mongodb-2.2-r2-boost-1.50.patch: + Correct 2.2.x boost-1.50 patch thanks to Hank Leininger for spotting. *mongodb-2.2.1 (04 Nov 2012) *mongodb-2.2.0-r2 (04 Nov 2012) diff --git a/dev-db/mongodb/files/mongodb-2.2-r2-boost-1.50.patch b/dev-db/mongodb/files/mongodb-2.2-r2-boost-1.50.patch index 49a63af1e827..c8b146f5d87d 100644 --- a/dev-db/mongodb/files/mongodb-2.2-r2-boost-1.50.patch +++ b/dev-db/mongodb/files/mongodb-2.2-r2-boost-1.50.patch @@ -173,7 +173,7 @@ // skip hidden files and directories - if (root.leaf()[0] == '.' && root.leaf() != ".") -+ if (root.leaf().string()[0] == '.' && root.leaf() != ".") ++ if (root.leaf().string()[0] == '.' && root.leaf().string() != ".") return; if ( is_directory( root ) ) { @@ -212,4 +212,4 @@ +// boost::filesystem::path::default_name_check( boost::filesystem::no_check ); +// #endif - _name = argv[0];
\ No newline at end of file + _name = argv[0]; |