Convert GETMNTINFO_USES_STATVFS check to CMake

Fix to build on such platforms, it is used but not checked with CMake.
pull/19/head
OBATA Akio 5 년 전
부모 96ea8604a1
커밋 6716d0dfb9

@ -352,6 +352,17 @@ if( ${CMAKE_SYSTEM_NAME} STREQUAL "OpenBSD" )
endif( )
check_function_exists( getmntinfo HAVE_GETMNTINFO )
if( HAVE_GETMNTINFO )
check_cxx_source_compiles("
#include <sys/types.h>
#include <sys/statvfs.h>
int main(){
struct statvfs *mntbufp;
int flags;
return getmntinfo(&mntbufp, flags);
}"
GETMNTINFO_USES_STATVFS )
endif( HAVE_GETMNTINFO )
check_function_exists( getnameinfo HAVE_GETNAMEINFO )
check_function_exists( getpagesize HAVE_GETPAGESIZE )
check_function_exists( getpeereid HAVE_GETPEEREID )

@ -24,7 +24,7 @@
#undef GETADDRINFO_RETURNS_UNIX
/* getmntinfo() uses struct statvfs */
#undef GETMNTINFO_USES_STATVFS
#cmakedefine GETMNTINFO_USES_STATVFS
/* Define if you have the MIT Kerberos libraries */
#undef GSSAPI_MIT

불러오는 중...
취소
저장