diff options
author | fhajny <fhajny@pkgsrc.org> | 2014-07-18 10:41:43 +0000 |
---|---|---|
committer | fhajny <fhajny@pkgsrc.org> | 2014-07-18 10:41:43 +0000 |
commit | 4f3175b18b243989055d975f2707cfd5c7a9906c (patch) | |
tree | 10bf13a18db26bb7fcbdc8e4b998be68732fe218 /databases/mongo-c-driver/Makefile | |
parent | 18b075ca22494382042510f177d011993c883d26 (diff) | |
download | pkgsrc-4f3175b18b243989055d975f2707cfd5c7a9906c.tar.gz |
Update mongo-c-driver to 0.98.0.
Changes in 0.98.0:
- This release is primarily a bugfix release and stabilization effort as we
approach 1.0 of the MongoDB C driver.
- This release requires 0.98.0 of Libbson for improvements to the memory
management system. You can now setup custom memory allocators at the
start of the process.
Changes in 0.96.4:
- build/mci.sh script for automatically building Debian packages, RPMs,
and Solaris packaging based on the host operating system.
- Various libbson improvements, now depending on 0.8.4.
- Alignment fixes for Solaris Studio C compiler via libbson.
- Addition of mongoc_gridfs_remove_by_filename() for removing a file from
gridfs by filename.
- client command functions can now take a fully qualified namespace.
- collections can now support names that indicate a command namespace.
- Commands will no longer fail if they do not contain an "ok" field.
- OP_QUERY will now set the slaveOk bit in the wire protocol if
readPreferences are set to non-PRIMARY.
- Various documentation and build fixes.
Diffstat (limited to 'databases/mongo-c-driver/Makefile')
-rw-r--r-- | databases/mongo-c-driver/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/databases/mongo-c-driver/Makefile b/databases/mongo-c-driver/Makefile index 2be42b2b1e0..88d4e3d6665 100644 --- a/databases/mongo-c-driver/Makefile +++ b/databases/mongo-c-driver/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.2 2014/06/11 14:31:29 fhajny Exp $ +# $NetBSD: Makefile,v 1.3 2014/07/18 10:41:43 fhajny Exp $ -DISTNAME= mongo-c-driver-0.96.2 +DISTNAME= mongo-c-driver-0.98.0 CATEGORIES= databases MASTER_SITES= https://github.com/mongodb/mongo-c-driver/releases/download/${PKGVERSION_NOREV}/ @@ -28,6 +28,6 @@ CONFIGURE_ARGS+= --enable-man-pages=yes PKGCONFIG_OVERRIDE+= src/libmongoc-1.0.pc.in PKGCONFIG_OVERRIDE+= src/libmongoc-ssl-1.0.pc.in -BUILDLINK_API_DEPENDS.libbson+= libbson>=0.8.2 +BUILDLINK_API_DEPENDS.libbson+= libbson>=0.98 .include "../../devel/libbson/buildlink3.mk" .include "../../mk/bsd.pkg.mk" |