1 AC_DEFUN([LINUX_KERNEL_LINUX_SYSCALL_H],[
2 AC_MSG_CHECKING(for linux/syscall.h in kernel)
3 if test -f "${LINUX_KERNEL_PATH}/include/linux/syscall.h"; then
5 AC_MSG_RESULT($ac_linux_syscall)
8 AC_MSG_RESULT($ac_linux_syscall)
12 AC_DEFUN([LINUX_NEED_RHCONFIG],[
15 if test "x$enable_redhat_buildsys" = "xyes"; then
16 AC_MSG_WARN(Configured to build from a Red Hat SPEC file)
18 AC_MSG_CHECKING(for redhat kernel configuration)
19 if test -f "${LINUX_KERNEL_PATH}/include/linux/rhconfig.h"; then
21 RHCONFIG_SP="-D__BOOT_KERNEL_UP=1 -D__BOOT_KERNEL_SMP=0"
22 RHCONFIG_MP="-D__BOOT_KERNEL_UP=0 -D__BOOT_KERNEL_SMP=1"
23 AC_MSG_RESULT($ac_linux_rhconfig)
24 if test ! -f "/boot/kernel.h"; then
25 AC_MSG_WARN([/boot/kernel.h does not exist. build may fail])
29 AC_MSG_RESULT($ac_linux_rhconfig)
36 AC_DEFUN([LINUX_WHICH_MODULES],[
37 if test "x$enable_redhat_buildsys" = "xyes"; then
40 save_CPPFLAGS="$CPPFLAGS"
41 CPPFLAGS="-I${LINUX_KERNEL_PATH}/include -D__KERNEL__ $RHCONFIG_SP $CPPFLAGS"
42 AC_MSG_CHECKING(which kernel modules to build)
43 if test "x$ac_linux_rhconfig" = "xyes"; then
46 AC_CACHE_VAL(ac_cv_linux_config_smp, [
48 [#include <linux/config.h>
54 ac_cv_linux_config_smp=yes,
55 ac_cv_linux_config_smp=no)])
56 dnl AC_MSG_RESULT($ac_cv_linux_config_smp)
57 if test "x$ac_cv_linux_config_smp" = "xyes"; then
63 CPPFLAGS=$save_CPPFLAGS
69 AC_DEFUN([LINUX_KERNEL_SELINUX],[
70 AC_MSG_CHECKING(for SELinux kernel)
71 save_CPPFLAGS="$CPPFLAGS"
72 CPPFLAGS="-I${LINUX_KERNEL_PATH}/include $CPPFLAGS"
73 AC_CACHE_VAL(ac_cv_linux_kernel_is_selinux,
76 [#include <linux/autoconf.h>],
77 [#ifndef CONFIG_SECURITY_SELINUX
80 ac_cv_linux_kernel_is_selinux=yes,
81 ac_cv_linux_kernel_is_selinux=no)])
82 AC_MSG_RESULT($ac_cv_linux_kernel_is_selinux)
83 CPPFLAGS="$save_CPPFLAGS"])
85 AC_DEFUN([LINUX_KERNEL_LINUX_SEQ_FILE_H],[
86 AC_MSG_CHECKING(for linux/seq_file.h in kernel)
87 if test -f "${LINUX_KERNEL_PATH}/include/linux/seq_file.h"; then
89 AC_MSG_RESULT($ac_linux_seq_file)
92 AC_MSG_RESULT($ac_linux_seq_file)