dump: remove dependency on Boost.Regex
Use std::regex instead.
Change-Id: Icb0f88a3f01d16ca53089cdc764d529687eaca81
diff --git a/wscript b/wscript
index c7ccb62..b47b0ed 100644
--- a/wscript
+++ b/wscript
@@ -27,7 +27,7 @@
conf.check_cfg(package='libndn-cxx', args=['--cflags', '--libs'],
uselib_store='NDN_CXX', mandatory=True)
- boost_libs = 'system filesystem program_options regex thread log log_setup'
+ boost_libs = 'system filesystem program_options thread log log_setup'
if conf.options.with_tests:
conf.env['WITH_TESTS'] = True
conf.define('WITH_TESTS', 1)