We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ab1b9f commit 9794729Copy full SHA for 9794729
Makefile.PL
@@ -63,7 +63,11 @@ if (-d "/usr/include/openssl") {
63
}
64
65
cc_lib_links('crypto');
66
-cc_optimize_flags('-O3 -Wall -Werror -DOPENSSL_API_COMPAT=0x10100000L');
+if ($Config::Config{myuname} =~ /sunos|solaris/i) {
67
+ cc_optimize_flags('-O2 -Wall -Werror -DOPENSSL_API_COMPAT=0x10100000L');
68
+} else {
69
+ cc_optimize_flags('-O3 -Wall -Werror -DOPENSSL_API_COMPAT=0x10100000L');
70
+}
71
72
requires 'Crypt::OpenSSL::X509' => '1.807';
73
0 commit comments