From a23866610fbcff3cff020ffc75bac09fb49eaf0d Mon Sep 17 00:00:00 2001 From: Alexey Kopytov Date: Fri, 10 Nov 2017 21:24:15 +0300 Subject: [PATCH] Add references to openssl and proper LDFLAGS to macOS build instructions. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index b4aea70..d36dc81 100644 --- a/README.md +++ b/README.md @@ -160,7 +160,7 @@ build and use an older 0.5 release on Windows. Assuming you have Xcode (or Xcode Commane Line Tools) and Homebrew installed: ``` shell - brew install automake libtool pkg-config + brew install automake libtool openssl pkg-config # For MySQL support brew install mysql # For PostgreSQL support @@ -171,8 +171,8 @@ Assuming you have Xcode (or Xcode Commane Line Tools) and Homebrew installed: ``` shell ./autogen.sh # Add --with-pgsql to build with PostgreSQL support - ./configure - make + LDFLAGS=-L/usr/local/opt/openssl/lib ./configure + make -j make install ```