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

package info (click to toggle)
libcrypt-openssl-rsa-perl 0.35-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 244 kB
  • sloc: perl: 49; makefile: 3
file content (18 lines) | stat: -rw-r--r-- 483 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: 2025-05-07

--- a/Makefile.PL
+++ b/Makefile.PL
@@ -11,7 +11,7 @@
 # See lib/ExtUtils/MakeMaker.pm for details of how to influence
 # the contents of the Makefile that is written.
 
-my $libs = ' -lssl -lcrypto';
+my $libs = ' -lcrypto';
 if ( $Config{osname} eq 'aix' ) {
   $libs = $libs . ' -lz';
 }