mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-17 01:51:00 +03:00
48dfe39747
Some C libraries, such as uClibc, do not provide strerror_l() in which case we fallback to strerror(). Reviewed-by: Tino Reichardt <milky-zfs@mcmilk.de> Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov> Closes #16636 Closes #16640
40 lines
1.0 KiB
Plaintext
40 lines
1.0 KiB
Plaintext
dnl #
|
|
dnl # Default ZFS user configuration
|
|
dnl #
|
|
AC_DEFUN([ZFS_AC_CONFIG_USER], [
|
|
ZFS_AC_CONFIG_USER_GETTEXT
|
|
ZFS_AC_CONFIG_USER_MOUNT_HELPER
|
|
ZFS_AC_CONFIG_USER_SYSVINIT
|
|
ZFS_AC_CONFIG_USER_DRACUT
|
|
AM_COND_IF([BUILD_FREEBSD], [
|
|
PKG_INSTALLDIR(['${prefix}/libdata/pkgconfig'])], [
|
|
PKG_INSTALLDIR
|
|
])
|
|
ZFS_AC_CONFIG_USER_ZLIB
|
|
AM_COND_IF([BUILD_LINUX], [
|
|
ZFS_AC_CONFIG_USER_UDEV
|
|
ZFS_AC_CONFIG_USER_SYSTEMD
|
|
ZFS_AC_CONFIG_USER_LIBUDEV
|
|
ZFS_AC_CONFIG_USER_LIBUUID
|
|
ZFS_AC_CONFIG_USER_LIBBLKID
|
|
])
|
|
ZFS_AC_CONFIG_USER_LIBTIRPC
|
|
ZFS_AC_CONFIG_USER_LIBCRYPTO
|
|
ZFS_AC_CONFIG_USER_LIBAIO
|
|
ZFS_AC_CONFIG_USER_LIBATOMIC
|
|
ZFS_AC_CONFIG_USER_LIBFETCH
|
|
ZFS_AC_CONFIG_USER_AIO_H
|
|
ZFS_AC_CONFIG_USER_CLOCK_GETTIME
|
|
ZFS_AC_CONFIG_USER_PAM
|
|
ZFS_AC_CONFIG_USER_BACKTRACE
|
|
ZFS_AC_CONFIG_USER_LIBUNWIND
|
|
ZFS_AC_CONFIG_USER_RUNSTATEDIR
|
|
ZFS_AC_CONFIG_USER_MAKEDEV_IN_SYSMACROS
|
|
ZFS_AC_CONFIG_USER_MAKEDEV_IN_MKDEV
|
|
ZFS_AC_CONFIG_USER_ZFSEXEC
|
|
|
|
AC_CHECK_FUNCS([execvpe issetugid mlockall strerror_l strlcat strlcpy gettid])
|
|
|
|
AC_SUBST(RM)
|
|
])
|