diff options
author | David Robillard <d@drobilla.net> | 2011-03-15 22:41:56 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-03-15 22:41:56 +0000 |
commit | 1f09e20cc5b2e1fc30621c6e013cc001fb6156b2 (patch) | |
tree | ef0fe02176f1887a66f1a3f76ea372e218b626a5 | |
parent | 81033bfafd35e0179d1522c61f209cc5e0ac387d (diff) | |
download | raul-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
l--------- | INSTALL | 1 | ||||
l--------- | waf | 1 | ||||
-rw-r--r-- | wscript | 7 |
3 files changed, 4 insertions, 5 deletions
diff --git a/INSTALL b/INSTALL deleted file mode 120000 index 4d35fcc..0000000 --- a/INSTALL +++ /dev/null @@ -1 +0,0 @@ -autowaf/INSTALL
\ No newline at end of file @@ -1 +0,0 @@ -autowaf/waf
\ No newline at end of file @@ -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', |