1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00

quick hack to make it working again on Win32 - however we should consider to set some defaults depending on the compiler architecture we guess we are since it doesnt work well if we prefer building the msvc makefile with gmake instead of nmake because we found gmake first in path....

This commit is contained in:
Gunter Knauf 2005-08-30 18:37:08 +00:00
parent 32330300a9
commit 75dbb3189a

View File

@ -412,20 +412,23 @@ if ($configurebuild) {
} }
sub findinpath { sub findinpath {
my $c; my $c;
my $e; my $e;
my $p=$ENV{'PATH'}; my $x='';
my @pa = split(":", $p); $x='.exe' if ($^O eq 'MSWin32');
for $c (@_) { my $s=':';
for $e (@pa) { $s=';' if ($^O eq 'MSWin32');
if( -x "$e/$c") { my $p=$ENV{'PATH'};
return $c; my @pa = split($s, $p);
} for $c (@_) {
} for $e (@pa) {
if( -x "$e/$c$x") {
return $c;
}
} }
}
} }
my $make = findinpath("gmake", "make", "nmake"); my $make = findinpath("gmake", "make", "nmake");
if(!$make) { if(!$make) {
mydie "Couldn't find make in the PATH"; mydie "Couldn't find make in the PATH";