pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/databases/mongo-c-driver mongo-c-driver: updated to 1....



details:   https://anonhg.NetBSD.org/pkgsrc/rev/703d1db6e6e0
branches:  trunk
changeset: 320443:703d1db6e6e0
user:      adam <adam%pkgsrc.org@localhost>
date:      Tue Mar 05 14:24:13 2019 +0000

description:
mongo-c-driver: updated to 1.14.0

mongo-c-driver 1.14.0
=====================
It is my pleasure to announce the MongoDB C Driver 1.14.0.

Features:
  * Support for OpenSSL 1.1.1 and its implementation of TLS v1.3.
  * New function mongoc_stream_should_retry.
  * New accessor mongoc_server_description_last_update_time.
  * New method mongoc_client_reset to be called after forking.

Bug fixes:
  * OP_MSG with unacknowledged writes (write concern of w:0) would serialize
    incorrectly on big-endian platforms, causing writes to use the default
    write concern of w:1.
  * mongoc_collection_update_many and mongoc_collection_delete_many would fail
    with the URI option retryWrites=true.
  * In a transaction, the driver now properly ignores the readConcern configured
    on a client, database, or collection: only the mongoc_transaction_opt_t's
    readConcern is used.
  * Remove timestamp from uninstall scripts to permit reproducible build.
  * Setting mongoc_ssl_opt_t.pem_file or ca_file to a bad file path caused a
    hang with Darwin SSL.
  * Fix the ENABLE_SASL cmake option:
    * Remove unnecessary GSSAPI value. It was equivalent to specifying ENABLE_SASL=CYRUS.
    * ENABLE_SASL=AUTO now correctly chooses SSPI on Windows instead of CYRUS.
  * The client pool failed to set proper apm callbacks for clients created
    via try_pop().


mongo-c-driver 1.13.1
=====================
It is my pleasure to announce the MongoDB C Driver 1.13.1.

Bug fixes:
  * mongoc_collection_update_many and mongoc_collection_delete_many would fail
    with the URI option retryWrites=true.
  * Remove timestamp from uninstall scripts to permit reproducible build.
  * Add missing header files to the release tarball to fix compilation when
    configuring with ENABLE_SASL=GSSAPI.
  * Separate libmongoc and libbson uninstall scripts so they do not overwrite
    each other.
  * Fix running make install with DESTDIR.


mongo-c-driver 1.13.0
=====================
It is my pleasure to announce the MongoDB C Driver 1.13.0.

Features:
  * Report a new error code, MONGOC_ERROR_GRIDFS_CORRUPT, when a chunk larger
    than chunkSize is detected. Before, the driver had crashed with an assert.
  * Restructure of install directory. All mongoc headers are under mongoc/
    and all bson headers are under bson/. The preferred way of including the
    headers are mongoc/mongoc.h and bson/bson.h respectively.
    Forwarding headers in the root are provided for backwards compatibility.
  * The default CMake build type had been unspecified, now it is RelWithDebInfo.
  * Support LibreSSL 2.7+.

Bug fixes:
  * mongoc_collection_replace_one is now a correctly exported symbol.
  * Fix multiple issues with readConcern and writeConcern inheritance.
  * Fix rare crash with mongodb+srv URIs on Windows.
  * mongoc_gridfs_create_file_from_stream ignored errors while writing chunks
    to the server.
  * The following functions should not have taken a "bypassDocumentValidation"
    option in bson_t *opts, the option is now prohibited:
    - mongoc_bulk_operation_insert_with_opts
    - mongoc_bulk_operation_update_one_with_opts
    - mongoc_bulk_operation_update_many_with_opts
    - mongoc_bulk_operation_replace_one_with_opts
  * The heartbeat-succeeded and heartbeat-failed events (part of SDAM
    Monitoring) had uninitialized "duration" fields, they are now set correctly.


mongo-c-driver 1.12.0
=====================
It is my pleasure to announce the MongoDB C Driver 1.12.0.

Features:
  * New function mongoc_client_session_in_transaction to check if a multi-
    document transaction is started.
  * New examples for change streams and transactions, improved guide for
    migrating from mongoc_collection_count to mongoc_collection_count_documents

Bug fixes:
  * Fix occasional crash in sharded queries
  * Retry all retryable write concern errors
  * mongoc_client_session_commit_transaction sets the correct error label when
    the primary is unavailable
  * mongoc_collection_find_with_opts had prohibited read preference "primary"
    in a transaction
  * mongoc_collection_aggregate had not inherited its mongoc_collection_t's
    read preference; only an explicitly provided read preference was used.
  * Allow unencoded delimiters in username/password if unambiguous


mongo-c-driver 1.11.0
=====================
It is my pleasure to announce the MongoDB C Driver 1.11.0. This release adds
support for MongoDB 4.0 features. It includes the following additions and
improvements:
  * Multi-document transactions, see mongoc_client_session_start_transaction
  * New function mongoc_error_has_label to check for specific error labels such
    as "TransientTransactionError" or "UnknownTransactionCommitResult" in
    error replies.
  * New functions to subscribe to changes on an entire client or database:
    - mongoc_client_watch
    - mongoc_database_watch
  * New option for change streams, "startAtOperationTime".
  * mongoc_collection_count_with_opts is deprecated for two new functions:
    - mongoc_collection_count_documents
    - mongoc_collection_estimated_document_count
  * Support for SCRAM-SHA-256 authentication, including support for non-ASCII
    passwords using libicu is an optional dependency.
  * Faster mongoc_database_get_collection_names_with_opts fetches only names,
    not the entire collection metadata.

Additional changes not specific to MongoDB 4.0:
  * All "destroy" functions such as mongoc_collection_destroy now ignore a NULL
    argument.
  * The driver now returns an error if you attempt to use "arrayFilters" in an
    update with a MongoDB server older than 3.6.
  * Update functions include a new "upsertedCount" field in the reply document.
  * Replace MD5 with FNV-1a hash to generate ObjectIds (for FIPS compliance).

Bug fixes:
  * Functions incorrectly marked with the "const" compiler attribute are now
    marked as "pure", fixes build error when link-time optimization is enabled.


mongo-c-driver 1.10.3
=====================
No change since 1.10.2; released to keep pace with libbson's version.


mongo-c-driver 1.10.2
=====================
It is my pleasure to announce the MongoDB C Driver 1.10.2. This release fixes
the libbson and libmongoc installed library filenames and SONAMEs on Linux.
They had changed unintentionally with the switch to CMake in 1.10.0; they are
now consistent with 1.9.x and previous releases. Thanks to Roberto C. S?nchez
for the fix.


mongo-c-driver 1.10.1
=====================
It is my pleasure to announce the MongoDB C Driver 1.10.1. This release fixes
the following bugs introduced in version 1.10.0:

  * Client sessions were not prohibited with unacknowledged write concern and
    mongoc_bulk_operation_execute; now they are prohibited. Client sessions have
    been prohibited with all other unacknowledged writes since 1.10.
  * The "arrayFilters" update option, new in MongoDB 3.6 and supported since
    libmongoc 1.9.0, was inadvertently prohibited by
    mongoc_bulk_operation_update_one_with_opts and
    mongoc_bulk_operation_update_many_with_opts in 1.10. The option is now
    permitted again.
  * The mongoc-stat tool for displaying shared counters was disabled on Linux
    and not installed; it is now restored.


mongo-c-driver 1.10.0
=====================
It is my pleasure to announce MongoDB C Driver 1.10.0. This version drops
support for MongoDB 2.6 and adds the following features and bugfixes:

  * libbson and libmongoc are now maintained in the mongo-c-driver repository,
    although they are still built as separate libraries, and libbson can still
    be used without libmongoc.
  * Building libbson and libmongoc now requires CMake on all platforms. The
    Autotools build scripts ("configure" and related scripts) have been deleted.
    See the "installing" page for updated instructions, including the new
    ENABLE_MONGOC option and changes to the ENABLE_BSON option.
  * IPv6 is now fully supported and conforms to RFC-6555. If a hostname has both
    IPv4 and IPv6 DNS records, the driver tries connecting with IPv6 first. If a
    connection can't be established after 250ms then IPv4 is tried in parallel.
    Whichever succeeds connection first cancels the other. The successful DNS
    result is cached for 10 minutes.
  * If CMake is configured with ENABLE_SSL=AUTO (the default), libmongoc now
    uses native TLS libraries on Mac and Windows, and OpenSSL everywhere else.
    Before, it would search for OpenSSL on all platforms and only use native
    TLS on Mac and Windows as a fallback.
  * The driver now handshakes SSL connections to multiple servers in a replica
    set or sharded cluster in parallel, so long as it uses OpenSSL or Windows
    SChannel. (SSL handshakes with Apple's Secure Transport are still serial.)
    A larger receive buffer with SChannel increases performance over slow
    connections.
  * All functions that accept read concern now prohibit it, if MongoDB is too
    old to support it (MongoDB 3.0).
  * Client sessions are now prohibited with unacknowledged writes.
  * mongoc_collection_find_and_modify_with_opts now prohibits write concern if
    MongoDB is too old to support it (MongoDB 3.0).
  * Other helper functions for commands that write, now prohibit write concern
    if MongoDB is too old to support it (pre-3.4):
      mongoc_client_read_write_command_with_opts
      mongoc_client_write_command_with_opts
      mongoc_collection_read_write_command_with_opts
      mongoc_collection_write_command_with_opts
      mongoc_database_read_write_command_with_opts
      mongoc_database_write_command_with_opts
      mongoc_collection_aggregate with $out
      mongoc_collection_drop_index_with_opts
      mongoc_collection_drop_with_opts
      mongoc_collection_rename_with_opts
      mongoc_database_drop_with_opts
    Write concern behavior is unchanged for regular CRUD functions.
  * Setting a negative writeConcern level of -2 or smaller, via the "opts"
    parameter to functions that accept BSON options, is now prohibited. The
    special "w" values -2 through -4 are only used internally. The deprecated
    "w=-1" is still allowed, as a synonym for "w=0".
  * The Kerberos URI option authMechanismProperties=CANONICALIZE_HOST_NAME:true
    is now implemented with the Windows Kerberos provider, SSPI.
  * This repository now includes GDB and LLDB customizations for pretty-printing
    bson_t structs as JSON while debugging. See the "debugging" page.
  * The internal preprocessor symbol HAVE_STRINGS_H has been renamed
    BSON_HAVE_STRINGS_H. If you maintain a handwritten bson-config.h you must
    rename this symbol.
  * The following helper functions do not work with mongoc_client_session_t,
    they are deprecated in favor of running MongoDB commands directly with a
    function like mongoc_client_read_command_with_opts:
      mongoc_client_get_server_status
      mongoc_collection_stats
      mongoc_collection_validate
  * mongoc_cursor_is_alive is now deprecated for mongoc_cursor_more, which is
    functionally equivalent.

diffstat:

 databases/mongo-c-driver/Makefile                                           |   67 +-
 databases/mongo-c-driver/PLIST                                              |  449 ++++++++-
 databases/mongo-c-driver/buildlink3.mk                                      |   10 +-
 databases/mongo-c-driver/distinfo                                           |   12 +-
 databases/mongo-c-driver/options.mk                                         |   21 +-
 databases/mongo-c-driver/patches/patch-src_mongoc_mongoc-cursor.c           |   23 -
 databases/mongo-c-driver/patches/patch-tests_test-mongoc-stream-tls-error.c |   15 -
 7 files changed, 433 insertions(+), 164 deletions(-)

diffs (truncated from 803 to 300 lines):

diff -r 6e9c63e10bb2 -r 703d1db6e6e0 databases/mongo-c-driver/Makefile
--- a/databases/mongo-c-driver/Makefile Tue Mar 05 12:48:46 2019 +0000
+++ b/databases/mongo-c-driver/Makefile Tue Mar 05 14:24:13 2019 +0000
@@ -1,52 +1,51 @@
-# $NetBSD: Makefile,v 1.37 2018/12/15 21:12:19 wiz Exp $
+# $NetBSD: Makefile,v 1.38 2019/03/05 14:24:13 adam Exp $
 
-DISTNAME=      mongo-c-driver-1.9.5
+DISTNAME=      mongo-c-driver-1.14.0
 CATEGORIES=    databases
 MASTER_SITES=  ${MASTER_SITE_GITHUB:=mongodb/}
+GITHUB_RELEASE=        ${PKGVERSION_NOREV}
 
 MAINTAINER=    fhajny%NetBSD.org@localhost
-HOMEPAGE=      https://github.com/mongodb/mongo-c-driver/
+HOMEPAGE=      https://github.com/mongodb/mongo-c-driver
 COMMENT=       MongoDB client library written in C
 LICENSE=       apache-2.0
 
-GITHUB_RELEASE=        ${PKGVERSION_NOREV}
-
 # Requires shm_open()
 NOT_FOR_PLATFORM+=     OpenBSD-*-*
 
-BUILD_DEPENDS+=        ${PYPKGPREFIX}-expat-[0-9]*:../../textproc/py-expat
-BUILD_DEPENDS+=        ${PYPKGPREFIX}-sphinx-[0-9]*:../../textproc/py-sphinx
+USE_CMAKE=     yes
+USE_TOOLS+=    pkg-config
+
+CMAKE_ARGS+=   -DENABLE_ICU=ON
+#CMAKE_ARGS+=  -DENABLE_MAN_PAGES=ON
+CMAKE_ARGS+=   -DENABLE_SNAPPY=SYSTEM
+CMAKE_ARGS+=   -DENABLE_UNINSTALL=OFF
+CMAKE_ARGS+=   -DENABLE_ZLIB=SYSTEM
+
+PKGCONFIG_OVERRIDE+=   src/libbson/src/libbson-1.0.pc.in
+PKGCONFIG_OVERRIDE+=   src/libbson/src/libbson-static-1.0.pc.in
+PKGCONFIG_OVERRIDE+=   src/libmongoc/src/libmongoc-1.0.pc.in
+PKGCONFIG_OVERRIDE+=   src/libmongoc/src/libmongoc-ssl-1.0.pc.in
+PKGCONFIG_OVERRIDE+=   src/libmongoc/src/libmongoc-static-1.0.pc.in
+
+INSTALLATION_DIRS+=    ${PKGMANDIR}/man3
+
+PLIST_VARS+=   unix
+
+.include "../../mk/bsd.prefs.mk"
+.if ${OPSYS} != "Darwin"
+PLIST.unix=    yes
+.endif
 
 .include "options.mk"
 
-GNU_CONFIGURE= yes
-USE_LIBTOOL=   yes
-USE_TOOLS+=    gmake pkg-config
-
-CONFIGURE_ARGS+=       --enable-man-pages=yes
-CONFIGURE_ARGS+=       --with-libbson=system
-CONFIGURE_ARGS+=       --with-snappy=system
-CONFIGURE_ARGS+=       --with-zlib=system
-CONFIGURE_ENV+=                SPHINX_BUILD=${PREFIX}/bin/sphinx-build${PYVERSSUFFIX}
-
-PKGCONFIG_OVERRIDE+=   src/libmongoc-1.0.pc.in
-PKGCONFIG_OVERRIDE+=   src/libmongoc-ssl-1.0.pc.in
+post-install:
+.for lib in libbson libmongoc
+       ${INSTALL_MAN} ${WRKSRC}/src/${lib}/doc/man/*.3 \
+               ${DESTDIR}${PREFIX}/${PKGMANDIR}/man3
+.endfor
 
-INSTALLATION_DIRS+=    ${PKGMANDIR}/man3
-
-# Test behaves inconsistently
-#TEST_MAKE_FLAGS+=     MONGOC_TEST_SKIP_LIVE=on
-#TEST_TARGET=          check
-
-PYTHON_FOR_BUILD_ONLY= yes
-
-BUILDLINK_TRANSFORM.SunOS+=    rm:-D_XOPEN_SOURCE=1
-
-.include "../../lang/python/application.mk"
-
-# libbson and mongo-c-driver released are tied
-BUILDLINK_API_DEPENDS.libbson+=        libbson>=${PKGVERSION_NOREV}
-.include "../../devel/libbson/buildlink3.mk"
 .include "../../devel/snappy/buildlink3.mk"
 .include "../../devel/zlib/buildlink3.mk"
+.include "../../textproc/icu/buildlink3.mk"
 .include "../../mk/bsd.pkg.mk"
diff -r 6e9c63e10bb2 -r 703d1db6e6e0 databases/mongo-c-driver/PLIST
--- a/databases/mongo-c-driver/PLIST    Tue Mar 05 12:48:46 2019 +0000
+++ b/databases/mongo-c-driver/PLIST    Tue Mar 05 14:24:13 2019 +0000
@@ -1,71 +1,334 @@
-@comment $NetBSD: PLIST,v 1.16 2018/01/02 10:47:52 fhajny Exp $
-bin/mongoc-stat
-include/libmongoc-1.0/mongoc-apm.h
-include/libmongoc-1.0/mongoc-bulk-operation.h
-include/libmongoc-1.0/mongoc-change-stream.h
-include/libmongoc-1.0/mongoc-client-pool.h
-include/libmongoc-1.0/mongoc-client-session.h
-include/libmongoc-1.0/mongoc-client.h
-include/libmongoc-1.0/mongoc-collection.h
-include/libmongoc-1.0/mongoc-config.h
-include/libmongoc-1.0/mongoc-counters.defs
-include/libmongoc-1.0/mongoc-cursor.h
-include/libmongoc-1.0/mongoc-database.h
-include/libmongoc-1.0/mongoc-error.h
-include/libmongoc-1.0/mongoc-find-and-modify.h
-include/libmongoc-1.0/mongoc-flags.h
-include/libmongoc-1.0/mongoc-gridfs-file-list.h
-include/libmongoc-1.0/mongoc-gridfs-file-page.h
-include/libmongoc-1.0/mongoc-gridfs-file.h
-include/libmongoc-1.0/mongoc-gridfs.h
-include/libmongoc-1.0/mongoc-handshake.h
-include/libmongoc-1.0/mongoc-host-list.h
-include/libmongoc-1.0/mongoc-index.h
-include/libmongoc-1.0/mongoc-init.h
-include/libmongoc-1.0/mongoc-iovec.h
-include/libmongoc-1.0/mongoc-log.h
-include/libmongoc-1.0/mongoc-macros.h
-include/libmongoc-1.0/mongoc-matcher.h
-include/libmongoc-1.0/mongoc-opcode.h
-include/libmongoc-1.0/mongoc-rand.h
-include/libmongoc-1.0/mongoc-read-concern.h
-include/libmongoc-1.0/mongoc-read-prefs.h
-include/libmongoc-1.0/mongoc-server-description.h
-include/libmongoc-1.0/mongoc-socket.h
-include/libmongoc-1.0/mongoc-ssl.h
-include/libmongoc-1.0/mongoc-stream-buffered.h
-include/libmongoc-1.0/mongoc-stream-file.h
-include/libmongoc-1.0/mongoc-stream-gridfs.h
-include/libmongoc-1.0/mongoc-stream-socket.h
-include/libmongoc-1.0/mongoc-stream-tls-libressl.h
-include/libmongoc-1.0/mongoc-stream-tls-openssl.h
-include/libmongoc-1.0/mongoc-stream-tls-secure-channel.h
-include/libmongoc-1.0/mongoc-stream-tls-secure-transport.h
-include/libmongoc-1.0/mongoc-stream-tls.h
-include/libmongoc-1.0/mongoc-stream.h
-include/libmongoc-1.0/mongoc-topology-description.h
-include/libmongoc-1.0/mongoc-uri.h
-include/libmongoc-1.0/mongoc-version-functions.h
-include/libmongoc-1.0/mongoc-version.h
-include/libmongoc-1.0/mongoc-write-concern.h
+@comment $NetBSD: PLIST,v 1.17 2019/03/05 14:24:13 adam Exp $
+${PLIST.unix}bin/mongoc-stat
+include/libbson-1.0/bson.h
+include/libbson-1.0/bson/bcon.h
+include/libbson-1.0/bson/bson-atomic.h
+include/libbson-1.0/bson/bson-clock.h
+include/libbson-1.0/bson/bson-compat.h
+include/libbson-1.0/bson/bson-config.h
+include/libbson-1.0/bson/bson-context.h
+include/libbson-1.0/bson/bson-decimal128.h
+include/libbson-1.0/bson/bson-endian.h
+include/libbson-1.0/bson/bson-error.h
+include/libbson-1.0/bson/bson-iter.h
+include/libbson-1.0/bson/bson-json.h
+include/libbson-1.0/bson/bson-keys.h
+include/libbson-1.0/bson/bson-macros.h
+include/libbson-1.0/bson/bson-md5.h
+include/libbson-1.0/bson/bson-memory.h
+include/libbson-1.0/bson/bson-oid.h
+include/libbson-1.0/bson/bson-prelude.h
+include/libbson-1.0/bson/bson-reader.h
+include/libbson-1.0/bson/bson-string.h
+include/libbson-1.0/bson/bson-types.h
+include/libbson-1.0/bson/bson-utf8.h
+include/libbson-1.0/bson/bson-value.h
+include/libbson-1.0/bson/bson-version-functions.h
+include/libbson-1.0/bson/bson-version.h
+include/libbson-1.0/bson/bson-writer.h
+include/libbson-1.0/bson/bson.h
 include/libmongoc-1.0/mongoc.h
-include/libmongoc-1.0/op-compressed.def
-include/libmongoc-1.0/op-delete.def
-include/libmongoc-1.0/op-get-more.def
-include/libmongoc-1.0/op-header.def
-include/libmongoc-1.0/op-insert.def
-include/libmongoc-1.0/op-kill-cursors.def
-include/libmongoc-1.0/op-msg.def
-include/libmongoc-1.0/op-query.def
-include/libmongoc-1.0/op-reply-header.def
-include/libmongoc-1.0/op-reply.def
-include/libmongoc-1.0/op-update.def
-include/libmongoc-1.0/utlist.h
+include/libmongoc-1.0/mongoc/mongoc-apm.h
+include/libmongoc-1.0/mongoc/mongoc-bulk-operation.h
+include/libmongoc-1.0/mongoc/mongoc-change-stream.h
+include/libmongoc-1.0/mongoc/mongoc-client-pool.h
+include/libmongoc-1.0/mongoc/mongoc-client-session.h
+include/libmongoc-1.0/mongoc/mongoc-client.h
+include/libmongoc-1.0/mongoc/mongoc-collection.h
+include/libmongoc-1.0/mongoc/mongoc-config.h
+include/libmongoc-1.0/mongoc/mongoc-cursor.h
+include/libmongoc-1.0/mongoc/mongoc-database.h
+include/libmongoc-1.0/mongoc/mongoc-error.h
+include/libmongoc-1.0/mongoc/mongoc-find-and-modify.h
+include/libmongoc-1.0/mongoc/mongoc-flags.h
+include/libmongoc-1.0/mongoc/mongoc-gridfs-bucket.h
+include/libmongoc-1.0/mongoc/mongoc-gridfs-file-list.h
+include/libmongoc-1.0/mongoc/mongoc-gridfs-file-page.h
+include/libmongoc-1.0/mongoc/mongoc-gridfs-file.h
+include/libmongoc-1.0/mongoc/mongoc-gridfs.h
+include/libmongoc-1.0/mongoc/mongoc-handshake.h
+include/libmongoc-1.0/mongoc/mongoc-host-list.h
+include/libmongoc-1.0/mongoc/mongoc-index.h
+include/libmongoc-1.0/mongoc/mongoc-init.h
+include/libmongoc-1.0/mongoc/mongoc-iovec.h
+include/libmongoc-1.0/mongoc/mongoc-log.h
+include/libmongoc-1.0/mongoc/mongoc-macros.h
+include/libmongoc-1.0/mongoc/mongoc-matcher.h
+include/libmongoc-1.0/mongoc/mongoc-opcode.h
+include/libmongoc-1.0/mongoc/mongoc-prelude.h
+include/libmongoc-1.0/mongoc/mongoc-rand.h
+include/libmongoc-1.0/mongoc/mongoc-read-concern.h
+include/libmongoc-1.0/mongoc/mongoc-read-prefs.h
+include/libmongoc-1.0/mongoc/mongoc-server-description.h
+include/libmongoc-1.0/mongoc/mongoc-socket.h
+include/libmongoc-1.0/mongoc/mongoc-ssl.h
+include/libmongoc-1.0/mongoc/mongoc-stream-buffered.h
+include/libmongoc-1.0/mongoc/mongoc-stream-file.h
+include/libmongoc-1.0/mongoc/mongoc-stream-gridfs.h
+include/libmongoc-1.0/mongoc/mongoc-stream-socket.h
+include/libmongoc-1.0/mongoc/mongoc-stream-tls-libressl.h
+include/libmongoc-1.0/mongoc/mongoc-stream-tls-openssl.h
+include/libmongoc-1.0/mongoc/mongoc-stream-tls.h
+include/libmongoc-1.0/mongoc/mongoc-stream.h
+include/libmongoc-1.0/mongoc/mongoc-topology-description.h
+include/libmongoc-1.0/mongoc/mongoc-uri.h
+include/libmongoc-1.0/mongoc/mongoc-version-functions.h
+include/libmongoc-1.0/mongoc/mongoc-version.h
+include/libmongoc-1.0/mongoc/mongoc-write-concern.h
+include/libmongoc-1.0/mongoc/mongoc.h
+lib/cmake/libbson-1.0/libbson-1.0-config-version.cmake
+lib/cmake/libbson-1.0/libbson-1.0-config.cmake
+lib/cmake/libbson-static-1.0/libbson-static-1.0-config-version.cmake
+lib/cmake/libbson-static-1.0/libbson-static-1.0-config.cmake
 lib/cmake/libmongoc-1.0/libmongoc-1.0-config-version.cmake
 lib/cmake/libmongoc-1.0/libmongoc-1.0-config.cmake
-lib/libmongoc-1.0.la
+lib/cmake/libmongoc-static-1.0/libmongoc-static-1.0-config-version.cmake
+lib/cmake/libmongoc-static-1.0/libmongoc-static-1.0-config.cmake
+lib/libbson-1.0.so
+lib/libbson-1.0.so.0
+lib/libbson-1.0.so.0.0.0
+lib/libbson-static-1.0.a
+lib/libmongoc-1.0.so
+lib/libmongoc-1.0.so.0
+lib/libmongoc-1.0.so.0.0.0
+lib/libmongoc-static-1.0.a
+lib/pkgconfig/libbson-1.0.pc
+lib/pkgconfig/libbson-static-1.0.pc
 lib/pkgconfig/libmongoc-1.0.pc
 ${PLIST.ssl}lib/pkgconfig/libmongoc-ssl-1.0.pc
+lib/pkgconfig/libmongoc-static-1.0.pc
+man/man3/bson_append_array.3
+man/man3/bson_append_array_begin.3
+man/man3/bson_append_array_end.3
+man/man3/bson_append_binary.3
+man/man3/bson_append_bool.3
+man/man3/bson_append_code.3
+man/man3/bson_append_code_with_scope.3
+man/man3/bson_append_date_time.3
+man/man3/bson_append_dbpointer.3
+man/man3/bson_append_decimal128.3
+man/man3/bson_append_document.3
+man/man3/bson_append_document_begin.3
+man/man3/bson_append_document_end.3
+man/man3/bson_append_double.3
+man/man3/bson_append_int32.3
+man/man3/bson_append_int64.3
+man/man3/bson_append_iter.3
+man/man3/bson_append_maxkey.3
+man/man3/bson_append_minkey.3
+man/man3/bson_append_now_utc.3
+man/man3/bson_append_null.3
+man/man3/bson_append_oid.3
+man/man3/bson_append_regex.3
+man/man3/bson_append_regex_w_len.3
+man/man3/bson_append_symbol.3
+man/man3/bson_append_time_t.3
+man/man3/bson_append_timestamp.3
+man/man3/bson_append_timeval.3
+man/man3/bson_append_undefined.3
+man/man3/bson_append_utf8.3
+man/man3/bson_append_value.3
+man/man3/bson_array_as_json.3
+man/man3/bson_as_canonical_extended_json.3
+man/man3/bson_as_json.3
+man/man3/bson_as_relaxed_extended_json.3
+man/man3/bson_ascii_strtoll.3
+man/man3/bson_character_and_string_routines.3
+man/man3/bson_check_version.3
+man/man3/bson_compare.3
+man/man3/bson_concat.3
+man/man3/bson_context_destroy.3
+man/man3/bson_context_get_default.3
+man/man3/bson_context_new.3
+man/man3/bson_context_t.3
+man/man3/bson_copy.3



Home | Main Index | Thread Index | Old Index