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', cted='selected'>koszko Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/services/getmail.scm
AgeCommit message (Expand)Author
2019-10-18Fix documentation of delete_after in the getmail service....* doc/guix.texi (Getmail service): Remove the word `not'. * gnu/services/getmail.scm (getmail-options-configuration): Ditto. Florian Pelz
2019-05-31services: Add getmail....Getmail is a mail retriever written in Python, this commit adds a service-type to run getmail. I'm looking at this, as it's a convinient way of getting mailing list messages in to Patchwork. I initially tried putting this in the (gnu services mail) module, but due to also trying to use the define-configuration pattern, it conflicted with the dovecot service. * gnu/services/getmail.scm: New file. * gnu/local.mk: Add it. * gnu/tests/mail.scm (%getmail-os, %test-getmail): New variables. (run-getmail-test): New procedure. Christopher Baines