summaryrefslogtreecommitdiff
path: root/security/p5-openxpki/files/patch-Makefile.PL
blob: fdbf432f44658c3965407b3d7a405651966bf84a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
--- Makefile.PL.orig	2014-12-02 20:05:23 UTC
+++ Makefile.PL
@@ -249,49 +249,6 @@ else {
   print STDERR "Logger is not installed. Continue anyway.\n";
 }
 
-# check if we should add -shared
-# not all platforms support this feature
-my %flags = ();
-
-open $fh, '>test.c' or die "Cannot open test.c. Stopped";
-print $fh "int main() {}\n";
-close $fh;
-use Config;
-my $cc = $Config{'cc'};
-
-my $cc_supports_shared = 1;
-if (open $fh, "$cc -shared -o test test.c 2>&1 |") {
-    while (my $line = <$fh>) {
-        if ($line =~ m{ unrecognized .* option .* -shared }xms) {
-	    $cc_supports_shared = 0;
-        }
-    }
-    close $fh;
-    if ($CHILD_ERROR) {
-        $cc_supports_shared = 0;
-    }
-
-    if (! $cc_supports_shared)
-    {
-        print STDERR "C compiler does not support -shared.\n";
-    }
-    else {
-        if ($^O ne 'darwin') {
-            print STDERR "C compiler supports -share. Adding it to LDDLFLAGS.\n";
-            $flags{'LDDLFLAGS'} = '-shared';
-        }
-        else {
-            print STDERR "C compiler claims to support -share. But we are on Mac OS X, experience shows that it still does not work with -share, so we won't add it to LDDLFLAGS ...\n";
-        }
-    }
-}
-else {
-    print STDERR "Could not run C compiler. Continue anyway.\n";
-}
-
-unlink('test.c');
-unlink('test');
-
 # See lib/ExtUtils/MakeMaker.pm for details of how to influence
 # the contents of the Makefile that is written.
 WriteMakefile(
@@ -299,7 +256,6 @@ WriteMakefile(
     'VERSION'   => $openxpki_version,
     'LIBS'      => ["-L$openssl_lib_dir -lcrypto"],
     'INC'       => "-I. -I$openssl_inc_dir",
-    'CCFLAGS'   => '-O2 -g '.$Config{ccflags},
     'PREREQ_PM' => {
 #    'Class::Accessor::Fast'  => '0.31', # Constituent of module Class::Accessor
 #					 # which is a prerequisite of Class::Accessor::Chained, see below
@@ -397,5 +353,4 @@ WriteMakefile(
                               't/cfg.binary.openssl']},
     'XSPROTOARG' => '-noprototypes',
     'EXE_FILES' => [ 'bin/openxpkictl','bin/openxpkicmd', 'bin/openxpkiadm', 'bin/openxpkicli'],    
-    %flags,
 );