1
0
mirror of https://git.proxmox.com/git/mirror_zfs.git synced 2025-01-24 08:56:35 +03:00
mirror_zfs/config/user-clock_gettime.m4

13 lines
387 B
Plaintext
Raw Normal View History

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])
])
])
])