GitHub user kou added a comment to the discussion: [C++] OpenSSL 1.0.2 and
above supported for C++, but in R OpenSSL 1.0 and 1.1 is desupported
> My bad, `/usr/lib64/libssl3.so` is a part of `nss` package, and there is no
> `/usr/lib64/libcrypto.so.3`.
Hmm. You installed `openssl3-devel`, right? I think that you have
`libcrypto.so.3`:
```console
$ rpm -qf /usr/lib64/libcrypto.so.3
openssl3-libs-3.5.5-1.1.el8.x86_64
```
> For enabled SSL, but without specifying OpenSSL 3.x paths:
Could you try the following?
```bash
time cmake .. -DARROW_PARQUET=ON \
-DARROW_WITH_BROTLI=ON -DARROW_WITH_BZ2=ON \
-DARROW_WITH_LZ4=ON -DARROW_WITH_SNAPPY=ON \
-DARROW_WITH_ZLIB=ON -DARROW_WITH_ZSTD=ON \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=$arrow_inst \
-DARROW_BUILD_UTILITIES=ON -DARROW_FILESYSTEM=ON \
-DPARQUET_BUILD_EXECUTABLES=ON -DARROW_DATASET=ON \
-DPARQUET_REQUIRE_ENCRYPTION=ON \
-DOPENSSL_CRYPTO_LIBRARY=/usr/lib64/libcrypto.so.3 \
-DOPENSSL_SSL_LIBRARY=/usr/lib64/libssl.so.3 \
-DOPENSSL_INCLUDE_DIR=/usr/include/openssl3
```
GitHub link:
https://github.com/apache/arrow/discussions/50032#discussioncomment-17218287
----
This is an automatically sent email for [email protected].
To unsubscribe, please send an email to: [email protected]