-
Notifications
You must be signed in to change notification settings - Fork 456
CDRIVER-3717 show dev packages in install instructions #1270
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,19 +32,23 @@ The libmongoc package is available on recent versions of Debian and Ubuntu. | |
|
||
.. code-block:: none | ||
|
||
$ apt-get install libmongoc-1.0-0 | ||
$ apt-get install libmongoc-dev | ||
|
||
The ``libmongoc-dev`` package includes headers required to build applications using libmongoc. To check which version is available, run ``apt-cache policy libmongoc-dev``. To only install the libraries without headers, install the ``libmongoc-1.0-0`` package. | ||
|
||
On Fedora, a mongo-c-driver package is available in the default repositories and can be installed with: | ||
|
||
.. code-block:: none | ||
|
||
$ dnf install mongo-c-driver | ||
$ dnf install mongo-c-driver-devel | ||
|
||
The ``mongo-c-driver-devel`` package includes headers required to build applications using libmongoc. To check which version is available, see https://packages.fedoraproject.org/pkgs/mongo-c-driver/mongo-c-driver-devel. To only install the libraries without headers, install the ``mongo-c-driver`` package. | ||
|
||
On recent Red Hat systems, such as CentOS and RHEL 7, a mongo-c-driver package is available in the `EPEL <https://fedoraproject.org/wiki/EPEL>`_ repository. To check which version is available, see `https://packages.fedoraproject.org/pkgs/mongo-c-driver/mongo-c-driver/ <https://packages.fedoraproject.org/pkgs/mongo-c-driver/mongo-c-driver/>`_. The package can be installed with: | ||
On recent Red Hat systems, such as CentOS and RHEL 7, a mongo-c-driver-devel package is available in the `EPEL <https://fedoraproject.org/wiki/EPEL>`_ repository. The package can be installed with: | ||
|
||
.. code-block:: none | ||
|
||
$ yum install mongo-c-driver | ||
$ yum install mongo-c-driver-devel | ||
|
||
On macOS systems with Homebrew, the mongo-c-driver package can be installed with: | ||
|
||
|
@@ -62,22 +66,25 @@ The libbson package is available on recent versions of Debian and Ubuntu. If you | |
|
||
.. code-block:: none | ||
|
||
$ apt-get install libbson-1.0-0 | ||
$ apt-get install libbson-dev | ||
|
||
The ``libbson-dev`` package includes headers required to build applications using libbson. To check which version is available, run ``apt-cache policy libbson-dev``. To only install the libraries without headers, install the ``libbson-1.0-0`` package. | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same as with the comment above about |
||
On Fedora, a libbson package is available in the default repositories and can be installed with: | ||
|
||
.. code-block:: none | ||
|
||
$ dnf install libbson | ||
$ dnf install libbson-devel | ||
|
||
The ``libbson-devel`` package includes headers required to build applications using libbson. To check | ||
which version is available, see https://packages.fedoraproject.org/pkgs/mongo-c-driver/libbson-devel. To only install the libraries without headers, install the ``libbson`` package. | ||
|
||
On recent Red Hat systems, such as CentOS and RHEL 7, a libbson package | ||
is available in the `EPEL <https://fedoraproject.org/wiki/EPEL>`_ repository. To check | ||
which version is available, see `https://packages.fedoraproject.org/pkgs/mongo-c-driver/libbson/ <https://packages.fedoraproject.org/pkgs/mongo-c-driver/libbson/>`_. | ||
On recent Red Hat systems, such as CentOS and RHEL 7, a libbson package is available in the `EPEL <https://fedoraproject.org/wiki/EPEL>`_ repository. | ||
The package can be installed with: | ||
|
||
.. code-block:: none | ||
|
||
$ yum install libbson | ||
$ yum install libbson-devel | ||
|
||
Build environment | ||
----------------- | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am OK with directing Fedora/RHEL users to the websites, since there is not as much a proliferation of derivatives as with Debian and Ubuntu.