build: fix check for libbsd in meson
[dpdk.git] / config / meson.build
index 5815b56..2179c68 100644 (file)
@@ -43,7 +43,8 @@ if numa_dep.found() and cc.has_header('numaif.h')
 endif
 
 # check for strlcpy
-if host_machine.system() == 'linux' and cc.find_library('bsd', required: false).found()
+if host_machine.system() == 'linux' and cc.find_library('bsd',
+               required: false).found() and cc.has_header('bsd/string.h')
        dpdk_conf.set('RTE_USE_LIBBSD', 1)
        add_project_link_arguments('-lbsd', language: 'c')
        dpdk_extra_ldflags += '-lbsd'