Updated ru_RU translation from Igor Voytovich.
[dcpomatic.git] / wscript
diff --git a/wscript b/wscript
index 98cca364a8696db948c6f7a3e55ff282f612f4db..9c1b60865ff97e4438cc07b29e19f48c119f1b8e 100644 (file)
--- a/wscript
+++ b/wscript
@@ -26,7 +26,7 @@ import distutils.spawn
 from waflib import Logs
 
 APPNAME = 'dcpomatic'
-VERSION = '2.1.15devel'
+VERSION = '2.1.22devel'
 
 def options(opt):
     opt.load('compiler_cxx')
@@ -343,6 +343,14 @@ def configure(conf):
                        msg='Checking for boost signals2 library',
                        uselib_store='BOOST_SIGNALS2')
 
+        conf.check_cxx(fragment="""
+                           #include <boost/regex.hpp>\n
+                           int main() { boost::regex re ("foo"); }\n
+                           """,
+                       msg='Checking for boost regex library',
+                       lib=['boost_regex%s' % boost_lib_suffix],
+                       uselib_store='BOOST_REGEX')
+
     # Other stuff
 
     conf.find_program('msgfmt', var='MSGFMT')