79789730

Date: 2025-10-14 01:01:39
Score: 0.5
Natty:
Report link

Perhaps try specifying which openssl you want to use during configure and make, i.e. to successfully install php from source on my mac I used:

# install missing requirements
brew install re2c libiconv pkg-config

# configure (you can change PATH for a single command without needing to change your ~/.bashrc or ~/.bash_profile)
PATH=/opt/homebrew/Cellar/bison/3.8.2/bin/:/opt/homebrew/opt/libiconv/bin/:/opt/homebrew/bin/:$PATH ./configure --with-openssl

# make the executable, then check you don't have any errors in the installation
PATH=/opt/homebrew/Cellar/bison/3.8.2/bin/:/opt/homebrew/opt/libiconv/bin/:/opt/homebrew/bin/:$PATH make
make test

# if there are no errors, install the software
make install

Does this approach solve your problem?

Reasons:
  • RegEx Blacklisted phrase (1.5): solve your problem?
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • High reputation (-2):
Posted by: jared_mamrot