aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGavin Andresen <[email protected]>2013-04-22 09:14:06 -0700
committerGavin Andresen <[email protected]>2013-04-22 09:14:06 -0700
commit2272f8bb47e9383f9c3d3236363e5845f319d7ad (patch)
tree7924f2d872435df29a40525c65f7dfaefa9c1262
parentMerge pull request #2540 from sipa/nodosnocan (diff)
parentUpdate osx build instructions to ensure users link to the correct version of ... (diff)
downloaddiscoin-2272f8bb47e9383f9c3d3236363e5845f319d7ad.tar.xz
discoin-2272f8bb47e9383f9c3d3236363e5845f319d7ad.zip
Merge pull request #2546 from fanquake/osx-instructions
Update osx build instructions to ensure users are building with the correct version of OpenSSL when using HomeBrew
-rw-r--r--doc/build-osx.md12
1 files changed, 12 insertions, 0 deletions
diff --git a/doc/build-osx.md b/doc/build-osx.md
index 1ed593d5e..d9aa779f8 100644
--- a/doc/build-osx.md
+++ b/doc/build-osx.md
@@ -95,6 +95,18 @@ Instructions: HomeBrew
brew install boost miniupnpc openssl berkeley-db4
+Note: After you have installed the dependencies, you should check that the Brew installed version of OpenSSL is the one available for compilation. You can check this by typing
+
+ openssl version
+
+into Terminal. You should see OpenSSL 1.0.1e 11 Feb 2013.
+
+If not, you can ensure that the Brew OpenSSL is correctly linked by running
+
+ brew link openssl --force
+
+Rerunning "openssl version" should now return the correct version.
+
### Building `bitcoind`
1. Clone the github tree to get the source code and go into the directory.