File tree Expand file tree Collapse file tree 3 files changed +3
-39
lines changed Expand file tree Collapse file tree 3 files changed +3
-39
lines changed Original file line number Diff line number Diff line change @@ -22,16 +22,12 @@ The C/C++ driver depends on the following software:
22
22
* [ CMake] v2.6.4+
23
23
* [ libuv] 1.x
24
24
* [ OpenSSL] v1.0.x or v1.1.x \*
25
- * [ zlib] v1.x \*\*
26
25
* Kerberos v5 ([ Heimdal] or [ MIT] ) \*\*\*
27
26
28
27
__ \* __ Use the ` CASS_USE_OPENSSL ` CMake option to enable/disable OpenSSL
29
28
support. Disabling this option will disable SSL/TLS protocol support
30
29
within the driver; defaults to ` On ` .
31
30
32
- __ \*\* __ Use the ` CASS_USE_ZLIB ` CMake option to enable/disable zlib support.
33
- Defaults to ` On ` .
34
-
35
31
__ \*\*\* __ Use the ` CASS_USE_KERBEROS ` CMake option to enable/disable Kerberos
36
32
support. Enabling this option will enable Kerberos authentication
37
33
protocol within the driver (currently unusupported by Scylla);
@@ -180,39 +176,6 @@ popd
180
176
popd
181
177
```
182
178
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
-
216
179
### Building and installing the C/C++ driver
217
180
218
181
``` bash
@@ -268,4 +231,3 @@ cmake -DCASS_BUILD_UNIT_TESTS=On ..
268
231
[ Heimdal ] : https://www.h5l.org
269
232
[ MIT ] : https://web.mit.edu/kerberos
270
233
[ OpenSSL ] : https://www.openssl.org
271
- [ zlib ] : https://www.zlib.net
Original file line number Diff line number Diff line change 4
4
5
5
### Dependencies
6
6
7
+ #### Dependencies
8
+
7
9
Packages for the dependencies: libuv (1.x), OpenSSL can be installed
8
10
from distribution's repositories and/or EPEL. Please note that ` apt-get ` can
9
11
handle the dependencies by itself, therefore this step can likely be omitted
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ To install the dependencies we recommend using EPEL:
10
10
11
11
``` bash
12
12
sudo yum install -y epel-release
13
- sudo yum -y install libuv openssl zlib
13
+ sudo yum -y install libuv openssl
14
14
```
15
15
16
16
Install the runtime library. Replace ` <VERSION> ` with the version+platform string:
You can’t perform that action at this time.
0 commit comments