update credits
[LibreOffice.git] / external / openssl / openssl-no-ipc-cmd.patch.0
blob8c6b2c58d63a6d664473e954b0ecc8831a34b50e
1 --- util/perl/OpenSSL/config.pm 2022-09-08 11:45:57.408532119 +0100
2 +++ util/perl/OpenSSL/config.pm 2022-09-08 11:47:46.877590711 +0100
3 @@ -16,7 +16,7 @@
4  use Getopt::Std;
5  use File::Basename;
6  use File::Spec;
7 -use IPC::Cmd;
8 +# use IPC::Cmd;
9  use POSIX;
10  use Config;
11  use Carp;
12 @@ -205,7 +205,8 @@
14  # Look for ISC/SCO with its unique uname program
15  sub is_sco_uname {
16 -    return undef unless IPC::Cmd::can_run('uname');
17 +    return undef;
18 +#    return undef unless IPC::Cmd::can_run('uname');
20      open UNAME, "uname -X 2>/dev/null|" or return '';
21      my $line = "";
22 @@ -303,13 +304,13 @@
23      $CCVENDOR = '';             # Dunno, don't care (unless found later)
25      # Find a compiler if we don't already have one
26 -    if ( ! $cc ) {
27 -        foreach (@c_compilers) {
28 -            next unless IPC::Cmd::can_run("$CROSS_COMPILE$_");
29 -            $CC = $_;
30 -            last;
31 -        }
32 -    }
33 +#    if ( ! $cc ) {
34 +#        foreach (@c_compilers) {
35 +#            next unless IPC::Cmd::can_run("$CROSS_COMPILE$_");
36 +#            $CC = $_;
37 +#            last;
38 +#        }
39 +#    }
41      if ( $CC ) {
42          # Find the compiler vendor and version number for certain compilers
43 --- util/perl/OpenSSL/config.pm.orig    2022-11-08 12:54:59.751298823 +0100
44 +++ util/perl/OpenSSL/config.pm 2022-11-08 12:55:16.436287053 +0100
45 @@ -52,13 +52,13 @@
46  my @cc_version =
47      (
48       clang => sub {
49 -         return undef unless IPC::Cmd::can_run("$CROSS_COMPILE$CC");
50 +         return undef; # unless IPC::Cmd::can_run("$CROSS_COMPILE$CC");
51           my $v = `$CROSS_COMPILE$CC -v 2>&1`;
52           $v =~ m/(?:(?:clang|LLVM) version|.*based on LLVM)\s+([0-9]+\.[0-9]+)/;
53           return $1;
54       },
55       gnu => sub {
56 -         return undef unless IPC::Cmd::can_run("$CROSS_COMPILE$CC");
57 +         return undef; # unless IPC::Cmd::can_run("$CROSS_COMPILE$CC");
58           my $nul = File::Spec->devnull();
59           my $v = `$CROSS_COMPILE$CC -dumpversion 2> $nul`;
60           # Strip off whatever prefix egcs prepends the number with.