winemaker: Add odbccp32 to default link list.

oldstable
André Hentschel 2009-02-05 17:36:39 +01:00 committed by Alexandre Julliard
parent 7fe67b159d
commit 8052c1a230
1 changed files with 2 additions and 3 deletions

View File

@ -807,9 +807,8 @@ sub source_scan_directory($$$$)
}
my $basename=$target_name;
$basename=~ s/\.(dll|exe)$//i;
# This is the default link list of Visual Studio, except odbccp32
# which we don't have in Wine.
my @std_imports=qw(odbc32 ole32 oleaut32 winspool);
# This is the default link list of Visual Studio
my @std_imports=qw(odbc32 ole32 oleaut32 winspool odbccp32);
my @std_libraries=qw(uuid);
if ((@$target[$T_FLAGS] & $TF_NODLLS) == 0) {
@$target[$T_DLLS]=\@std_imports;