From: Gunter Knauf Date: Mon, 26 Mar 2007 17:18:36 +0000 (+0000) Subject: catch up new lib extension when build with gcc/nlmconv. X-Git-Tag: curl-7_16_2~122 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=424063235bfd55ad6d6f42fd50ba66f247eea064;p=thirdparty%2Fcurl.git catch up new lib extension when build with gcc/nlmconv. --- diff --git a/tests/testcurl.pl b/tests/testcurl.pl index de6fba4083..d2379f69c8 100755 --- a/tests/testcurl.pl +++ b/tests/testcurl.pl @@ -142,7 +142,12 @@ if ($^O eq 'MSWin32' || $targetos) { elsif ($targetos =~ /netware/) { $configurebuild = 0; $binext = '.nlm'; - $libext = '.lib'; + if ($^O eq 'MSWin32') { + $libext = '.lib'; + } + else { + $libext = '.a'; + } } }