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
14 # Look for ISC/SCO with its unique uname program
16 - return undef unless IPC::Cmd::can_run('uname');
18 +# return undef unless IPC::Cmd::can_run('uname');
20 open UNAME, "uname -X 2>/dev/null|" or return '';
23 $CCVENDOR = ''; # Dunno, don't care (unless found later)
25 # Find a compiler if we don't already have one
27 - foreach (@c_compilers) {
28 - next unless IPC::Cmd::can_run("$CROSS_COMPILE$_");
34 +# foreach (@c_compilers) {
35 +# next unless IPC::Cmd::can_run("$CROSS_COMPILE$_");
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
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]+)/;
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.