Changeset 294 for trunk/configure.ac


Ignore:
Timestamp:
Oct 31, 2010, 10:26:42 AM (14 years ago)
Author:
katerina
Message:

Tikets #213 and #214 (Use auditd to determine who changed a file, Windows registry check).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/configure.ac

    r293 r294  
    1212dnl start
    1313dnl
    14 AM_INIT_AUTOMAKE(samhain, 2.7.2c)
     14AM_INIT_AUTOMAKE(samhain, 2.8.0)
    1515AC_DEFINE([SAMHAIN], 1, [Application is samhain])
    1616AC_CANONICAL_HOST
     
    8686        *cygwin*)
    8787        AC_DEFINE(HOST_IS_CYGWIN)
     88        AC_DEFINE([USE_REGISTRY_CHECK], 1, [Define for registry check])
    8889        dnmalloc_ok=no
    8990        AC_MSG_RESULT([no trusted paths and no dnmalloc])
     
    230231        regex.h glob.h \
    231232        linux/ext2_fs.h linux/fs.h ext2fs/ext2_fs.h asm/segment.h \
    232         elf.h linux/elf.h \
     233        elf.h linux/elf.h auparse.h \
    233234        paths.h arpa/nameser.h arpa/nameser_compat.h \
    234235        rpc/rpcent.h rpc/rpc.h sys/statvfs.h,
     
    442443  ])
    443444
     445sh_auparse=no
     446
     447if test "x$ac_cv_header_auparse_h" = "xyes"
     448then
     449   AC_CHECK_LIB(auparse, auparse_find_field, [
     450                         LIBS="$LIBS -lauparse"
     451                         sh_auparse=yes
     452                         AC_DEFINE(HAVE_AUPARSE_LIB, 1, [Define if you have the auparse lib])
     453                         ])
     454fi
     455
    444456dnl arguments for accept
    445457
     
    952964                then
    953965                  tmp_LIBS=`echo $LIBS | sed 's%\-lresolv%%' `
     966                  LIBS="${tmp_LIBS}"
     967                fi
     968                if test x"${sh_auparse}" = xyes
     969                then
     970                  tmp_LIBS=`echo $LIBS | sed 's%\-lauparse%%' `
    954971                  LIBS="${tmp_LIBS}"
    955972                fi
Note: See TracChangeset for help on using the changeset viewer.