Since libnm-wwan.so is not just a loadable module but also a shared library that some plugin links against, build it as a shared library while avoiding '-Wl,--no-undefined': https://github.com/mesonbuild/meson/issues/9492#issuecomment-973117289 diff --git a/src/core/devices/wwan/meson.build b/src/core/devices/wwan/meson.build index 37ef738..18ac54f 100644 --- a/src/core/devices/wwan/meson.build +++ b/src/core/devices/wwan/meson.build @@ -4,8 +4,9 @@ wwan_inc = include_directories('.') linker_script = join_paths(meson.current_source_dir(), 'libnm-wwan.ver') -libnm_wwan = shared_module( +libnm_wwan = shared_library( 'nm-wwan', + override_options: ['b_lundef=false'], sources: files( 'nm-service-providers.c', 'nm-modem-broadband.c', nge='this.form.submit();'> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/patches/fail2ban-paths-guix-conf.patch
AgeCommit message (Expand)Author
2022-08-01gnu: Add fail2ban....* gnu/packages/admin.scm (fail2ban): New variable. * gnu/packages/patches/fail2ban-0.11.2_CVE-2021-32749.patch, gnu/packages/patches/fail2ban-0.11.2_fix-setuptools-drop-2to3.patch, gnu/packages/patches/fail2ban-0.11.2_fix-test-suite.patch, gnu/packages/patches/fail2ban-paths-guix-conf.patch, gnu/packages/patches/fail2ban-python310-server-action.patch, gnu/packages/patches/fail2ban-python310-server-actions.patch, gnu/packages/patches/fail2ban-python310-server-jails.patch: New files. * gnu/local.mk (dist_patch_DATA): Add them. Co-authored-by: Ludovic Courtès <ludo@gnu.org> muradm