summaryrefslogtreecommitdiff
path: root/databases/mongo-c-driver/Makefile
diff options
context:
space:
mode:
authorfhajny <fhajny>2016-02-16 15:26:30 +0000
committerfhajny <fhajny>2016-02-16 15:26:30 +0000
commit2b125d363a43c379e61031fa4d3387c130f9ac54 (patch)
treeecae3e712d3a3bb5610cc78315cb1f8c16da82de /databases/mongo-c-driver/Makefile
parentc58f77a76c2d02e39817bd72a794992e40e57cb8 (diff)
downloadpkgsrc-2b125d363a43c379e61031fa4d3387c130f9ac54.tar.gz
Update databases/mongo-c-driver to 1.3.3
1.3.3 - Fix a bug where a slightly-oversized bulk write operation was not split into batches; instead, it was sent whole to the server, which rejected it. 1.3.2 - A socket is properly discarded after a network error from a command. - mongoc_database_get_collection now copies the database's read preferences, read concern, and write concern, instead of copying the client's. - mongoc_cursor_t's private struct now allows a negative limit. 1.3.1 - mongoc_client_get_gridfs now copies the client's read preferences, read concern, and write concern to the newly created mongoc_gridfs_t. Before this fix, GridFS operations were always executed with the default config: data was read from the primary, with the read concern level "local", and written with write concern "acknowledged". Now, if you have configured any of these options on the mongoc_client_t, they are respected by the mongoc_gridfs_t. - CMakeLists.txt now includes and installs the pkg-config files.
Diffstat (limited to 'databases/mongo-c-driver/Makefile')
-rw-r--r--databases/mongo-c-driver/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/databases/mongo-c-driver/Makefile b/databases/mongo-c-driver/Makefile
index 02d9e889a78..9e1de3b987d 100644
--- a/databases/mongo-c-driver/Makefile
+++ b/databases/mongo-c-driver/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.14 2015/12/08 09:35:24 fhajny Exp $
+# $NetBSD: Makefile,v 1.15 2016/02/16 15:26:30 fhajny Exp $
-DISTNAME= mongo-c-driver-1.3.0
+DISTNAME= mongo-c-driver-1.3.3
CATEGORIES= databases
MASTER_SITES= ${MASTER_SITE_GITHUB:=mongodb/}
@@ -32,6 +32,6 @@ post-install:
${INSTALL_MAN} ${WRKSRC}/doc/man/mongoc*.3 \
${DESTDIR}${PREFIX}/${PKGMANDIR}/man3
-BUILDLINK_API_DEPENDS.libbson+= libbson>=1.3.0
+BUILDLINK_API_DEPENDS.libbson+= libbson>=1.3.3
.include "../../devel/libbson/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"