mirror of
https://github.com/OpenRC/openrc.git
synced 2024-11-27 03:44:16 +08:00
Fix build on GNU Hurd: kvm library is BSD only.
../meson.build:47:2: ERROR: C shared or static library 'kvm' not found
This commit is contained in:
parent
179338c4d7
commit
9f6cb01f46
@ -43,7 +43,7 @@ else
|
||||
os = option_os
|
||||
endif
|
||||
|
||||
if os != 'Linux'
|
||||
if os == 'Dragonfly' or os == 'FreeBSD' or os == 'NetBSD' or os == 'OpenBSD'
|
||||
kvm_dep = cc.find_library('kvm', required: true)
|
||||
else
|
||||
kvm_dep = []
|
||||
|
Loading…
Reference in New Issue
Block a user