aboutsummaryrefslogtreecommitdiffstats
path: root/waflib/extras/swig.py
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2019-03-17 17:31:04 +0100
committerDavid Robillard <d@drobilla.net>2019-03-17 18:14:27 +0100
commit6547441f898cc55923878022960c79f33959c7b3 (patch)
treec1c4f72dd5ca4e9b5a833e386c96d79683f5eefd /waflib/extras/swig.py
parent556bb105e3877b9fa59f5829404386c02d146611 (diff)
parent388292beaecc981066c28359ab588b5056c9158a (diff)
downloadfomp.lv2-6547441f898cc55923878022960c79f33959c7b3.tar.gz
fomp.lv2-6547441f898cc55923878022960c79f33959c7b3.tar.bz2
fomp.lv2-6547441f898cc55923878022960c79f33959c7b3.zip
Update autowaf and adapt to new APIHEADmaster
Diffstat (limited to 'waflib/extras/swig.py')
-rw-r--r--waflib/extras/swig.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/waflib/extras/swig.py b/waflib/extras/swig.py
index fd3d6d2..740ab46 100644
--- a/waflib/extras/swig.py
+++ b/waflib/extras/swig.py
@@ -17,10 +17,10 @@ tasks have to be added dynamically:
SWIG_EXTS = ['.swig', '.i']
-re_module = re.compile('%module(?:\s*\(.*\))?\s+(.+)', re.M)
+re_module = re.compile(r'%module(?:\s*\(.*\))?\s+(.+)', re.M)
re_1 = re.compile(r'^%module.*?\s+([\w]+)\s*?$', re.M)
-re_2 = re.compile('[#%]include [<"](.*)[">]', re.M)
+re_2 = re.compile(r'[#%](?:include|import(?:\(module=".*"\))+|python(?:begin|code)) [<"](.*)[">]', re.M)
class swig(Task.Task):
color = 'BLUE'