Cygwin, disable xattr support

This commit is contained in:
benrubson 2018-03-26 23:20:32 +02:00
parent 1a8a5e0246
commit 9495f6f7aa

View File

@ -105,8 +105,10 @@ find_program (POD2MAN pod2man)
# Check for include files and stdlib properties.
include (CheckIncludeFileCXX)
check_include_file_cxx (attr/xattr.h HAVE_ATTR_XATTR_H)
check_include_file_cxx (sys/xattr.h HAVE_SYS_XATTR_H)
if (NOT CYGWIN)
check_include_file_cxx (attr/xattr.h HAVE_ATTR_XATTR_H)
check_include_file_cxx (sys/xattr.h HAVE_SYS_XATTR_H)
endif()
include(CheckStructHasMember)
check_struct_has_member("struct dirent" d_type dirent.h HAVE_DIRENT_D_TYPE LANGUAGE CXX)