We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug
I'm getting an error about the error: library 'crypto' is required for OpenSSL, even if following the instructions on the README.md file.
error: library 'crypto' is required for OpenSSL
Steps to reproduce
brew install gcc readline zlib curl ossp-uuid icu4c pkg-config
export PKG_CONFIG_PATH="/opt/homebrew/bin/pkg-config:$(brew --prefix icu4c)/lib/pkgconfig:$(brew --prefix curl)/lib/pkgconfig:$(brew --prefix zlib)/lib/pkgconfig"
asdf plugin-add postgres
asdf install postgres 17.2
checking for CRYPTO_new_ex_data in -lcrypto... no configure: error: library 'crypto' is required for OpenSSL
Expected behavior
It is expected for the installation of the plugin to pass.
The text was updated successfully, but these errors were encountered:
Take a look at this thread and see if any of it works. OpenSSL is such a tire fire I can't keep up with it: #52
Sorry, something went wrong.
Thank you! That worked, what do you think about adding the command at the end in the documentation?
brew install gcc icu4c readline zlib curl ossp-uuid pkg-config asdf plugin-add postgres export OPENSSL_PATH=$(brew --prefix openssl) export CMAKE_PREFIX_PATH=$(brew --prefix icu4c) export PATH="$OPENSSL_PATH/bin:$CMAKE_PREFIX_PATH/bin:$PATH" export LDFLAGS="-L$OPENSSL_PATH/lib $LDFLAGS" export CPPFLAGS="-I$OPENSSL_PATH/include $CPPFLAGS" export PKG_CONFIG_PATH="$CMAKE_PREFIX_PATH/lib/pkgconfig" asdf install postgres 17.2
This worked for me.
No branches or pull requests
Describe the bug
I'm getting an error about the
error: library 'crypto' is required for OpenSSL
, even if following the instructions on the README.md file.Steps to reproduce
brew install gcc readline zlib curl ossp-uuid icu4c pkg-config
export PKG_CONFIG_PATH="/opt/homebrew/bin/pkg-config:$(brew --prefix icu4c)/lib/pkgconfig:$(brew --prefix curl)/lib/pkgconfig:$(brew --prefix zlib)/lib/pkgconfig"
asdf plugin-add postgres
asdf install postgres 17.2
you get the following error when compilingExpected behavior
It is expected for the installation of the plugin to pass.
The text was updated successfully, but these errors were encountered: