Merge commit 'refs/top-bases/linux-zpios' into linux-zpios
This commit is contained in:
commit
6661907d23
|
@ -1,4 +1,5 @@
|
||||||
dnl #
|
dnl #
|
||||||
dnl # Default ZFS user configuration
|
dnl # Default ZFS user configuration
|
||||||
dnl #
|
dnl #
|
||||||
AC_DEFUN([ZFS_AC_CONFIG_USER], [])
|
AC_DEFUN([ZFS_AC_CONFIG_USER], [
|
||||||
|
])
|
||||||
|
|
|
@ -361,28 +361,3 @@ AC_DEFUN([ZFS_CHECK_SYMBOL_EXPORT],
|
||||||
$3
|
$3
|
||||||
fi
|
fi
|
||||||
])
|
])
|
||||||
|
|
||||||
dnl #
|
|
||||||
dnl # 2.6.x API change
|
|
||||||
dnl # bio_end_io_t uses 2 args (size was dropped from prototype)
|
|
||||||
dnl #
|
|
||||||
AC_DEFUN([ZFS_AC_2ARGS_BIO_END_IO_T],
|
|
||||||
[AC_MSG_CHECKING([whether bio_end_io_t wants 2 args])
|
|
||||||
tmp_flags="$EXTRA_KCFLAGS"
|
|
||||||
EXTRA_KCFLAGS="-Werror"
|
|
||||||
ZFS_LINUX_TRY_COMPILE([
|
|
||||||
#include <linux/bio.h>
|
|
||||||
],[
|
|
||||||
void (*wanted_end_io)(struct bio *, int) = NULL;
|
|
||||||
bio_end_io_t *local_end_io;
|
|
||||||
|
|
||||||
local_end_io = wanted_end_io;
|
|
||||||
],[
|
|
||||||
AC_MSG_RESULT(yes)
|
|
||||||
AC_DEFINE(HAVE_2ARGS_BIO_END_IO_T, 1,
|
|
||||||
[bio_end_io_t wants 2 args])
|
|
||||||
],[
|
|
||||||
AC_MSG_RESULT(no)
|
|
||||||
])
|
|
||||||
EXTRA_KCFLAGS="$tmp_flags"
|
|
||||||
])
|
|
||||||
|
|
28
configure.ac
28
configure.ac
|
@ -54,34 +54,6 @@ ZFS_AC_SPL
|
||||||
ZFS_AC_CONFIG
|
ZFS_AC_CONFIG
|
||||||
ZFS_AC_LICENSE
|
ZFS_AC_LICENSE
|
||||||
ZFS_AC_DEBUG
|
ZFS_AC_DEBUG
|
||||||
ZFS_AC_2ARGS_BIO_END_IO_T
|
|
||||||
|
|
||||||
AC_CHECK_LIB([diskmgt], [libdiskmgt_error],
|
|
||||||
[AC_DEFINE([HAVE_LIBDISKMGT], 1,
|
|
||||||
[Define to 1 if 'libdiskmgt' library available])])
|
|
||||||
|
|
||||||
AC_CHECK_LIB([efi], [efi_alloc_and_init],
|
|
||||||
[AC_DEFINE([HAVE_LIBEFI], 1,
|
|
||||||
[Define to 1 if 'libefi' library available])])
|
|
||||||
|
|
||||||
AC_CHECK_LIB([share], [sa_init],
|
|
||||||
[AC_DEFINE([HAVE_LIBSHARE], 1,
|
|
||||||
[Define to 1 if 'libshare' library available])])
|
|
||||||
|
|
||||||
AC_EGREP_HEADER(strcmp, strings.h,
|
|
||||||
[AC_DEFINE([HAVE_STRCMP_IN_STRINGS_H], 1,
|
|
||||||
[Define to 1 if strcmpl() is defined in <strings.h> header file])])
|
|
||||||
|
|
||||||
AC_EGREP_HEADER(sysinfo, sys/systeminfo.h,
|
|
||||||
[AC_DEFINE([HAVE_SYSINFO_IN_SYS_SYSTEMINFO_H], 1,
|
|
||||||
[Define to 1 if sysinfo() is defined in <sys/systeminfo.h> header file])])
|
|
||||||
|
|
||||||
#AC_DEFINE([HAVE_ZVOL], 1, ["Define to 1 to include ZVOL support"])
|
|
||||||
#AC_DEFINE([HAVE_ZPL], 1, ["Define to 1 to include ZPL support"])
|
|
||||||
#AC_DEFINE([WANT_FAKE_IOCTL], 1, ["Define to 1 to use fake ioctl() support"])
|
|
||||||
#AC_DEFINE([HAVE_DM_INUSE_SWAP], 1, ["None"])
|
|
||||||
#AC_DEFINE([HAVE_UNICODE], 1, ["None"])
|
|
||||||
#AC_DEFINE([HAVE_INTTYPES], 1, [Define to 1 if unint16 defined in <sys/types.h>])
|
|
||||||
|
|
||||||
AC_CONFIG_FILES([ Makefile
|
AC_CONFIG_FILES([ Makefile
|
||||||
config/Makefile
|
config/Makefile
|
||||||
|
|
Loading…
Reference in New Issue