summaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-03-15 22:41:56 +0000
committerDavid Robillard <d@drobilla.net>2011-03-15 22:41:56 +0000
commit1f09e20cc5b2e1fc30621c6e013cc001fb6156b2 (patch)
treeef0fe02176f1887a66f1a3f76ea372e218b626a5 /wscript
parent81033bfafd35e0179d1522c61f209cc5e0ac387d (diff)
downloadraul-1f09e20cc5b2e1fc30621c6e013cc001fb6156b2.tar.gz
raul-1f09e20cc5b2e1fc30621c6e013cc001fb6156b2.tar.bz2
raul-1f09e20cc5b2e1fc30621c6e013cc001fb6156b2.zip
Remove autowaf external (broken intermediary revision).
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@3095 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'wscript')
-rw-r--r--wscript7
1 files changed, 4 insertions, 3 deletions
diff --git a/wscript b/wscript
index 28ca542..bd39ede 100644
--- a/wscript
+++ b/wscript
@@ -1,8 +1,9 @@
#!/usr/bin/env python
-import autowaf
-import Options
import os
+from waflib.extras import autowaf as autowaf
+import waflib.Options as Options
+
# Version of this package (even if built as a child)
RAUL_VERSION = '0.8.0'
@@ -45,7 +46,7 @@ def options(opt):
def configure(conf):
autowaf.configure(conf)
autowaf.display_header('Raul Configuration')
- conf.check_tool('compiler_cxx')
+ conf.load('compiler_cxx')
autowaf.check_pkg(conf, 'glib-2.0', atleast_version='2.2',
uselib_store='GLIB', mandatory=True)
autowaf.check_pkg(conf, 'gthread-2.0', atleast_version='2.14.0',