Changeset 162 for trunk/configure.ac
- Timestamp:
- Feb 1, 2008, 1:03:47 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/configure.ac
r158 r162 13 13 dnl start 14 14 dnl 15 AM_INIT_AUTOMAKE(samhain, 2.4. 2)15 AM_INIT_AUTOMAKE(samhain, 2.4.3) 16 16 AC_CANONICAL_HOST 17 17 … … 207 207 sys/select.h sys/socket.h netinet/in.h \ 208 208 regex.h glob.h \ 209 linux/ext2_fs.h linux/fs.h ext2fs/ext2_fs.h \209 linux/ext2_fs.h linux/fs.h ext2fs/ext2_fs.h asm/segment.h \ 210 210 elf.h linux/elf.h \ 211 211 paths.h arpa/nameser.h arpa/nameser_compat.h \ … … 1751 1751 if test x"$kernel_version" = xLINUX26 1752 1752 then 1753 1753 AC_MSG_CHECKING([for modlist_lock]) 1754 1754 sh_modlist_lock=`egrep ['[bd] modlist_lock$'] ${khidemap} | awk '{print $1}'` 1755 1755 if test x"$sh_modlist_lock" = x; then 1756 echo "--enable-khide: symbol modlist_lock not found in ${khidemap}"1756 AC_MSG_RESULT(no) 1757 1757 else 1758 1758 sh_modlist_lock="0x${sh_modlist_lock}" 1759 AC_MSG_RESULT([${sh_modlist_lock}]) 1759 1760 AC_DEFINE_UNQUOTED(SH_MODLIST_LOCK, ${sh_modlist_lock}, [The address of the modules list spinlock]) 1760 1761 fi 1761 1762 1763 AC_MSG_CHECKING([for module_mutex]) 1762 1764 sh_modlist_mutex=`egrep ['[bd] module_mutex$'] ${khidemap} | awk '{print $1}'` 1763 1765 if test x"$sh_modlist_mutex" = x; then 1764 echo "--enable-khide: symbol module_mutex not found in ${khidemap}"1766 AC_MSG_RESULT(no) 1765 1767 else 1766 1768 sh_modlist_mutex="0x${sh_modlist_mutex}" 1769 AC_MSG_RESULT([${sh_modlist_mutex}]) 1767 1770 AC_DEFINE_UNQUOTED(SH_MODLIST_MUTEX, ${sh_modlist_mutex}, [The address of the modules list mutex]) 1768 1771 fi … … 1792 1795 AC_MSG_WARN([--enable-khide: headers for the currently-running kernel.]) 1793 1796 fi 1797 1798 AC_MSG_CHECKING([for 2.4 vanilla kernel]) 1794 1799 sh_is_vanilla_kernel=yes 1795 1800 if test -f /lib/modules/${kvers}/build/include/linux/sched.h; then … … 1797 1802 fi 1798 1803 if test x"${sh_is_vanilla_kernel}" = xno; then 1799 echo "This is not a 2.4 vanilla kernel"1804 AC_MSG_RESULT(no) 1800 1805 else 1806 AC_MSG_RESULT(yes) 1801 1807 AC_DEFINE(SH_VANILLA_KERNEL) 1802 1808 fi 1809 1803 1810 fi 1804 1811 ]
Note:
See TracChangeset
for help on using the changeset viewer.