60e9f69c97
Installing outside of the prefix is not permissible under Gentoo Prefix. The package manager will cause the installation process to fail if/when it sees this. I could script a workaround inside the ebuild, but it seemed to make more sense to make this more configurable. Signed-off-by: Richard Yao <richard.yao@clusterhq.com> Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov> Issue #2641
20 lines
473 B
Plaintext
20 lines
473 B
Plaintext
dnl #
|
|
dnl # Default ZFS user configuration
|
|
dnl #
|
|
AC_DEFUN([ZFS_AC_CONFIG_USER], [
|
|
ZFS_AC_CONFIG_USER_MOUNT_HELPER
|
|
ZFS_AC_CONFIG_USER_UDEV
|
|
ZFS_AC_CONFIG_USER_SYSTEMD
|
|
ZFS_AC_CONFIG_USER_SYSVINIT
|
|
ZFS_AC_CONFIG_USER_DRACUT
|
|
ZFS_AC_CONFIG_USER_ARCH
|
|
ZFS_AC_CONFIG_USER_ZLIB
|
|
ZFS_AC_CONFIG_USER_LIBUUID
|
|
ZFS_AC_CONFIG_USER_LIBBLKID
|
|
ZFS_AC_CONFIG_USER_FRAME_LARGER_THAN
|
|
ZFS_AC_CONFIG_USER_RUNSTATEDIR
|
|
dnl #
|
|
dnl # Checks for library functions
|
|
AC_CHECK_FUNCS([mlockall])
|
|
])
|