Changeset 169 for trunk/configure.ac


Ignore:
Timestamp:
Apr 13, 2008, 9:59:55 PM (17 years ago)
Author:
katerina
Message:

Fixes for tickes #93 to #104 (yes, big commit, bad, bad,...).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/configure.ac

    r168 r169  
    1313dnl start
    1414dnl
    15 AM_INIT_AUTOMAKE(samhain, 2.4.3)
     15AM_INIT_AUTOMAKE(samhain, 2.4.4)
    1616AC_CANONICAL_HOST
    1717
     
    100100       
    101101        *openbsd*)
     102        AC_DEFINE([HOST_IS_OPENBSD], 1, [Define if host OS is OPENBSD])
    102103        selectconfig=freebsd
    103104        AC_MSG_RESULT(none)
     
    589590$PS ax >/dev/null 2>&1
    590591if test $? -eq 0; then
     592   case "$host_os" in
     593   *openbsd*)
     594   one=`$PS akx | wc -l`
     595   ;;
     596   *)
    591597   one=`$PS ax | wc -l`
     598   ;;
     599   esac
    592600else
    593601   one=0
     
    601609if test $one -ge $two
    602610then
    603     PSARG="ax"
     611   case "$host_os" in
     612   *openbsd*)
     613        PSARG="akx"
     614        ;;
     615   *)
     616        PSARG="ax"
     617        ;;
     618   esac
    604619else
    605     PSARG="-e"
     620        PSARG="-e"
    606621fi
    607622AC_DEFINE_UNQUOTED([PSARG], _("$PSARG"), [Argument for ps])
     
    21462161        [
    21472162        if test "x${cross_compiling}" = xyes; then
    2148                 :
     2163                my_tmp_dir="$withval"
     2164                AC_DEFINE_UNQUOTED(SH_TMPDIR, _("${my_tmp_dir}") )
    21492165        else
    21502166                if test -d "${withval}"; then
     
    21522168                        AC_DEFINE_UNQUOTED(SH_TMPDIR, _("${my_tmp_dir}") )
    21532169                else
    2154                         AC_MSG_ERROR([--with-tmp-dir: tmp directory ${withval} does not exist])
     2170                        my_tmp_dir="$withval"
     2171                        AC_DEFINE_UNQUOTED(SH_TMPDIR, _("${my_tmp_dir}") )
     2172                        AC_MSG_WARN([--with-tmp-dir: tmp directory ${withval} does not exist])
    21552173                fi
    21562174        fi
Note: See TracChangeset for help on using the changeset viewer.