File: Makefile.PL-no-ssl-in-LIBS.patch

package info (click to toggle)
libcrypt-openssl-random-perl 0.11-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 164 kB
  • ctags: 1
  • sloc: perl: 14; makefile: 2
file content (18 lines) | stat: -rw-r--r-- 416 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Description: do not include -lssl in LIBS
Origin: vendor
Forwarded: not-needed
Author: Damyan Ivanov <dmn@debian.org>
Reviewed-by: gregor herrmann <gregoa@debian.org>
Last-Update: 2015-11-22

--- a/Makefile.PL
+++ b/Makefile.PL
@@ -10,7 +10,7 @@
 if ($args =~ /LIBDIR[ =](\S+)/) {
   $libdir = $1;
 }
-my $libs = "-lssl -lcrypto";
+my $libs = "-lcrypto";
 
 WriteMakefile(
   'NAME'	    => 'Crypt::OpenSSL::Random',