mirror of
				https://git.proxmox.com/git/mirror_zfs.git
				synced 2025-10-26 18:05:04 +03:00 
			
		
		
		
	Add autoconf style build infrastructure to the ZFS tree. This includes autogen.sh, configure.ac, m4 macros, some scripts/*, and makefiles for all the core ZFS components.
		
			
				
	
	
		
			20 lines
		
	
	
		
			468 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			468 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
dnl #
 | 
						|
dnl # 2.6.22 API change
 | 
						|
dnl # Unused destroy_dirty_buffers arg removed from prototype.
 | 
						|
dnl #
 | 
						|
AC_DEFUN([ZFS_AC_KERNEL_INVALIDATE_BDEV_ARGS], [
 | 
						|
	AC_MSG_CHECKING([whether invalidate_bdev() wants 1 arg])
 | 
						|
	ZFS_LINUX_TRY_COMPILE([
 | 
						|
		#include <linux/buffer_head.h>
 | 
						|
	],[
 | 
						|
		struct block_device *bdev;
 | 
						|
		invalidate_bdev(bdev);
 | 
						|
	],[
 | 
						|
		AC_MSG_RESULT(yes)
 | 
						|
		AC_DEFINE(HAVE_1ARG_INVALIDATE_BDEV, 1,
 | 
						|
		          [invalidate_bdev() wants 1 arg])
 | 
						|
	],[
 | 
						|
		AC_MSG_RESULT(no)
 | 
						|
	])
 | 
						|
])
 |