X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=wscript;h=86c65ad74da8f49aae7321d3d45694f879c1f8d1;hb=13f302149a2a2846d801689e3d194af3249ed0b7;hp=c386ed21d5469811f209d14e735ede61bb59cbbc;hpb=ddccef68ae80bac6b4aa8583dd8e0a7c943b535c;p=dcpomatic.git diff --git a/wscript b/wscript index c386ed21d..86c65ad74 100644 --- a/wscript +++ b/wscript @@ -270,6 +270,9 @@ def configure(conf): # cairomm conf.check_cfg(package='cairomm-1.0', args='--cflags --libs', uselib_store='CAIROMM', mandatory=True) + # leqm_nrt + conf.check_cfg(package='leqm_nrt', args='--cflags --libs', uselib_store='LEQM_NRT', mandatory=True) + test_cxxflags = '' if have_c11: test_cxxflags = '-std=c++11' @@ -391,6 +394,9 @@ def configure(conf): if conf.options.enable_disk: if conf.check_cfg(package='nanomsg', args='--cflags --libs', uselib_store='NANOMSG', mandatory=False) is None: conf.check_cfg(package='libnanomsg', args='--cflags --libs', uselib_store='NANOMSG', mandatory=True) + if conf.env.TARGET_LINUX: + # We link with nanomsg statically on Centos 8 so we need to link this as well + conf.env.LIB_NANOMSG.append('anl') # FFmpeg if conf.options.static_ffmpeg: