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

package info (click to toggle)
libcrypt-openssl-random-perl 0.15-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 160 kB
  • sloc: perl: 19; makefile: 3
file content (18 lines) | stat: -rw-r--r-- 416 bytes parent folder | download | duplicates (3)
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: 2018-07-31

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