diff options
Diffstat (limited to 'extras')
-rw-r--r-- | extras/autowaf.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/extras/autowaf.py b/extras/autowaf.py index f687f9a..2ceb014 100644 --- a/extras/autowaf.py +++ b/extras/autowaf.py @@ -128,6 +128,12 @@ class ConfigureContext(Configure.ConfigurationContext): super(ConfigureContext, self).store() + def check_pkg(self, *args, **kwargs): + return check_pkg(self, *args, **kwargs) + + def check_function(self, *args, **kwargs): + return check_function(self, *args, **kwargs) + def build_path(self, path='.'): """Return `path` within the build directory""" return str(self.path.get_bld().make_node(path)) |