Subject: | Bad instructions in Build.PL error message (--openssl-libs) |
The error text emitted when header and library versions do not match contains a typo. The example uses '--openssl-libs' whereas the necessary option is '--openssl-ldflags'.
A patch to fix this is attached, against 0.24_01.
Many thanks
Michael
PAUSE: MJG
https://github.com/mjg17
Subject: | Build.PL.patch |
--- Crypt-OpenSSL-CA-0.24/Build.PL.orig 2014-05-28 17:16:51.000000000 +0100
+++ Crypt-OpenSSL-CA-0.24/Build.PL 2015-11-20 15:28:43.000000000 +0000
@@ -451,7 +451,7 @@
--openssl-cflags and --openssl-ldflags, for instance:
perl Build.PL --openssl-cflags=-I/usr/local/lib/openssl/include \\
- --openssl-libs=-L/usr/local/lib/openssl/lib
+ --openssl-ldflags=-L/usr/local/lib/openssl/lib
Hint: don't sprinkle spaces where not necessary, as they are known to
confuse the GNU linker!