This repository was archived by the owner on Jun 10, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -14,15 +14,18 @@ Platform-specific notes
14
14
15
15
- On OS X, the version of OpenSSL included with the operating
16
16
system is outdated (0.9.8) and deprecated, and it is recommended
17
- that spiped be built with an updated version of OpenSSL. On OS X
17
+ that scrypt be built with an updated version of OpenSSL. On OS X
18
18
10.11 "El Capitan" and higher, OpenSSL was removed entirely. After
19
19
installing a newer version of OpenSSL, use
20
20
CPPFLAGS="-I /path/to/openssl/headers"
21
- LDADD ="-L /path/to/openssl/lib"
22
- to build spiped .
21
+ LDFLAGS ="-L /path/to/openssl/lib"
22
+ to build scrypt .
23
23
24
24
In particular, if you installed OpenSSL using homebrew, you may
25
- add these lines to your $HOME/.profile file:
25
+ pass the relevant directories directly to ./configure:
26
+ ./configure CPPFLAGS="-I/usr/local/opt/openssl/include" LDFLAGS="-L/usr/local/opt/openssl/lib"
27
+
28
+ Alternatively, you may with to add these lines to your $HOME/.profile file:
26
29
export CPPFLAGS="-I/usr/local/opt/openssl/include $CPPFLAGS"
27
30
export LDFLAGS="-L/usr/local/opt/openssl/lib $LDFLAGS"
28
31
and then close & re-open your terminal window.
You can’t perform that action at this time.
0 commit comments