mirror of
				https://git.proxmox.com/git/mirror_zfs.git
				synced 2025-10-26 18:05:04 +03:00 
			
		
		
		
	 051460b8b2
			
		
	
	
		051460b8b2
		
	
	
	
	
		
			
			libunwind seems to do a better job of resolving a symbols than backtrace(), and is also useful on platforms that don't have backtrace() (eg musl). If it's available, use it. Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Rob Norris <robn@despairlabs.com> Sponsored-by: https://despairlabs.com/sponsor/ Closes #16140
		
			
				
	
	
		
			40 lines
		
	
	
		
			1021 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			1021 B
		
	
	
	
		
			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 strlcat strlcpy gettid])
 | |
| 
 | |
| 	AC_SUBST(RM)
 | |
| ])
 |