Quansight / pearu-sandbox

Pearu's sandbox
BSD 3-Clause "New" or "Revised" License
5 stars 1 forks source link

Adjust OpenSSL path when building omnscidb on MacOSX #11

Open pearu opened 5 years ago

pearu commented 5 years ago

In cmake output:

Found OpenSSL: /usr/local/opt/openssl/lib/libcrypto.dylib (found version "1.0.2r")

Otherwise, omniscidb builds fine.

To adjust OPENSSL_ROOT for correct $PREFIX, run (when uname is Darwin)

sed -i \"\" -e 's!/usr/local/opt/openssl!\'$PREFIX'!g' CMakeLists.txt

(otherwise, use sed -i 's!...)