diff options
| author | eonil <[email protected]> | 2018-05-18 15:31:11 +0900 |
|---|---|---|
| committer | eonil <[email protected]> | 2018-05-19 03:13:07 +0900 |
| commit | e037c0fcb8c44ddd491b6b10e9374203cc0053f0 (patch) | |
| tree | 58aed46ced02eefbd8ddda11b950f2813a764576 /README.md | |
| parent | Merge pull request #919 from sfackler/cleanup (diff) | |
| download | rust-openssl-e037c0fcb8c44ddd491b6b10e9374203cc0053f0.tar.xz rust-openssl-e037c0fcb8c44ddd491b6b10e9374203cc0053f0.zip | |
Find path prefix to OpenSSL installed by Homebrew.
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -48,25 +48,25 @@ make -j$(nproc) make install ``` -### OSX +### macOS -Although OpenSSL 0.9.8 is preinstalled on OSX this library is being phased out -of OSX and this crate also does not support that version of OpenSSL. To use this -crate on OSX you'll need to install OpenSSL via some alternate means, typically +Although OpenSSL 0.9.8 is preinstalled on macOS this library is being phased out +of macOS and this crate also does not support that version of OpenSSL. To use this +crate on macOS you'll need to install OpenSSL via some alternate means, typically Homebrew: ```bash brew install openssl ``` -Occasionally an update of XCode or MacOS will cause the linker to fail after compilation, to rectify this you may want to try and run: +Occasionally an update of XCode or macOS will cause the linker to fail after compilation, to rectify this you may want to try and run: ```bash xcode-select --install ``` -If Homebrew is installed to the default location of `/usr/local`, OpenSSL will be -automatically detected. +If you're using latest version of Homebrew which supports `--prefix` command, +OpenSSL will be automatically detected. ### Windows MSVC |