mirror of
https://github.com/openwrt/packages.git
synced 2025-12-21 19:14:30 +04:00
Update irqbalance to version 1.9.5 * drop the original local meson patch, as meson is now properly adopted by upstream. But patch meson.build to keep glib2 library statically linked in order to avoid a dependency and indirect size increase. * disable unnecessary functions via meson features settings (capng, numa, systemd, thermal, ui) Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
12 lines
376 B
Diff
12 lines
376 B
Diff
--- a/meson.build
|
|
+++ b/meson.build
|
|
@@ -6,7 +6,7 @@ project('irqbalance', 'c',
|
|
|
|
cc = meson.get_compiler('c')
|
|
|
|
-glib_dep = dependency('glib-2.0')
|
|
+glib_dep = dependency('glib-2.0', static: true)
|
|
m_dep = cc.find_library('m', required: false)
|
|
capng_dep = dependency('libcap-ng', required: get_option('capng'))
|
|
ncurses_dep = dependency('curses', required: get_option('ui'))
|