summaryrefslogtreecommitdiff
path: root/wscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-09-25 14:20:43 +0100
committerCarl Hetherington <cth@carlh.net>2015-09-25 14:20:43 +0100
commitfd2f5c71f7789230e3a1645997be72c552414288 (patch)
treeaafeead97ed24afd03530c8674c5b5b1cec64733 /wscript
parentc982ff2fe7a956a79c4e935d78ed6b2c37752d75 (diff)
More build fixes.
Diffstat (limited to 'wscript')
-rw-r--r--wscript3
1 files changed, 2 insertions, 1 deletions
diff --git a/wscript b/wscript
index 22ec79c26..35097734a 100644
--- a/wscript
+++ b/wscript
@@ -160,7 +160,8 @@ def configure(conf):
conf.check_cfg(package='libcurl', args='--cflags --libs', uselib_store='CURL', mandatory=True)
# libicu
- conf.check_cfg(package='icu-io', args='--cflags --libs', uselib_store='ICU', mandatory=True)
+ if conf.check_cfg(package='icu-io', args='--cflags --libs', uselib_store='ICU', mandatory=False) andconf.check_cfg(package='icu-io', args='--cflags --libs', uselib_store='ICU', mandatory=False) is None:
+ Logs.pprint('RED', 'libicu not found')
# libsndfile
conf.check_cfg(package='sndfile', args='--cflags --libs', uselib_store='SNDFILE', mandatory=True)