Created
October 28, 2023 18:35
-
-
Save cseeger/91b14f1007784f0d7879f0776336b0d9 to your computer and use it in GitHub Desktop.
Postgres with OpenSSL 1.1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Homebrew install of OpenSSL 1.1 gave `error: library 'crypto' is required for OpenSSL` | |
``` | |
export LDFLAGS="-L/usr/local/opt/[email protected]/lib" | |
export CPPFLAGS="-I/usr/local/opt/[email protected]/include" | |
``` | |
Then install with: | |
``` | |
POSTGRES_EXTRA_CONFIGURE_OPTIONS="--with-uuid=e2fs --with-openssl --with-libraries=/opt/homebrew/Cellar/[email protected]/1.1.1s/lib --with-includes=/opt/homebrew/Cellar/[email protected]/1.1.1s/include" asdf install postgres 14.8 | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment