mirror of
				https://git.proxmox.com/git/mirror_zfs
				synced 2025-10-31 19:05:26 +00:00 
			
		
		
		
	 06346cc5b5
			
		
	
	
		06346cc5b5
		
			
		
	
	
	
	
		
			
			Several m4 macros have been retired in autoconf 2.70. Update the the build system to use the new macros provided to replace them. * Replaced AC_HELP_STRING with AS_HELP_STRING. * Replaced AC_TRY_COMPILE with AC_COMPILE_IFELSE/AC_LANG_PROGRAM. * Replaced AC_CANONICAL_SYSTEM with AC_CANONICAL_TARGET * Replaced AC_PROG_LIBTOOL with LT_INIT * $CPP is not defined in ZFS_AC_KERNEL and really shouldn't be directly used like this. Replace it with an $AWK command to extract the kernel source version. Reviewed-by: Eli Schwartz <eschwartz@archlinux.org> Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov> Issue #11413 Closes #11419
		
			
				
	
	
		
			38 lines
		
	
	
		
			793 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			793 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| dnl #
 | |
| dnl # glibc 2.25
 | |
| dnl #
 | |
| AC_DEFUN([ZFS_AC_CONFIG_USER_MAKEDEV_IN_SYSMACROS], [
 | |
| 	AC_MSG_CHECKING([makedev() is declared in sys/sysmacros.h])
 | |
| 	AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
 | |
| 		#include <sys/sysmacros.h>
 | |
| 	]], [[
 | |
| 		int k;
 | |
| 		k = makedev(0,0);
 | |
| 	]])],[
 | |
| 		AC_MSG_RESULT(yes)
 | |
| 		AC_DEFINE(HAVE_MAKEDEV_IN_SYSMACROS, 1,
 | |
| 		    [makedev() is declared in sys/sysmacros.h])
 | |
| 	],[
 | |
| 		AC_MSG_RESULT(no)
 | |
| 	])
 | |
| ])
 | |
| 
 | |
| dnl #
 | |
| dnl # glibc X < Y < 2.25
 | |
| dnl #
 | |
| AC_DEFUN([ZFS_AC_CONFIG_USER_MAKEDEV_IN_MKDEV], [
 | |
| 	AC_MSG_CHECKING([makedev() is declared in sys/mkdev.h])
 | |
| 	AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
 | |
| 		#include <sys/mkdev.h>
 | |
| 	]], [[
 | |
| 		int k;
 | |
| 		k = makedev(0,0);
 | |
| 	]])],[
 | |
| 		AC_MSG_RESULT(yes)
 | |
| 		AC_DEFINE(HAVE_MAKEDEV_IN_MKDEV, 1,
 | |
| 		    [makedev() is declared in sys/mkdev.h])
 | |
| 	],[
 | |
| 		AC_MSG_RESULT(no)
 | |
| 	])
 | |
| ])
 |