Add references to openssl and proper LDFLAGS to macOS build instructions.

This commit is contained in:
Alexey Kopytov
2017-11-10 21:24:15 +03:00
parent 53bcc667ca
commit a23866610f

View File

@ -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
```