summaryrefslogtreecommitdiff
path: root/libs/surfaces/push2/wscript
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2016-06-16 00:07:43 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2016-09-27 14:59:29 -0500
commit189173c1b172a116232b1fd57e6dfac7c1941ea9 (patch)
treeb34ee2a81adce74de6c21e41d816549a9be8f642 /libs/surfaces/push2/wscript
parent413fe2cf9ad16d7f40d1ad72af512ac37599ce17 (diff)
various fixes for push2 support. Now setups video display when enabled
Diffstat (limited to 'libs/surfaces/push2/wscript')
-rw-r--r--libs/surfaces/push2/wscript9
1 files changed, 4 insertions, 5 deletions
diff --git a/libs/surfaces/push2/wscript b/libs/surfaces/push2/wscript
index e572ffedd1..379f1199d7 100644
--- a/libs/surfaces/push2/wscript
+++ b/libs/surfaces/push2/wscript
@@ -6,17 +6,16 @@ import os
top = '.'
out = 'build'
+print "this is push2"
+
def options(opt):
autowaf.set_options(opt)
def configure(conf):
conf.load ('compiler_cxx')
autowaf.configure(conf)
- autowaf.check_pkg(conf, 'cairomm-1.0', uselib_store='CAIROMM', atleast_version='1.8.4')
- autowaf.check_pkg(conf, 'pangomm-1.5', uselib_store='CAIROMM', atleast_version='1.4')
-
-def configure(conf):
- autowaf.configure(conf)
+ autowaf.check_pkg(conf, 'pangomm-1.4', uselib_store='PANGOMM', atleast_version='1.4', mandatory=True)
+ autowaf.check_pkg(conf, 'cairomm-1.0', uselib_store='CAIROMM', atleast_version='1.8.4', mandatory=True)
def build(bld):
obj = bld(features = 'cxx cxxshlib')