diff options
author | Etienne Dechamps <[email protected]> | 2012-07-25 14:38:58 -0700 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2012-07-26 13:42:57 -0700 |
commit | 705741827ab55e7d92c3eb74f332a5ddd24971b5 (patch) | |
tree | 1b8ca75c3355fb84cba4fddd0c7b4852be95d763 /config/kernel-get-gendisk.m4 | |
parent | fc88a6dda92a4fc00491a8afa24d144cc94063e4 (diff) |
When checking for symbol exports, try compiling.
This patch adds a new autoconf function: ZFS_LINUX_TRY_COMPILE_SYMBOL.
This new function does the following:
- Call LINUX_TRY_COMPILE with the specified parameters.
- If unsuccessful, return false.
- If successful and we're configuring with --enable-linux-builtin,
return true.
- Else, call CHECK_SYMBOL_EXPORT with the specified parameters and
return the result.
All calls to CHECK_SYMBOL_EXPORT are converted to
LINUX_TRY_COMPILE_SYMBOL so that the tests work even when configuring
for builtin on a kernel which doesn't have loadable module support, or
hasn't been built yet.
Signed-off-by: Brian Behlendorf <[email protected]>
Issue #851
Diffstat (limited to 'config/kernel-get-gendisk.m4')
-rw-r--r-- | config/kernel-get-gendisk.m4 | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/config/kernel-get-gendisk.m4 b/config/kernel-get-gendisk.m4 index 8cd725f0e..b0913770e 100644 --- a/config/kernel-get-gendisk.m4 +++ b/config/kernel-get-gendisk.m4 @@ -1,11 +1,17 @@ dnl # dnl # 2.6.34 API change -dnl # Verify the get_gendisk() symbol is exported. +dnl # Verify the get_gendisk() symbol is available. dnl # -AC_DEFUN([ZFS_AC_KERNEL_GET_GENDISK], [ - ZFS_CHECK_SYMBOL_EXPORT( - [get_gendisk], - [block/genhd.c], - [AC_DEFINE(HAVE_GET_GENDISK, 1, [get_gendisk() is available])], - []) +AC_DEFUN([ZFS_AC_KERNEL_GET_GENDISK], + [AC_MSG_CHECKING([whether get_gendisk() is available]) + ZFS_LINUX_TRY_COMPILE_SYMBOL([ + #include <linux/genhd.h> + ], [ + get_gendisk(0, NULL); + ], [get_gendisk], [block/genhd.c], [ + AC_MSG_RESULT(yes) + AC_DEFINE(HAVE_GET_GENDISK, 1, [get_gendisk() is available]) + ], [ + AC_MSG_RESULT(no) + ]) ]) |