diff options
| author | Carl Hetherington <cth@carlh.net> | 2019-12-13 17:10:51 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2019-12-14 00:44:11 +0100 |
| commit | 09f642570122be890af01f253f4f9d5ccb996886 (patch) | |
| tree | 0025b284f26974e6dec3e4a2eed5adb7374b4cca /wscript | |
| parent | 049a815e8b07b1f186b15f6eb4d3a6d81fecbf25 (diff) | |
Fix win32 build with xerces.
Diffstat (limited to 'wscript')
| -rw-r--r-- | wscript | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -126,6 +126,10 @@ def configure(conf): conf.check_cfg(package='sndfile', args='--cflags --libs', uselib_store='SNDFILE', mandatory=False) conf.check_cfg(package='xerces-c', args='--cflags --libs', uselib_store='XERCES', mandatory=True) + if conf.options.target_windows: + # XXX: it feels like there should be a more elegant way to get these included + conf.env.LIB_XERCES.append('curl') + conf.env.LIB_XERCES.append('ws2_32') if conf.options.static: if conf.options.jpeg == 'oj2': |
