Skip to content

Commit

Permalink
meson: use find_library for numa
Browse files Browse the repository at this point in the history
Older versions of numa do not come with a pkgconfig file.
  • Loading branch information
neheb committed Apr 1, 2024
1 parent 280b89d commit 2e1bf90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ glib_dep = dependency('glib-2.0')
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'))
numa_dep = dependency('numa', required: get_option('numa'))
numa_dep = cc.find_library('numa', required: get_option('numa'))
libnl_3_dep = dependency('libnl-3.0', required: get_option('thermal'))
libnl_genl_3_dep = dependency('libnl-genl-3.0', required: get_option('thermal'))
systemd_dep = dependency('libsystemd', required: get_option('systemd'))
Expand Down

0 comments on commit 2e1bf90

Please sign in to comment.