-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
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
Installing on Mac with HomeBrew #2
Comments
we made a remove on cc_lib_links('crypto'); and it works for tests. @genio |
That worked here. diff --git a/Makefile.PL b/Makefile.PL
index c2d26d3..aa85a4e 100755
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -51,9 +51,12 @@ if (-d "/usr/include/openssl") {
} elsif (-d "/usr/local/ssl/include") {
cc_inc_paths('/usr/local/ssl/include');
cc_lib_paths('/usr/local/ssl/lib');
+} elsif (-d "/usr/local/opt/openssl/include") {
+ cc_inc_paths('/usr/local/opt/openssl/include');
+ # cc_lib_paths('/usr/local/opt/openssl/lib');
}
-cc_lib_links('crypto');
+# cc_lib_links('crypto');
cc_optimize_flags('-O3 -Wall -Werror');
requires 'Crypt::OpenSSL::X509'; |
Same issue here, any chance of a release that fixes this? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Crypt::OpenSSL::VerifyX509 refuses to install on Macs where OpenSSL is installed via homebrew.
Is generally the path taken in this circumstance, however, with Crypt::OpenSSL::VerifyX509, one must:
Could you please alter the Makefile.PL to use the above ENV variables if they're set?
The text was updated successfully, but these errors were encountered: