From 73f12506b092200418ce20d9ec70bf646d248f5d Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sat, 25 Apr 2020 20:31:27 +0200 Subject: [PATCH] Add link with anl to fix Centos 8 build. --- wscript | 2 ++ 1 file changed, 2 insertions(+) diff --git a/wscript b/wscript index 6451f6b2a..bee03cb0c 100644 --- a/wscript +++ b/wscript @@ -394,6 +394,8 @@ 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) + # 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: -- 2.30.2