Module: wine
Branch: master
Commit: 8052c1a2304b9a09496b847bbd012544359dce53
URL: http://source.winehq.org/git/wine.git/?a=commit;h=8052c1a2304b9a09496b847bb…
Author: André Hentschel <nerv(a)dawncrow.de>
Date: Thu Feb 5 17:36:39 2009 +0100
winemaker: Add odbccp32 to default link list.
---
tools/winemaker | 5 ++---
1 files changed, 2 insertions(+), 3 deletions(-)
diff --git a/tools/winemaker b/tools/winemaker
index 918cd2a..8c78987 100755
--- a/tools/winemaker
+++ b/tools/winemaker
@@ -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;