You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

90 lines
3.2 KiB

  1. ==============
  2. mongo-c-driver
  3. ==============
  4. About
  5. =====
  6. mongo-c-driver is a project that includes two libraries:
  7. - libmongoc, a client library written in C for MongoDB.
  8. - libbson, a library providing useful routines related to building, parsing, and iterating BSON documents.
  9. If libmongoc is not needed, it is possible to build and install only libbson.
  10. Documentation / Support / Feedback
  11. ==================================
  12. The documentation is available at http://mongoc.org/.
  13. For issues with, questions about, or feedback for libmongoc, please look into
  14. our `support channels <http://www.mongodb.org/about/support>`_. Please
  15. do not email any of the libmongoc developers directly with issues or
  16. questions - you're more likely to get an answer on the `mongodb-user list`_
  17. on Google Groups.
  18. Bugs / Feature Requests
  19. =======================
  20. Think you’ve found a bug? Want to see a new feature in libmongoc? Please open a
  21. case in our issue management tool, JIRA:
  22. - `Create an account and login <https://jira.mongodb.org>`_.
  23. - Navigate to `the CDRIVER project <https://jira.mongodb.org/browse/CDRIVER>`_.
  24. - Click **Create Issue** - Please provide as much information as possible about the issue type and how to reproduce it.
  25. Bug reports in JIRA for all driver projects (i.e. CDRIVER, CSHARP, JAVA) and the
  26. Core Server (i.e. SERVER) project are **public**.
  27. How To Ask For Help
  28. -------------------
  29. If you are having difficulty building the driver after reading the below instructions, please email
  30. the `mongodb-user list`_ to ask for help. Please include in your email all of the following
  31. information:
  32. - The version of the driver you are trying to build (branch or tag).
  33. - Examples: master branch, 1.9.5 tag
  34. - Host OS, version, and architecture.
  35. - Examples: Windows 10 64-bit x86, Ubuntu 16.04 64-bit x86, macOS 10.13
  36. - C Compiler and version.
  37. - Examples: GCC 7.3.0, Visual Studio Community 2017, clang 3.9, XCode 9.3
  38. - The output of ``cmake``.
  39. - The text of the error you encountered.
  40. Failure to include the relevant information will delay a useful response.
  41. Here is a made-up example of a help request that provides the relevant
  42. information:
  43. Hello, I'm trying to build the C driver with Kerberos support, from
  44. mongo-c-driver-1.9.5.tar.gz. I'm on Ubuntu 16.04, 64-bit Intel, with gcc
  45. 5.4.0. I run CMake like::
  46. $ cmake .
  47. -- The C compiler identification is ;GNU 5.4.0
  48. -- Check for working C compiler: /usr/bin/cc
  49. -- Check for working C compiler: /usr/bin/cc -- works
  50. ... SNIPPED OUTPUT, but when you ask for help, include full output without any omissions ...
  51. -- Searching for libsasl2
  52. -- Not found (specify -DCMAKE_LIBRARY_PATH=/path/to/sasl/lib for SASL support)
  53. CMake Error at CMakeLists.txt:10 (_message):
  54. SASL not found
  55. Can you tell me what I need to install? Thanks!
  56. .. _mongodb-user list: http://groups.google.com/group/mongodb-user
  57. Security Vulnerabilities
  58. ------------------------
  59. If you’ve identified a security vulnerability in a driver or any other
  60. MongoDB project, please report it according to the `instructions here
  61. <http://docs.mongodb.org/manual/tutorial/create-a-vulnerability-report>`_.
  62. Installation
  63. ============
  64. Detailed installation instructions are in the manual:
  65. http://mongoc.org/libmongoc/current/installing.html