mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-21 11:41:03 +00:00
Fix detection of fts_set on OpenBSD
There are some additional headers that are necessary to be able to detect the presence of fts_set.
This commit is contained in:
parent
b6b6b0cb89
commit
d2867841b1
1 changed files with 1 additions and 1 deletions
|
@ -301,7 +301,7 @@ else()
|
|||
|
||||
if ( UNIX )
|
||||
include(CheckSymbolExists)
|
||||
check_symbol_exists( "fts_set" "fts.h" HAVE_FTS )
|
||||
check_symbol_exists( "fts_set" "sys/types.h;sys/stat.h;fts.h" HAVE_FTS )
|
||||
if ( NOT HAVE_FTS )
|
||||
include ( FindPkgConfig )
|
||||
pkg_check_modules( MUSL_FTS musl-fts )
|
||||
|
|
Loading…
Reference in a new issue