catch up new lib extension when build with gcc/nlmconv.

This commit is contained in:
Gunter Knauf 2007-03-26 17:18:36 +00:00
parent 8272abef28
commit 424063235b

View File

@ -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';
}
}
}