From 47874addb5b47568059fec91ffc521bb0b214cb7 Mon Sep 17 00:00:00 2001 From: Jonathan Moore Liles Date: Sat, 9 Mar 2013 20:41:55 -0800 Subject: [PATCH] Mixer/wscript: Check for presence of ladspa.h. --- mixer/wscript | 1 + 1 file changed, 1 insertion(+) diff --git a/mixer/wscript b/mixer/wscript index 6ef4bcb..510ef4d 100644 --- a/mixer/wscript +++ b/mixer/wscript @@ -25,6 +25,7 @@ def configure(conf): conf.load('compiler_cxx') conf.load('gnu_dirs') + conf.check(header_name='ladspa.h', define_name='HAVE_LADSPA_H', mandatory=True) conf.check_cfg(package='lrdf', uselib_store='LRDF',args="--cflags --libs", atleast_version='0.4.0', mandatory=True)