Skip to content

Commit 38baef8

Browse files
committed
docs: remove mentions of zlib dependency
zlib is not a dependency of the CPP Rust driver, as the underlying Rust Driver has its own static dependencies.
1 parent 2b6673c commit 38baef8

File tree

3 files changed

+3
-39
lines changed

3 files changed

+3
-39
lines changed

docs/source/topics/building.md

Lines changed: 0 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,12 @@ The C/C++ driver depends on the following software:
2222
* [CMake] v2.6.4+
2323
* [libuv] 1.x
2424
* [OpenSSL] v1.0.x or v1.1.x \*
25-
* [zlib] v1.x \*\*
2625
* Kerberos v5 ([Heimdal] or [MIT]) \*\*\*
2726

2827
__\*__ Use the `CASS_USE_OPENSSL` CMake option to enable/disable OpenSSL
2928
support. Disabling this option will disable SSL/TLS protocol support
3029
within the driver; defaults to `On`.
3130

32-
__\*\*__ Use the `CASS_USE_ZLIB` CMake option to enable/disable zlib support.
33-
Defaults to `On`.
34-
3531
__\*\*\*__ Use the `CASS_USE_KERBEROS` CMake option to enable/disable Kerberos
3632
support. Enabling this option will enable Kerberos authentication
3733
protocol within the driver (currently unusupported by Scylla);
@@ -180,39 +176,6 @@ popd
180176
popd
181177
```
182178

183-
#### zlib
184-
185-
##### CentOS (Yum)
186-
187-
```bash
188-
yum install zlib-devel
189-
```
190-
191-
##### Ubuntu (APT)
192-
193-
```bash
194-
apt-get install zlib1g-dev
195-
```
196-
197-
##### Mac OS (Brew)
198-
199-
```bash
200-
brew install zlib
201-
```
202-
203-
##### Manually build and install
204-
205-
```bash
206-
pushd /tmp
207-
wget --no-check-certificate https://www.zlib.net/zlib-1.2.11.tar.gz
208-
tar xzf zlib-1.2.11.tar.gz
209-
pushd zlib-1.2.11
210-
./configure
211-
make install
212-
popd
213-
popd
214-
```
215-
216179
### Building and installing the C/C++ driver
217180

218181
```bash
@@ -268,4 +231,3 @@ cmake -DCASS_BUILD_UNIT_TESTS=On ..
268231
[Heimdal]: https://www.h5l.org
269232
[MIT]: https://web.mit.edu/kerberos
270233
[OpenSSL]: https://www.openssl.org
271-
[zlib]: https://www.zlib.net

docs/source/topics/getting-started.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44

55
### Dependencies
66

7+
#### Dependencies
8+
79
Packages for the dependencies: libuv (1.x), OpenSSL can be installed
810
from distribution's repositories and/or EPEL. Please note that `apt-get` can
911
handle the dependencies by itself, therefore this step can likely be omitted

docs/source/topics/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ To install the dependencies we recommend using EPEL:
1010

1111
```bash
1212
sudo yum install -y epel-release
13-
sudo yum -y install libuv openssl zlib
13+
sudo yum -y install libuv openssl
1414
```
1515

1616
Install the runtime library. Replace `<VERSION>` with the version+platform string:

0 commit comments

Comments
 (0)