Skip to content

Instantly share code, notes, and snippets.

View cseeger's full-sized avatar

Chad Seeger cseeger

  • San Francisco, CA
View GitHub Profile
@cseeger
cseeger / gist:91b14f1007784f0d7879f0776336b0d9
Created October 28, 2023 18:35
Postgres with OpenSSL 1.1
Homebrew install of OpenSSL 1.1 gave `error: library 'crypto' is required for OpenSSL`
```
export LDFLAGS="-L/usr/local/opt/openssl@1.1/lib"
export CPPFLAGS="-I/usr/local/opt/openssl@1.1/include"
```
Then install with:
```