summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cscript2
-rw-r--r--tools/wscript2
2 files changed, 2 insertions, 2 deletions
diff --git a/cscript b/cscript
index 3e7e427..cfeed1b 100644
--- a/cscript
+++ b/cscript
@@ -32,7 +32,7 @@ def build(target, options, for_package, version):
cmd = './waf configure --prefix=%s' % target.directory
if target.platform == 'linux':
cmd += ' --static'
- if (target.distro, target.version) in [('centos', '7'), ('ubuntu', '16.04'), ('ubuntu', '14.04')]:
+ if (target.distro, target.version) in [('rocky', '8'), ('centos', '7'), ('ubuntu', '18.04'), ('ubuntu', '16.04'), ('ubuntu', '14.04')]:
cmd += ' --static-boost'
if target.debug:
cmd += ' --enable-debug'
diff --git a/tools/wscript b/tools/wscript
index 9de44d1..5238d68 100644
--- a/tools/wscript
+++ b/tools/wscript
@@ -1,6 +1,6 @@
def build(bld):
obj = bld(features='cxx cxxprogram')
obj.use = ['libsub-1.0']
- obj.uselib = 'OPENJPEG CXML BOOST_FILESYSTEM BOOST_REGEX'
+ obj.uselib = 'OPENJPEG CXML BOOST_FILESYSTEM BOOST_REGEX FMT'
obj.source = 'dumpsubs.cc'
obj.target = 'dumpsubs'