aboutsummaryrefslogtreecommitdiff
path: root/tests/testcurl.pl
diff options
context:
space:
mode:
authorGunter Knauf <gk@gknw.de>2007-03-26 17:18:36 +0000
committerGunter Knauf <gk@gknw.de>2007-03-26 17:18:36 +0000
commit424063235bfd55ad6d6f42fd50ba66f247eea064 (patch)
tree37e5f59fa241635afda0cc317a4286ea06248cb1 /tests/testcurl.pl
parent8272abef28e7202de84604cdefaded351883e333 (diff)
catch up new lib extension when build with gcc/nlmconv.
Diffstat (limited to 'tests/testcurl.pl')
-rwxr-xr-xtests/testcurl.pl7
1 files changed, 6 insertions, 1 deletions
diff --git a/tests/testcurl.pl b/tests/testcurl.pl
index de6fba408..d2379f69c 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';
+ }
}
}