aboutsummaryrefslogtreecommitdiffstats
path: root/config/user-clock_gettime.m4
blob: c96024da797b0a34b1c0e3937a92335082274b99 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
dnl #
dnl # Check if librt is required for clock_gettime.
dnl # clock_gettime is generally available in libc on modern systems.
dnl #
AC_DEFUN([ZFS_AC_CONFIG_USER_CLOCK_GETTIME], [
	AC_CHECK_FUNC([clock_gettime], [], [
	    AC_CHECK_LIB([rt], [clock_gettime], [
		AC_SUBST([LIBCLOCK_GETTIME], [-lrt])], [
		AC_MSG_FAILURE([*** clock_gettime is missing in libc and librt])
	    ])
	])
])