From e9a07d14e90e6defcad45f21cbcc397c5cca53e7 Mon Sep 17 00:00:00 2001 From: Nedko Arnaudov Date: Sat, 3 Sep 2011 03:34:48 +0300 Subject: [PATCH] wscript: check for alsa headers they are needed by alsapid/lib.c --- wscript | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/wscript b/wscript index 811448f3..2630856f 100644 --- a/wscript +++ b/wscript @@ -107,6 +107,12 @@ def configure(conf): errmsg = "not installed, see http://jackaudio.org/", args = '--cflags --libs') + conf.check_cfg( + package = 'alsa', + mandatory = True, + errmsg = "not installed, see http://www.alsa-project.org/", + args = '--cflags') + conf.check_cfg( package = 'dbus-1', atleast_version = '1.0.0',