mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2025-01-12 19:20:28 +03:00
48ef8ba070
Split the kernel interface configure checks in to seperate m4 macro files. This is intended to facilitate moving the spl source code in to the zfs repository. Reviewed-by: Tony Hutter <hutter2@llnl.gov> Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov> Closes #682
18 lines
348 B
Plaintext
18 lines
348 B
Plaintext
dnl #
|
|
dnl # 3.10 API change,
|
|
dnl # PDE is replaced by PDE_DATA
|
|
dnl #
|
|
AC_DEFUN([SPL_AC_PDE_DATA], [
|
|
AC_MSG_CHECKING([whether PDE_DATA() is available])
|
|
SPL_LINUX_TRY_COMPILE_SYMBOL([
|
|
#include <linux/proc_fs.h>
|
|
], [
|
|
PDE_DATA(NULL);
|
|
], [PDE_DATA], [], [
|
|
AC_MSG_RESULT(yes)
|
|
AC_DEFINE(HAVE_PDE_DATA, 1, [yes])
|
|
],[
|
|
AC_MSG_RESULT(no)
|
|
])
|
|
])
|