2008-06-02 21:28:49 +04:00
|
|
|
AC_DEFUN([SPL_AC_KERNEL], [
|
|
|
|
AC_ARG_WITH([linux],
|
|
|
|
AS_HELP_STRING([--with-linux=PATH],
|
|
|
|
[Path to kernel source]),
|
|
|
|
[kernelsrc="$withval"; kernelbuild="$withval"])
|
|
|
|
|
|
|
|
AC_ARG_WITH([linux-obj],
|
|
|
|
AS_HELP_STRING([--with-linux-obj=PATH],
|
|
|
|
[Path to kernel build objects]),
|
|
|
|
[kernelbuild="$withval"])
|
|
|
|
|
|
|
|
AC_MSG_CHECKING([kernel source directory])
|
|
|
|
if test -z "$kernelsrc"; then
|
|
|
|
kernelbuild=
|
2009-03-10 02:50:37 +03:00
|
|
|
sourcelink=`ls -1d /usr/src/kernels/* /usr/src/linux-* 2>/dev/null | tail -1`
|
2008-06-02 21:28:49 +04:00
|
|
|
|
2009-03-10 02:50:37 +03:00
|
|
|
if test -e ${sourcelink}; then
|
|
|
|
kernelsrc=`readlink -f ${sourcelink}`
|
|
|
|
kernelbuild=${kernelsrc}
|
|
|
|
else
|
2008-06-02 21:28:49 +04:00
|
|
|
AC_MSG_RESULT([Not found])
|
|
|
|
AC_MSG_ERROR([
|
|
|
|
*** Please specify the location of the kernel source
|
2008-11-14 00:43:30 +03:00
|
|
|
*** with the '--with-linux=PATH' option])
|
2008-06-02 21:28:49 +04:00
|
|
|
fi
|
2009-03-05 20:08:07 +03:00
|
|
|
else
|
|
|
|
if test "$kernelsrc" = "NONE"; then
|
|
|
|
kernsrcver=NONE
|
|
|
|
fi
|
2008-06-02 21:28:49 +04:00
|
|
|
fi
|
|
|
|
|
|
|
|
AC_MSG_RESULT([$kernelsrc])
|
|
|
|
AC_MSG_CHECKING([kernel build directory])
|
|
|
|
AC_MSG_RESULT([$kernelbuild])
|
|
|
|
|
|
|
|
AC_MSG_CHECKING([kernel source version])
|
|
|
|
if test -r $kernelbuild/include/linux/version.h &&
|
|
|
|
fgrep -q UTS_RELEASE $kernelbuild/include/linux/version.h; then
|
|
|
|
|
|
|
|
kernsrcver=`(echo "#include <linux/version.h>";
|
|
|
|
echo "kernsrcver=UTS_RELEASE") |
|
2009-03-10 02:50:37 +03:00
|
|
|
cpp -I $kernelbuild/include |
|
2008-06-02 21:28:49 +04:00
|
|
|
grep "^kernsrcver=" | cut -d \" -f 2`
|
|
|
|
|
|
|
|
elif test -r $kernelbuild/include/linux/utsrelease.h &&
|
|
|
|
fgrep -q UTS_RELEASE $kernelbuild/include/linux/utsrelease.h; then
|
|
|
|
|
|
|
|
kernsrcver=`(echo "#include <linux/utsrelease.h>";
|
|
|
|
echo "kernsrcver=UTS_RELEASE") |
|
2009-03-10 02:50:37 +03:00
|
|
|
cpp -I $kernelbuild/include |
|
2008-06-02 21:28:49 +04:00
|
|
|
grep "^kernsrcver=" | cut -d \" -f 2`
|
|
|
|
fi
|
|
|
|
|
|
|
|
if test -z "$kernsrcver"; then
|
|
|
|
AC_MSG_RESULT([Not found])
|
|
|
|
AC_MSG_ERROR([
|
|
|
|
*** Cannot determine the version of the linux kernel source.
|
|
|
|
*** Please prepare the kernel before running this script])
|
|
|
|
fi
|
|
|
|
|
|
|
|
AC_MSG_RESULT([$kernsrcver])
|
|
|
|
|
|
|
|
LINUX=${kernelsrc}
|
|
|
|
LINUX_OBJ=${kernelbuild}
|
2009-03-05 20:08:07 +03:00
|
|
|
LINUX_VERSION=${kernsrcver}
|
|
|
|
|
|
|
|
abs_srcdir=`readlink -f ${srcdir}`
|
|
|
|
kerninclude="-I${abs_srcdir} -I${abs_srcdir}/include"
|
|
|
|
kernwarn="-Wstrict-prototypes -Werror"
|
|
|
|
|
|
|
|
if test "${LINUX_OBJ}" != "${LINUX}"; then
|
|
|
|
kernobjs="O=$kernelbuild"
|
|
|
|
fi
|
|
|
|
|
|
|
|
KERNELCFLAGS=
|
|
|
|
KERNELCPPFLAGS="${kerninclude} ${kernwarn}"
|
|
|
|
KERNELMAKE_PARAMS="${kernobjs}"
|
2008-06-02 21:28:49 +04:00
|
|
|
|
|
|
|
AC_SUBST(LINUX)
|
|
|
|
AC_SUBST(LINUX_OBJ)
|
2009-03-05 20:08:07 +03:00
|
|
|
AC_SUBST(LINUX_VERSION)
|
|
|
|
AC_SUBST(KERNELMAKE_PARAMS)
|
|
|
|
AC_SUBST(KERNELCPPFLAGS)
|
|
|
|
AC_SUBST(KERNELCFLAGS)
|
2008-06-02 21:28:49 +04:00
|
|
|
])
|
|
|
|
|
2008-11-14 00:43:30 +03:00
|
|
|
AC_DEFUN([SPL_AC_LICENSE], [
|
|
|
|
AC_MSG_CHECKING([license])
|
|
|
|
AC_MSG_RESULT([GPL])
|
|
|
|
KERNELCPPFLAGS="${KERNELCPPFLAGS} -DHAVE_GPL_ONLY_SYMBOLS"
|
|
|
|
])
|
|
|
|
|
2008-06-02 21:28:49 +04:00
|
|
|
AC_DEFUN([SPL_AC_DEBUG], [
|
|
|
|
AC_MSG_CHECKING([whether debugging is enabled])
|
|
|
|
AC_ARG_ENABLE( [debug],
|
|
|
|
AS_HELP_STRING([--enable-debug],
|
|
|
|
[Enable generic debug support (default off)]),
|
|
|
|
[ case "$enableval" in
|
|
|
|
yes) spl_ac_debug=yes ;;
|
2008-06-05 01:09:25 +04:00
|
|
|
no) spl_ac_debug=no ;;
|
2008-06-02 21:28:49 +04:00
|
|
|
*) AC_MSG_RESULT([Error!])
|
|
|
|
AC_MSG_ERROR([Bad value "$enableval" for --enable-debug]) ;;
|
|
|
|
esac ]
|
|
|
|
)
|
|
|
|
if test "$spl_ac_debug" = yes; then
|
2008-06-05 01:09:25 +04:00
|
|
|
AC_MSG_RESULT([yes])
|
2008-06-02 21:28:49 +04:00
|
|
|
KERNELCPPFLAGS="${KERNELCPPFLAGS} -DDEBUG"
|
|
|
|
else
|
2008-06-05 01:09:25 +04:00
|
|
|
AC_MSG_RESULT([no])
|
|
|
|
KERNELCPPFLAGS="${KERNELCPPFLAGS} -DNDEBUG"
|
2008-06-02 21:28:49 +04:00
|
|
|
fi
|
|
|
|
])
|
|
|
|
|
|
|
|
AC_DEFUN([SPL_AC_DEBUG_KMEM], [
|
|
|
|
AC_MSG_CHECKING([whether kmem debugging is enabled])
|
|
|
|
AC_ARG_ENABLE( [debug-kmem],
|
|
|
|
AS_HELP_STRING([--enable-debug-kmem],
|
|
|
|
[Enable kmem debug support (default off)]),
|
|
|
|
[ case "$enableval" in
|
2008-06-05 01:09:25 +04:00
|
|
|
yes) spl_ac_debug_kmem=yes ;;
|
|
|
|
no) spl_ac_debug_kmem=no ;;
|
2008-06-02 21:28:49 +04:00
|
|
|
*) AC_MSG_RESULT([Error!])
|
|
|
|
AC_MSG_ERROR([Bad value "$enableval" for --enable-debug-kmem]) ;;
|
|
|
|
esac ]
|
|
|
|
)
|
2008-06-05 01:09:25 +04:00
|
|
|
if test "$spl_ac_debug_kmem" = yes; then
|
|
|
|
AC_MSG_RESULT([yes])
|
2008-06-02 21:28:49 +04:00
|
|
|
AC_DEFINE([DEBUG_KMEM], [1],
|
|
|
|
[Define to 1 to enable kmem debugging])
|
2008-06-05 01:09:25 +04:00
|
|
|
KERNELCPPFLAGS="${KERNELCPPFLAGS} -DDEBUG_KMEM"
|
|
|
|
else
|
|
|
|
AC_MSG_RESULT([no])
|
2008-06-02 21:28:49 +04:00
|
|
|
fi
|
|
|
|
])
|
|
|
|
|
|
|
|
AC_DEFUN([SPL_AC_DEBUG_MUTEX], [
|
|
|
|
AC_MSG_CHECKING([whether mutex debugging is enabled])
|
|
|
|
AC_ARG_ENABLE( [debug-mutex],
|
|
|
|
AS_HELP_STRING([--enable-debug-mutex],
|
|
|
|
[Enable mutex debug support (default off)]),
|
|
|
|
[ case "$enableval" in
|
2008-06-05 01:09:25 +04:00
|
|
|
yes) spl_ac_debug_mutex=yes ;;
|
|
|
|
no) spl_ac_debug_mutex=no ;;
|
2008-06-02 21:28:49 +04:00
|
|
|
*) AC_MSG_RESULT([Error!])
|
|
|
|
AC_MSG_ERROR([Bad value "$enableval" for --enable-debug-mutex]) ;;
|
|
|
|
esac ]
|
|
|
|
)
|
2008-06-05 01:09:25 +04:00
|
|
|
if test "$spl_ac_debug_mutex" = yes; then
|
|
|
|
AC_MSG_RESULT([yes])
|
2008-06-02 21:28:49 +04:00
|
|
|
AC_DEFINE([DEBUG_MUTEX], [1],
|
|
|
|
[Define to 1 to enable mutex debugging])
|
2008-06-05 01:09:25 +04:00
|
|
|
KERNELCPPFLAGS="${KERNELCPPFLAGS} -DDEBUG_MUTEX"
|
|
|
|
else
|
|
|
|
AC_MSG_RESULT([no])
|
2008-06-02 21:28:49 +04:00
|
|
|
fi
|
|
|
|
])
|
|
|
|
|
|
|
|
AC_DEFUN([SPL_AC_DEBUG_KSTAT], [
|
|
|
|
AC_MSG_CHECKING([whether kstat debugging is enabled])
|
|
|
|
AC_ARG_ENABLE( [debug-kstat],
|
|
|
|
AS_HELP_STRING([--enable-debug-kstat],
|
|
|
|
[Enable kstat debug support (default off)]),
|
|
|
|
[ case "$enableval" in
|
2008-06-05 01:09:25 +04:00
|
|
|
yes) spl_ac_debug_kstat=yes ;;
|
|
|
|
no) spl_ac_debug_kstat=no ;;
|
2008-06-02 21:28:49 +04:00
|
|
|
*) AC_MSG_RESULT([Error!])
|
|
|
|
AC_MSG_ERROR([Bad value "$enableval" for --enable-debug-kstat]) ;;
|
|
|
|
esac ]
|
|
|
|
)
|
2008-06-05 01:09:25 +04:00
|
|
|
if test "$spl_ac_debug_kstat" = yes; then
|
|
|
|
AC_MSG_RESULT([yes])
|
2008-06-02 21:28:49 +04:00
|
|
|
AC_DEFINE([DEBUG_KSTAT], [1],
|
|
|
|
[Define to 1 to enable kstat debugging])
|
2008-06-05 01:09:25 +04:00
|
|
|
KERNELCPPFLAGS="${KERNELCPPFLAGS} -DDEBUG_KSTAT"
|
|
|
|
else
|
|
|
|
AC_MSG_RESULT([no])
|
2008-06-02 21:28:49 +04:00
|
|
|
fi
|
|
|
|
])
|
|
|
|
|
|
|
|
AC_DEFUN([SPL_AC_DEBUG_CALLB], [
|
|
|
|
AC_MSG_CHECKING([whether callb debugging is enabled])
|
|
|
|
AC_ARG_ENABLE( [debug-callb],
|
|
|
|
AS_HELP_STRING([--enable-debug-callb],
|
|
|
|
[Enable callb debug support (default off)]),
|
|
|
|
[ case "$enableval" in
|
2008-06-05 01:09:25 +04:00
|
|
|
yes) spl_ac_debug_callb=yes ;;
|
|
|
|
no) spl_ac_debug_callb=no ;;
|
2008-06-02 21:28:49 +04:00
|
|
|
*) AC_MSG_RESULT([Error!])
|
|
|
|
AC_MSG_ERROR([Bad value "$enableval" for --enable-debug-callb]) ;;
|
|
|
|
esac ]
|
|
|
|
)
|
2008-06-05 01:09:25 +04:00
|
|
|
if test "$spl_ac_debug_callb" = yes; then
|
|
|
|
AC_MSG_RESULT([yes])
|
2008-06-02 21:28:49 +04:00
|
|
|
AC_DEFINE([DEBUG_CALLB], [1],
|
|
|
|
[Define to 1 to enable callb debugging])
|
2008-06-05 01:09:25 +04:00
|
|
|
KERNELCPPFLAGS="${KERNELCPPFLAGS} -DDEBUG_CALLB"
|
|
|
|
else
|
|
|
|
AC_MSG_RESULT([no])
|
2008-06-02 21:28:49 +04:00
|
|
|
fi
|
|
|
|
])
|
|
|
|
|
|
|
|
dnl #
|
|
|
|
dnl # SPL_LINUX_CONFTEST
|
|
|
|
dnl #
|
|
|
|
AC_DEFUN([SPL_LINUX_CONFTEST], [
|
|
|
|
cat >conftest.c <<_ACEOF
|
|
|
|
$1
|
|
|
|
_ACEOF
|
|
|
|
])
|
|
|
|
|
|
|
|
dnl #
|
|
|
|
dnl # SPL_LANG_PROGRAM(C)([PROLOGUE], [BODY])
|
|
|
|
dnl #
|
|
|
|
m4_define([SPL_LANG_PROGRAM], [
|
|
|
|
$1
|
|
|
|
int
|
|
|
|
main (void)
|
|
|
|
{
|
|
|
|
dnl Do *not* indent the following line: there may be CPP directives.
|
|
|
|
dnl Don't move the `;' right after for the same reason.
|
|
|
|
$2
|
|
|
|
;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
])
|
|
|
|
|
|
|
|
dnl #
|
|
|
|
dnl # SPL_LINUX_COMPILE_IFELSE / like AC_COMPILE_IFELSE
|
|
|
|
dnl #
|
|
|
|
AC_DEFUN([SPL_LINUX_COMPILE_IFELSE], [
|
2009-03-05 20:08:07 +03:00
|
|
|
m4_ifvaln([$1], [SPL_LINUX_CONFTEST([$1])])
|
|
|
|
rm -Rf build && mkdir -p build
|
|
|
|
echo "obj-m := conftest.o" >build/Makefile
|
|
|
|
AS_IF(
|
|
|
|
[AC_TRY_COMMAND(cp conftest.c build && make [$2] CC="$CC" LINUXINCLUDE="-Iinclude -Iinclude2 -I$LINUX/include -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM M=$PWD/build) >/dev/null && AC_TRY_COMMAND([$3])],
|
|
|
|
[$4],
|
|
|
|
[_AC_MSG_LOG_CONFTEST m4_ifvaln([$5],[$5])]
|
|
|
|
)
|
|
|
|
rm -Rf build
|
2008-06-02 21:28:49 +04:00
|
|
|
])
|
|
|
|
|
|
|
|
dnl #
|
|
|
|
dnl # SPL_LINUX_TRY_COMPILE like AC_TRY_COMPILE
|
|
|
|
dnl #
|
|
|
|
AC_DEFUN([SPL_LINUX_TRY_COMPILE],
|
|
|
|
[SPL_LINUX_COMPILE_IFELSE(
|
2008-11-03 22:53:23 +03:00
|
|
|
[AC_LANG_SOURCE([SPL_LANG_PROGRAM([[$1]], [[$2]])])],
|
|
|
|
[modules],
|
|
|
|
[test -s build/conftest.o],
|
|
|
|
[$3], [$4])
|
2008-06-02 21:28:49 +04:00
|
|
|
])
|
|
|
|
|
|
|
|
dnl #
|
|
|
|
dnl # SPL_LINUX_CONFIG
|
|
|
|
dnl #
|
|
|
|
AC_DEFUN([SPL_LINUX_CONFIG],
|
|
|
|
[AC_MSG_CHECKING([whether Linux was built with CONFIG_$1])
|
|
|
|
SPL_LINUX_TRY_COMPILE([
|
|
|
|
#ifndef AUTOCONF_INCLUDED
|
|
|
|
#include <linux/config.h>
|
|
|
|
#endif
|
|
|
|
],[
|
|
|
|
#ifndef CONFIG_$1
|
|
|
|
#error CONFIG_$1 not #defined
|
|
|
|
#endif
|
|
|
|
],[
|
|
|
|
AC_MSG_RESULT([yes])
|
|
|
|
$2
|
|
|
|
],[
|
|
|
|
AC_MSG_RESULT([no])
|
|
|
|
$3
|
|
|
|
])
|
|
|
|
])
|
|
|
|
|
|
|
|
dnl #
|
|
|
|
dnl # SPL_CHECK_SYMBOL_EXPORT
|
|
|
|
dnl # check symbol exported or not
|
|
|
|
dnl #
|
|
|
|
AC_DEFUN([SPL_CHECK_SYMBOL_EXPORT],
|
|
|
|
[AC_MSG_CHECKING([whether symbol $1 is exported])
|
2009-02-26 00:20:40 +03:00
|
|
|
grep -q -E '[[[:space:]]]$1[[[:space:]]]' $LINUX_OBJ/Module.symvers 2>/dev/null
|
2008-06-02 21:28:49 +04:00
|
|
|
rc=$?
|
|
|
|
if test $rc -ne 0; then
|
|
|
|
export=0
|
|
|
|
for file in $2; do
|
2009-02-26 00:20:40 +03:00
|
|
|
grep -q -E "EXPORT_SYMBOL.*($1)" "$LINUX_OBJ/$file" 2>/dev/null
|
2008-06-02 21:28:49 +04:00
|
|
|
rc=$?
|
|
|
|
if test $rc -eq 0; then
|
|
|
|
export=1
|
|
|
|
break;
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
if test $export -eq 0; then
|
|
|
|
AC_MSG_RESULT([no])
|
|
|
|
$4
|
|
|
|
else
|
|
|
|
AC_MSG_RESULT([yes])
|
|
|
|
$3
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
AC_MSG_RESULT([yes])
|
|
|
|
$3
|
|
|
|
fi
|
|
|
|
])
|
|
|
|
|
2008-08-11 21:56:40 +04:00
|
|
|
dnl #
|
|
|
|
dnl # SPL_CHECK_HEADER
|
|
|
|
dnl # check whether header exists and define HAVE_$2_HEADER
|
|
|
|
dnl #
|
|
|
|
AC_DEFUN([SPL_CHECK_HEADER],
|
|
|
|
[AC_MSG_CHECKING([whether header $1 exists])
|
|
|
|
SPL_LINUX_TRY_COMPILE([
|
2008-11-03 22:53:23 +03:00
|
|
|
#include <$1>
|
2008-08-11 21:56:40 +04:00
|
|
|
],[
|
|
|
|
return 0;
|
|
|
|
],[
|
|
|
|
AC_DEFINE(HAVE_$2_HEADER, 1, [$1 exists])
|
|
|
|
AC_MSG_RESULT(yes)
|
|
|
|
$3
|
|
|
|
],[
|
|
|
|
AC_MSG_RESULT(no)
|
|
|
|
$4
|
|
|
|
])
|
|
|
|
])
|
2008-08-11 21:20:11 +04:00
|
|
|
|
2008-06-02 21:28:49 +04:00
|
|
|
dnl #
|
2008-08-12 02:13:47 +04:00
|
|
|
dnl # 2.6.24 API change,
|
2008-06-02 21:28:49 +04:00
|
|
|
dnl # check if uintptr_t typedef is defined
|
|
|
|
dnl #
|
|
|
|
AC_DEFUN([SPL_AC_TYPE_UINTPTR_T],
|
|
|
|
[AC_MSG_CHECKING([whether kernel defines uintptr_t])
|
|
|
|
SPL_LINUX_TRY_COMPILE([
|
2008-11-03 22:53:23 +03:00
|
|
|
#include <linux/types.h>
|
2008-06-02 21:28:49 +04:00
|
|
|
],[
|
2008-11-03 22:53:23 +03:00
|
|
|
uintptr_t *ptr;
|
2008-06-02 21:28:49 +04:00
|
|
|
],[
|
2008-11-03 22:53:23 +03:00
|
|
|
AC_MSG_RESULT([yes])
|
|
|
|
AC_DEFINE(HAVE_UINTPTR_T, 1,
|
2008-06-02 21:28:49 +04:00
|
|
|
[kernel defines uintptr_t])
|
|
|
|
],[
|
2008-11-03 22:53:23 +03:00
|
|
|
AC_MSG_RESULT([no])
|
2008-06-02 21:28:49 +04:00
|
|
|
])
|
|
|
|
])
|
|
|
|
|
2008-11-04 00:06:04 +03:00
|
|
|
dnl #
|
|
|
|
dnl # 2.6.x API change,
|
|
|
|
dnl # check if atomic64_t typedef is defined
|
|
|
|
dnl #
|
|
|
|
AC_DEFUN([SPL_AC_TYPE_ATOMIC64_T],
|
|
|
|
[AC_MSG_CHECKING([whether kernel defines atomic64_t])
|
|
|
|
SPL_LINUX_TRY_COMPILE([
|
|
|
|
#include <asm/atomic.h>
|
|
|
|
],[
|
|
|
|
atomic64_t *ptr;
|
|
|
|
],[
|
|
|
|
AC_MSG_RESULT([yes])
|
|
|
|
AC_DEFINE(HAVE_ATOMIC64_T, 1,
|
|
|
|
[kernel defines atomic64_t])
|
|
|
|
],[
|
|
|
|
AC_MSG_RESULT([no])
|
|
|
|
])
|
|
|
|
])
|
|
|
|
|
2008-06-02 21:28:49 +04:00
|
|
|
dnl #
|
2008-08-12 02:13:47 +04:00
|
|
|
dnl # 2.6.20 API change,
|
2008-06-02 21:28:49 +04:00
|
|
|
dnl # INIT_WORK use 2 args and not store data inside
|
|
|
|
dnl #
|
|
|
|
AC_DEFUN([SPL_AC_3ARGS_INIT_WORK],
|
|
|
|
[AC_MSG_CHECKING([whether INIT_WORK wants 3 args])
|
|
|
|
SPL_LINUX_TRY_COMPILE([
|
2008-11-03 22:53:23 +03:00
|
|
|
#include <linux/workqueue.h>
|
2008-06-02 21:28:49 +04:00
|
|
|
],[
|
2008-11-03 22:53:23 +03:00
|
|
|
struct work_struct work;
|
|
|
|
INIT_WORK(&work, NULL, NULL);
|
2008-06-02 21:28:49 +04:00
|
|
|
],[
|
2008-11-03 22:53:23 +03:00
|
|
|
AC_MSG_RESULT(yes)
|
|
|
|
AC_DEFINE(HAVE_3ARGS_INIT_WORK, 1,
|
|
|
|
[INIT_WORK wants 3 args])
|
2008-06-02 21:28:49 +04:00
|
|
|
],[
|
2008-11-03 22:53:23 +03:00
|
|
|
AC_MSG_RESULT(no)
|
2008-06-02 21:28:49 +04:00
|
|
|
])
|
|
|
|
])
|
|
|
|
|
|
|
|
dnl #
|
2008-08-12 02:13:47 +04:00
|
|
|
dnl # 2.6.21 API change,
|
2008-06-02 21:28:49 +04:00
|
|
|
dnl # 'register_sysctl_table' use only one argument instead of two
|
|
|
|
dnl #
|
|
|
|
AC_DEFUN([SPL_AC_2ARGS_REGISTER_SYSCTL],
|
|
|
|
[AC_MSG_CHECKING([whether register_sysctl_table() wants 2 args])
|
|
|
|
SPL_LINUX_TRY_COMPILE([
|
2008-11-03 22:53:23 +03:00
|
|
|
#include <linux/sysctl.h>
|
2008-06-02 21:28:49 +04:00
|
|
|
],[
|
2008-11-03 22:53:23 +03:00
|
|
|
return register_sysctl_table(NULL,0);
|
2008-06-02 21:28:49 +04:00
|
|
|
],[
|
2008-11-03 22:53:23 +03:00
|
|
|
AC_MSG_RESULT(yes)
|
|
|
|
AC_DEFINE(HAVE_2ARGS_REGISTER_SYSCTL, 1,
|
|
|
|
[register_sysctl_table() wants 2 args])
|
2008-06-02 21:28:49 +04:00
|
|
|
],[
|
2008-11-03 22:53:23 +03:00
|
|
|
AC_MSG_RESULT(no)
|
2008-06-02 21:28:49 +04:00
|
|
|
])
|
|
|
|
])
|
|
|
|
|
|
|
|
dnl #
|
2008-08-12 02:13:47 +04:00
|
|
|
dnl # 2.6.23 API change
|
2008-06-02 21:28:49 +04:00
|
|
|
dnl # Old set_shrinker API replaced with register_shrinker
|
|
|
|
dnl #
|
|
|
|
AC_DEFUN([SPL_AC_SET_SHRINKER], [
|
|
|
|
AC_MSG_CHECKING([whether set_shrinker() available])
|
|
|
|
SPL_LINUX_TRY_COMPILE([
|
|
|
|
#include <linux/mm.h>
|
|
|
|
],[
|
|
|
|
return set_shrinker(DEFAULT_SEEKS, NULL);
|
|
|
|
],[
|
|
|
|
AC_MSG_RESULT([yes])
|
|
|
|
AC_DEFINE(HAVE_SET_SHRINKER, 1,
|
|
|
|
[set_shrinker() available])
|
|
|
|
],[
|
|
|
|
AC_MSG_RESULT([no])
|
|
|
|
])
|
|
|
|
])
|
|
|
|
|
|
|
|
dnl #
|
2008-08-12 02:13:47 +04:00
|
|
|
dnl # 2.6.25 API change,
|
2008-06-02 21:28:49 +04:00
|
|
|
dnl # struct path entry added to struct nameidata
|
|
|
|
dnl #
|
|
|
|
AC_DEFUN([SPL_AC_PATH_IN_NAMEIDATA],
|
|
|
|
[AC_MSG_CHECKING([whether struct path used in struct nameidata])
|
|
|
|
SPL_LINUX_TRY_COMPILE([
|
2008-11-03 22:53:23 +03:00
|
|
|
#include <linux/namei.h>
|
2008-06-02 21:28:49 +04:00
|
|
|
],[
|
2008-11-03 22:53:23 +03:00
|
|
|
struct nameidata nd;
|
2008-06-02 21:28:49 +04:00
|
|
|
|
|
|
|
nd.path.mnt = NULL;
|
|
|
|
nd.path.dentry = NULL;
|
|
|
|
],[
|
2008-11-03 22:53:23 +03:00
|
|
|
AC_MSG_RESULT(yes)
|
|
|
|
AC_DEFINE(HAVE_PATH_IN_NAMEIDATA, 1,
|
|
|
|
[struct path used in struct nameidata])
|
2008-06-02 21:28:49 +04:00
|
|
|
],[
|
2008-11-03 22:53:23 +03:00
|
|
|
AC_MSG_RESULT(no)
|
2008-06-02 21:28:49 +04:00
|
|
|
])
|
|
|
|
])
|
|
|
|
|
|
|
|
dnl #
|
|
|
|
dnl # Custom SPL patch may export this system it is not required
|
|
|
|
dnl #
|
|
|
|
AC_DEFUN([SPL_AC_TASK_CURR], [
|
|
|
|
SPL_CHECK_SYMBOL_EXPORT([task_curr], [kernel/sched.c],
|
|
|
|
[AC_DEFINE(HAVE_TASK_CURR, 1, [task_curr() exported])],
|
|
|
|
[])
|
|
|
|
])
|
|
|
|
|
|
|
|
dnl #
|
2008-08-12 02:13:47 +04:00
|
|
|
dnl # 2.6.19 API change,
|
2008-06-02 21:28:49 +04:00
|
|
|
dnl # Use CTL_UNNUMBERED when binary sysctl is not required
|
|
|
|
dnl #
|
|
|
|
AC_DEFUN([SPL_AC_CTL_UNNUMBERED],
|
|
|
|
[AC_MSG_CHECKING([whether unnumbered sysctl support exists])
|
|
|
|
SPL_LINUX_TRY_COMPILE([
|
2008-11-03 22:53:23 +03:00
|
|
|
#include <linux/sysctl.h>
|
2008-06-02 21:28:49 +04:00
|
|
|
],[
|
|
|
|
#ifndef CTL_UNNUMBERED
|
|
|
|
#error CTL_UNNUMBERED undefined
|
|
|
|
#endif
|
|
|
|
],[
|
2008-11-03 22:53:23 +03:00
|
|
|
AC_MSG_RESULT(yes)
|
|
|
|
AC_DEFINE(HAVE_CTL_UNNUMBERED, 1,
|
|
|
|
[unnumbered sysctl support exists])
|
2008-06-02 21:28:49 +04:00
|
|
|
],[
|
2008-11-03 22:53:23 +03:00
|
|
|
AC_MSG_RESULT(no)
|
2008-06-02 21:28:49 +04:00
|
|
|
])
|
|
|
|
])
|
2008-08-06 08:52:39 +04:00
|
|
|
|
|
|
|
dnl #
|
|
|
|
dnl # 2.6.16 API change.
|
|
|
|
dnl # Check if 'fls64()' is available
|
|
|
|
dnl #
|
|
|
|
AC_DEFUN([SPL_AC_FLS64],
|
2008-08-11 21:20:11 +04:00
|
|
|
[AC_MSG_CHECKING([whether fls64() is available])
|
|
|
|
SPL_LINUX_TRY_COMPILE([
|
|
|
|
#include <linux/bitops.h>
|
|
|
|
],[
|
|
|
|
return fls64(0);
|
|
|
|
],[
|
|
|
|
AC_MSG_RESULT(yes)
|
|
|
|
AC_DEFINE(HAVE_FLS64, 1, [fls64() is available])
|
|
|
|
],[
|
|
|
|
AC_MSG_RESULT(no)
|
|
|
|
])
|
2008-08-06 08:52:39 +04:00
|
|
|
])
|
2008-08-10 07:50:36 +04:00
|
|
|
|
|
|
|
dnl #
|
|
|
|
dnl # 2.6.18 API change, check whether device_create() is available.
|
|
|
|
dnl # Device_create() was introduced in 2.6.18 and depricated
|
|
|
|
dnl # class_device_create() which was fully removed in 2.6.26.
|
|
|
|
dnl #
|
|
|
|
AC_DEFUN([SPL_AC_DEVICE_CREATE], [
|
|
|
|
SPL_CHECK_SYMBOL_EXPORT(
|
|
|
|
[device_create],
|
|
|
|
[drivers/base/core.c],
|
|
|
|
[AC_DEFINE(HAVE_DEVICE_CREATE, 1,
|
|
|
|
[device_create() is available])],
|
2008-08-11 21:20:11 +04:00
|
|
|
[])
|
2008-08-10 07:50:36 +04:00
|
|
|
])
|
|
|
|
|
2009-03-13 23:38:43 +03:00
|
|
|
dnl #
|
|
|
|
dnl # 2.6.27 API change,
|
|
|
|
dnl # device_create() uses 5 args, new 'drvdata' argument.
|
|
|
|
dnl #
|
|
|
|
AC_DEFUN([SPL_AC_5ARGS_DEVICE_CREATE], [
|
|
|
|
AC_MSG_CHECKING([whether device_create() wants 5 args])
|
|
|
|
tmp_flags="$EXTRA_KCFLAGS"
|
|
|
|
EXTRA_KCFLAGS="-Werror"
|
|
|
|
SPL_LINUX_TRY_COMPILE([
|
|
|
|
#include <linux/device.h>
|
|
|
|
],[
|
|
|
|
device_create(NULL, NULL, 0, NULL, "%d", 1);
|
|
|
|
],[
|
|
|
|
AC_MSG_RESULT(yes)
|
|
|
|
AC_DEFINE(HAVE_5ARGS_DEVICE_CREATE, 1,
|
|
|
|
[device_create wants 5 args])
|
|
|
|
],[
|
|
|
|
AC_MSG_RESULT(no)
|
|
|
|
])
|
|
|
|
EXTRA_KCFLAGS="$tmp_flags"
|
|
|
|
])
|
|
|
|
|
2008-08-10 07:50:36 +04:00
|
|
|
dnl #
|
|
|
|
dnl # 2.6.13 API change, check whether class_device_create() is available.
|
|
|
|
dnl # Class_device_create() was introduced in 2.6.13 and depricated
|
|
|
|
dnl # class_simple_device_add() which was fully removed in 2.6.13.
|
|
|
|
dnl #
|
|
|
|
AC_DEFUN([SPL_AC_CLASS_DEVICE_CREATE], [
|
|
|
|
SPL_CHECK_SYMBOL_EXPORT(
|
|
|
|
[class_device_create],
|
|
|
|
[drivers/base/class.c],
|
|
|
|
[AC_DEFINE(HAVE_CLASS_DEVICE_CREATE, 1,
|
|
|
|
[class_device_create() is available])],
|
2008-08-11 21:20:11 +04:00
|
|
|
[])
|
2008-08-10 07:50:36 +04:00
|
|
|
])
|
2008-08-11 21:20:11 +04:00
|
|
|
|
|
|
|
dnl #
|
|
|
|
dnl # 2.6.26 API change, set_normalized_timespec() is exported.
|
|
|
|
dnl #
|
|
|
|
AC_DEFUN([SPL_AC_SET_NORMALIZED_TIMESPEC_EXPORT], [
|
|
|
|
SPL_CHECK_SYMBOL_EXPORT(
|
|
|
|
[set_normalized_timespec],
|
|
|
|
[kernel/time.c],
|
|
|
|
[AC_DEFINE(HAVE_SET_NORMALIZED_TIMESPEC_EXPORT, 1,
|
|
|
|
[set_normalized_timespec() is available as export])],
|
|
|
|
[])
|
|
|
|
])
|
|
|
|
|
|
|
|
dnl #
|
|
|
|
dnl # 2.6.16 API change, set_normalize_timespec() moved to time.c
|
|
|
|
dnl # previously it was available in time.h as an inline.
|
|
|
|
dnl #
|
2008-08-11 21:56:40 +04:00
|
|
|
AC_DEFUN([SPL_AC_SET_NORMALIZED_TIMESPEC_INLINE], [
|
|
|
|
AC_MSG_CHECKING([whether set_normalized_timespec() is an inline])
|
2008-08-11 21:20:11 +04:00
|
|
|
SPL_LINUX_TRY_COMPILE([
|
|
|
|
#include <linux/time.h>
|
|
|
|
void set_normalized_timespec(struct timespec *ts,
|
2008-08-12 03:47:44 +04:00
|
|
|
time_t sec, long nsec) { }
|
|
|
|
],
|
|
|
|
[],
|
|
|
|
[
|
2008-08-11 21:20:11 +04:00
|
|
|
AC_MSG_RESULT(no)
|
|
|
|
],[
|
|
|
|
AC_MSG_RESULT(yes)
|
|
|
|
AC_DEFINE(HAVE_SET_NORMALIZED_TIMESPEC_INLINE, 1,
|
|
|
|
[set_normalized_timespec() is available as inline])
|
|
|
|
])
|
|
|
|
])
|
|
|
|
|
|
|
|
dnl #
|
|
|
|
dnl # 2.6.18 API change,
|
|
|
|
dnl # timespec_sub() inline function available in linux/time.h
|
|
|
|
dnl #
|
2008-08-11 21:56:40 +04:00
|
|
|
AC_DEFUN([SPL_AC_TIMESPEC_SUB], [
|
|
|
|
AC_MSG_CHECKING([whether timespec_sub() is available])
|
2008-08-11 21:20:11 +04:00
|
|
|
SPL_LINUX_TRY_COMPILE([
|
|
|
|
#include <linux/time.h>
|
|
|
|
],[
|
|
|
|
struct timespec a, b, c = { 0 };
|
|
|
|
c = timespec_sub(a, b);
|
|
|
|
],[
|
|
|
|
AC_MSG_RESULT(yes)
|
|
|
|
AC_DEFINE(HAVE_TIMESPEC_SUB, 1, [timespec_sub() is available])
|
|
|
|
],[
|
|
|
|
AC_MSG_RESULT(no)
|
|
|
|
])
|
|
|
|
])
|
|
|
|
|
2008-08-11 21:56:40 +04:00
|
|
|
dnl #
|
2008-08-12 02:13:47 +04:00
|
|
|
dnl # 2.6.19 API change,
|
|
|
|
dnl # check if init_utsname() is available in linux/utsname.h
|
|
|
|
dnl #
|
|
|
|
AC_DEFUN([SPL_AC_INIT_UTSNAME], [
|
|
|
|
AC_MSG_CHECKING([whether init_utsname() is available])
|
|
|
|
SPL_LINUX_TRY_COMPILE([
|
|
|
|
#include <linux/utsname.h>
|
|
|
|
],[
|
|
|
|
struct new_utsname *a = init_utsname();
|
|
|
|
],[
|
|
|
|
AC_MSG_RESULT(yes)
|
|
|
|
AC_DEFINE(HAVE_INIT_UTSNAME, 1, [init_utsname() is available])
|
|
|
|
],[
|
|
|
|
AC_MSG_RESULT(no)
|
|
|
|
])
|
|
|
|
])
|
|
|
|
|
|
|
|
dnl #
|
|
|
|
dnl # 2.6.26 API change,
|
|
|
|
dnl # definition of struct fdtable relocated to linux/fdtable.h
|
2008-08-11 21:56:40 +04:00
|
|
|
dnl #
|
|
|
|
AC_DEFUN([SPL_AC_FDTABLE_HEADER], [
|
|
|
|
SPL_CHECK_HEADER([linux/fdtable.h], [FDTABLE], [], [])
|
|
|
|
])
|
2008-08-11 23:10:14 +04:00
|
|
|
|
|
|
|
dnl #
|
2008-08-12 02:13:47 +04:00
|
|
|
dnl # 2.6.14 API change,
|
|
|
|
dnl # check whether 'files_fdtable()' exists
|
|
|
|
dnl #
|
|
|
|
AC_DEFUN([SPL_AC_FILES_FDTABLE], [
|
|
|
|
AC_MSG_CHECKING([whether files_fdtable() is available])
|
|
|
|
SPL_LINUX_TRY_COMPILE([
|
|
|
|
#include <linux/sched.h>
|
|
|
|
#include <linux/file.h>
|
|
|
|
#ifdef HAVE_FDTABLE_HEADER
|
|
|
|
#include <linux/fdtable.h>
|
|
|
|
#endif
|
|
|
|
],[
|
|
|
|
struct files_struct *files = current->files;
|
|
|
|
struct fdtable *fdt = files_fdtable(files);
|
|
|
|
],[
|
|
|
|
AC_MSG_RESULT(yes)
|
|
|
|
AC_DEFINE(HAVE_FILES_FDTABLE, 1, [files_fdtable() is available])
|
|
|
|
],[
|
|
|
|
AC_MSG_RESULT(no)
|
|
|
|
])
|
|
|
|
])
|
|
|
|
|
|
|
|
dnl #
|
|
|
|
dnl # 2.6.18 API change,
|
|
|
|
dnl # added linux/uaccess.h
|
2008-08-11 23:10:14 +04:00
|
|
|
dnl #
|
|
|
|
AC_DEFUN([SPL_AC_UACCESS_HEADER], [
|
|
|
|
SPL_CHECK_HEADER([linux/uaccess.h], [UACCESS], [], [])
|
|
|
|
])
|
2008-08-12 02:13:47 +04:00
|
|
|
|
|
|
|
dnl #
|
|
|
|
dnl # 2.6.12 API change,
|
|
|
|
dnl # check whether 'kmalloc_node()' is available.
|
|
|
|
dnl #
|
|
|
|
AC_DEFUN([SPL_AC_KMALLOC_NODE], [
|
|
|
|
AC_MSG_CHECKING([whether kmalloc_node() is available])
|
|
|
|
SPL_LINUX_TRY_COMPILE([
|
|
|
|
#include <linux/slab.h>
|
|
|
|
],[
|
|
|
|
void *a = kmalloc_node(1, GFP_KERNEL, 0);
|
|
|
|
],[
|
|
|
|
AC_MSG_RESULT(yes)
|
|
|
|
AC_DEFINE(HAVE_KMALLOC_NODE, 1, [kmalloc_node() is available])
|
|
|
|
],[
|
|
|
|
AC_MSG_RESULT(no)
|
|
|
|
])
|
|
|
|
])
|
|
|
|
|
|
|
|
dnl #
|
|
|
|
dnl # 2.6.9 API change,
|
|
|
|
dnl # check whether 'monotonic_clock()' is available it may
|
|
|
|
dnl # be available for some archs but not others.
|
|
|
|
dnl #
|
|
|
|
AC_DEFUN([SPL_AC_MONOTONIC_CLOCK], [
|
|
|
|
SPL_CHECK_SYMBOL_EXPORT(
|
|
|
|
[monotonic_clock],
|
|
|
|
[],
|
|
|
|
[AC_DEFINE(HAVE_MONOTONIC_CLOCK, 1,
|
|
|
|
[monotonic_clock() is available])],
|
|
|
|
[])
|
|
|
|
])
|
|
|
|
|
|
|
|
dnl #
|
|
|
|
dnl # 2.6.16 API change,
|
|
|
|
dnl # check whether 'struct inode' has i_mutex
|
|
|
|
dnl #
|
|
|
|
AC_DEFUN([SPL_AC_INODE_I_MUTEX], [
|
|
|
|
AC_MSG_CHECKING([whether struct inode has i_mutex])
|
|
|
|
SPL_LINUX_TRY_COMPILE([
|
|
|
|
#include <linux/fs.h>
|
|
|
|
#include <linux/mutex.h>
|
|
|
|
],[
|
|
|
|
struct inode i;
|
|
|
|
mutex_init(&i.i_mutex);
|
|
|
|
],[
|
|
|
|
AC_MSG_RESULT(yes)
|
|
|
|
AC_DEFINE(HAVE_INODE_I_MUTEX, 1, [struct inode has i_mutex])
|
|
|
|
],[
|
|
|
|
AC_MSG_RESULT(no)
|
|
|
|
])
|
|
|
|
])
|
2008-08-12 02:42:04 +04:00
|
|
|
|
|
|
|
dnl #
|
|
|
|
dnl # 2.6.14 API change,
|
|
|
|
dnl # check whether 'div64_64()' is available
|
|
|
|
dnl #
|
|
|
|
AC_DEFUN([SPL_AC_DIV64_64], [
|
|
|
|
AC_MSG_CHECKING([whether div64_64() is available])
|
|
|
|
SPL_LINUX_TRY_COMPILE([
|
|
|
|
#include <asm/div64.h>
|
2008-11-03 23:34:17 +03:00
|
|
|
#include <linux/types.h>
|
2008-08-12 02:42:04 +04:00
|
|
|
],[
|
|
|
|
uint64_t i = div64_64(1ULL, 1ULL);
|
|
|
|
],[
|
|
|
|
AC_MSG_RESULT(yes)
|
|
|
|
AC_DEFINE(HAVE_DIV64_64, 1, [div64_64() is available])
|
|
|
|
],[
|
|
|
|
AC_MSG_RESULT(no)
|
|
|
|
])
|
|
|
|
])
|
2009-02-03 02:12:30 +03:00
|
|
|
|
|
|
|
dnl #
|
|
|
|
dnl # 2.6.27 API change,
|
|
|
|
dnl # on_each_cpu() uses 3 args, no 'retry' argument
|
|
|
|
dnl #
|
|
|
|
AC_DEFUN([SPL_AC_3ARGS_ON_EACH_CPU], [
|
|
|
|
AC_MSG_CHECKING([whether on_each_cpu() wants 3 args])
|
|
|
|
SPL_LINUX_TRY_COMPILE([
|
|
|
|
#include <linux/smp.h>
|
|
|
|
],[
|
|
|
|
on_each_cpu(NULL, NULL, 0);
|
|
|
|
],[
|
|
|
|
AC_MSG_RESULT(yes)
|
|
|
|
AC_DEFINE(HAVE_3ARGS_ON_EACH_CPU, 1,
|
|
|
|
[on_each_cpu wants 3 args])
|
|
|
|
],[
|
|
|
|
AC_MSG_RESULT(no)
|
|
|
|
])
|
|
|
|
])
|
2009-02-05 02:15:41 +03:00
|
|
|
|
|
|
|
dnl #
|
2009-02-26 00:20:40 +03:00
|
|
|
dnl # 2.6.18 API change,
|
|
|
|
dnl # kallsyms_lookup_name no longer exported
|
|
|
|
dnl #
|
|
|
|
AC_DEFUN([SPL_AC_KALLSYMS_LOOKUP_NAME], [
|
|
|
|
SPL_CHECK_SYMBOL_EXPORT(
|
|
|
|
[kallsyms_lookup_name],
|
|
|
|
[],
|
|
|
|
[AC_DEFINE(HAVE_KALLSYMS_LOOKUP_NAME, 1,
|
|
|
|
[kallsyms_lookup_name() is available])],
|
|
|
|
[])
|
|
|
|
])
|
|
|
|
|
|
|
|
dnl #
|
|
|
|
dnl # Symbol only available in custom kernels
|
|
|
|
dnl #
|
|
|
|
AC_DEFUN([SPL_AC_GET_VMALLOC_INFO], [
|
|
|
|
SPL_CHECK_SYMBOL_EXPORT(
|
|
|
|
[get_vmalloc_info],
|
|
|
|
[],
|
|
|
|
[AC_DEFINE(HAVE_GET_VMALLOC_INFO, 1,
|
|
|
|
[get_vmalloc_info() is available])],
|
|
|
|
[])
|
|
|
|
])
|
|
|
|
|
|
|
|
dnl #
|
|
|
|
dnl # Symbol only available in custom kernels
|
2009-02-05 02:15:41 +03:00
|
|
|
dnl #
|
|
|
|
AC_DEFUN([SPL_AC_FIRST_ONLINE_PGDAT], [
|
|
|
|
SPL_CHECK_SYMBOL_EXPORT(
|
|
|
|
[first_online_pgdat],
|
|
|
|
[],
|
|
|
|
[AC_DEFINE(HAVE_FIRST_ONLINE_PGDAT, 1,
|
|
|
|
[first_online_pgdat() is available])],
|
|
|
|
[])
|
|
|
|
])
|
|
|
|
|
|
|
|
dnl #
|
2009-02-26 00:20:40 +03:00
|
|
|
dnl # Symbol only available in custom kernels
|
2009-02-05 02:15:41 +03:00
|
|
|
dnl #
|
|
|
|
AC_DEFUN([SPL_AC_NEXT_ONLINE_PGDAT], [
|
|
|
|
SPL_CHECK_SYMBOL_EXPORT(
|
|
|
|
[next_online_pgdat],
|
|
|
|
[],
|
|
|
|
[AC_DEFINE(HAVE_NEXT_ONLINE_PGDAT, 1,
|
|
|
|
[next_online_pgdat() is available])],
|
|
|
|
[])
|
|
|
|
])
|
|
|
|
|
|
|
|
dnl #
|
2009-02-26 00:20:40 +03:00
|
|
|
dnl # Symbol only available in custom kernels
|
2009-02-05 02:15:41 +03:00
|
|
|
dnl #
|
|
|
|
AC_DEFUN([SPL_AC_NEXT_ZONE], [
|
|
|
|
SPL_CHECK_SYMBOL_EXPORT(
|
|
|
|
[next_zone],
|
|
|
|
[],
|
|
|
|
[AC_DEFINE(HAVE_NEXT_ZONE, 1,
|
|
|
|
[next_zone() is available])],
|
|
|
|
[])
|
|
|
|
])
|
2009-02-05 23:26:34 +03:00
|
|
|
|
|
|
|
dnl #
|
2009-02-26 00:20:40 +03:00
|
|
|
dnl # Symbol only available in custom kernels
|
2009-02-05 23:26:34 +03:00
|
|
|
dnl #
|
|
|
|
AC_DEFUN([SPL_AC_GET_ZONE_COUNTS], [
|
|
|
|
SPL_CHECK_SYMBOL_EXPORT(
|
|
|
|
[get_zone_counts],
|
|
|
|
[],
|
|
|
|
[AC_DEFINE(HAVE_GET_ZONE_COUNTS, 1,
|
|
|
|
[get_zone_counts() is available])],
|
|
|
|
[])
|
|
|
|
])
|