1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-21 23:58:49 -05:00

added Borland support.

This commit is contained in:
Gunter Knauf 2004-07-15 02:34:58 +00:00
parent 0b0d20021c
commit ab64bf6fb1

View File

@ -89,10 +89,10 @@ if ($^O eq 'MSWin32' || $targetos ne '') {
# If no target defined on Win32 lets assume vc
$targetos = 'vc';
}
if ($targetos =~ /vc/ || $targetos =~ /mingw32/) {
if ($targetos =~ /vc/ || $targetos =~ /mingw32/ || $targetos =~ /borland/) {
$confsuffix = '-win32';
$binext = '.exe';
$libext = '.lib' if ($targetos =~ /vc/);
$libext = '.lib' if ($targetos =~ /vc/ || $targetos =~ /borland/);
} elsif ($targetos =~ /netware/) {
$binext = '.nlm';
$libext = '.lib';