diff options
| author | Carl Hetherington <cth@carlh.net> | 2017-07-25 14:53:08 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2017-07-25 14:53:08 +0100 |
| commit | b472564a54756a990ecaa341e5b5149d5b9f88d8 (patch) | |
| tree | f4e781c377ba4cba49f0e570506e1b11d43a6b91 /platform | |
| parent | bd7c31d625689ddb4a38b80f39b09728b149b861 (diff) | |
More 32-bit windows fixes.
Diffstat (limited to 'platform')
| -rw-r--r-- | platform/windows/wscript | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/platform/windows/wscript b/platform/windows/wscript index de249ca88..f47d3b54f 100644 --- a/platform/windows/wscript +++ b/platform/windows/wscript @@ -153,7 +153,14 @@ File "%static_deps%/bin/libidn2-0.dll" File "%static_deps%/bin/libunistring-2.dll" File "%static_deps%/bin/libssh2-1.dll" File "%static_deps%/bin/libgcrypt-20.dll" -File "%static_deps%/bin/libgpg-error6-0.dll" +""", file=f) + + if bits == 32: + print('File "%static_deps%/bin/libgpg-error-0.dll"', file=f) + else: + print('File "%static_deps%/bin/libgpg-error6-0.dll"', file=f) + + print(""" File "%static_deps%/bin/libpangoft2-1.0-0.dll" File "%static_deps%/bin/libx264-148.dll" |
