summaryrefslogtreecommitdiff
path: root/cmake/Findfutimens.cmake
blob: 73b79528ac64b661b85480dbae5d630933f422cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
INCLUDE(EnableWarnings)

IF (APPLE)
	# We cannot simply CHECK_FUNCTION_EXISTS on macOS because
	# MACOSX_DEPLOYMENT_TARGET may be set to a version in the past
	# that doesn't have futimens.  Instead we need to enable warnings
	# as errors, then check for the symbol existing in `sys/stat.h`,
	# then reset warnings as errors.
	ENABLE_WARNINGS(error)
	CHECK_SYMBOL_EXISTS(futimens sys/stat.h HAVE_FUTIMENS)
	DISABLE_WARNINGS(error)
ELSE ()
	CHECK_FUNCTION_EXISTS(futimens HAVE_FUTIMENS)
ENDIF ()