Files
mirror_zfs/config/user.m4
T

49 lines
1.2 KiB
Plaintext
Raw Normal View History

2010-08-26 11:22:58 -07:00
dnl #
dnl # Default ZFS user configuration
dnl #
AC_DEFUN([ZFS_AC_CONFIG_USER], [
ZFS_AC_CONFIG_USER_GETTEXT
ZFS_AC_CONFIG_USER_MOUNT_HELPER
2014-01-19 15:36:49 +01:00
ZFS_AC_CONFIG_USER_SYSVINIT
2013-02-22 10:16:16 -08:00
ZFS_AC_CONFIG_USER_DRACUT
2020-06-30 13:10:41 -04:00
AM_COND_IF([BUILD_FREEBSD], [
PKG_INSTALLDIR(['${prefix}/libdata/pkgconfig'])], [
PKG_INSTALLDIR
])
2010-08-26 11:22:58 -07:00
ZFS_AC_CONFIG_USER_ZLIB
2020-04-14 11:36:28 -07:00
AM_COND_IF([BUILD_LINUX], [
ZFS_AC_CONFIG_USER_UDEV
ZFS_AC_CONFIG_USER_SYSTEMD
ZFS_AC_CONFIG_USER_LIBUUID
ZFS_AC_CONFIG_USER_LIBBLKID
])
2016-04-26 17:24:41 -07:00
ZFS_AC_CONFIG_USER_LIBTIRPC
ZFS_AC_CONFIG_USER_LIBUDEV
2020-06-30 13:10:41 -04:00
ZFS_AC_CONFIG_USER_LIBCRYPTO
2018-03-28 10:19:22 -07:00
ZFS_AC_CONFIG_USER_LIBAIO
ZFS_AC_CONFIG_USER_LIBATOMIC
ZFS_AC_CONFIG_USER_LIBFETCH
2022-03-28 19:24:22 +02:00
ZFS_AC_CONFIG_USER_AIO_H
2020-06-30 13:10:41 -04:00
ZFS_AC_CONFIG_USER_CLOCK_GETTIME
2020-06-25 03:45:44 +02:00
ZFS_AC_CONFIG_USER_PAM
2014-01-06 16:15:45 -08:00
ZFS_AC_CONFIG_USER_RUNSTATEDIR
ZFS_AC_CONFIG_USER_MAKEDEV_IN_SYSMACROS
ZFS_AC_CONFIG_USER_MAKEDEV_IN_MKDEV
2018-06-07 12:59:59 -04:00
ZFS_AC_CONFIG_USER_ZFSEXEC
2015-07-01 15:23:09 -07:00
ZFS_AC_TEST_FRAMEWORK
2020-04-14 11:36:28 -07:00
AC_CHECK_FUNCS([issetugid mlockall strlcat strlcpy])
2010-08-26 11:22:58 -07:00
])
2015-07-01 15:23:09 -07:00
dnl #
dnl # Setup the environment for the ZFS Test Suite. Currently only
2019-08-30 18:40:30 +02:00
dnl # Linux style systems are supported but this infrastructure can
2015-07-01 15:23:09 -07:00
dnl # be extended to support other platforms if needed.
dnl #
AC_DEFUN([ZFS_AC_TEST_FRAMEWORK], [
ZONENAME="echo global"
AC_SUBST(ZONENAME)
AC_SUBST(RM)
])