Changeset 447


Ignore:
Timestamp:
Mar 29, 2014, 7:16:01 AM (11 years ago)
Author:
katerina
Message:

Fix for ticket #349 (no inline asm for cygwin).

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/configure.ac

    r444 r447  
    1212dnl start
    1313dnl
    14 AM_INIT_AUTOMAKE(samhain, 3.1.0)
     14AM_INIT_AUTOMAKE(samhain, 3.1.1)
    1515AC_DEFINE([SAMHAIN], 1, [Application is samhain])
    1616AC_CANONICAL_HOST
     
    5656dnmalloc_ok=yes
    5757sh_use_pie=yes
     58enable_asm_ok=yes
    5859
    5960case "$host_os" in
     
    9293        AC_DEFINE([USE_REGISTRY_CHECK], 1, [Define for registry check])
    9394        dnmalloc_ok=no
    94         AC_MSG_RESULT([no trusted paths and no dnmalloc])
     95        enable_asm_ok=no
     96        AC_MSG_RESULT([no trusted paths, no dnmalloc. no asm optimize])
    9597        ;;
    9698
     
    16551657AC_SUBST(mydebugdef)
    16561658
    1657 sh_enable_asm=yes
     1659if test "x${enable_asm_ok}" = "xyes"; then
     1660   sh_enable_asm=yes
     1661else
     1662   sh_enable_asm=no
     1663fi
    16581664AC_ARG_ENABLE(asm,
    16591665        [  --disable-asm                        disable asm inline code],
  • trunk/docs/Changelog

    r444 r447  
     13.1.1:
     2        * Disable inline asm on Cygwin (issue reported by Erik)
     3
     43.1.0 (31-10-2013):
    15        * Add support for SHA2-256 checksum function
    26        * Drop support for --enable-khide on kernel version 3.x and above
     
    1519          by N. Kerski)
    1620
    17 3.0.13:
     213.0.13 (11-06-2013):
    1822        * Fix detection of nonfunctional /dev/kmem
    1923        * Fix race condition in GrowingLogfiles policy that
    2024          causes spurious reports (problem noticed by J. Daubert)
    2125
    22 3.0.12:
     263.0.12 (16-05-2013):
    2327        * Fix compiler warning in bignum.c (unused parameter)
    2428        * Detect if /var/run is a symlink and /run exists
     
    3236          (reported by M. Ward)
    3337
    34 3.0.11:
     383.0.11 (08-04-2013):
    3539        * Fix for compile error on HP-UX (reported by P. Alves)
    3640        * Propagate ERANGE error from getgrxxx_r (issue raised by C. Feikes)
     
    4448          not only get added/deleted but also modified
    4549
    46 3.0.10:
     503.0.10 (13-01-2013):
    4751        * Revert to previous logic in samhain.c because it will block
    4852          otherwise (reported by Alexandr Sabitov)
    4953
    50 3.0.9:
     543.0.9 (21-12-2012):
    5155        * Fixed a Cygwin compile warning
    5256        * Change logic in samhain.c to make sure inotify doesn't cause
     
    6165        * Fix detection of utmpx.h (reported by D. Thiel)
    6266
    63 3.0.8:
     673.0.8 (01-11-2012):
    6468        * rename to 3.0.8 for release
    6569        * useful exit status for samhainadmin.pl --examine
    6670
    67 3.0.7a:
     713.0.7a (25-12-2012):
    6872        * add ability to create RPM with preset password (use
    6973          env var PASSWORD)
     
    7175        * fix minor bug in samhain_setpwd.c (incorrect error message)
    7276
    73 3.0.7:
     773.0.7 (25-10-2012):
    7478        * update documentation for prelude
    7579        * fix configure to properly search for Oracle Instantclient SDK
     
    7983        * don't check for assembly optimization unless linux or *BSD
    8084
    81 3.0.6:
     853.0.6 (01-09-2012):
    8286        * install logrotate script if /etc/logrotate.d is detected
    8387        * new option --enable-suid for nagios
     
    9094        * option SetReportFile for writing out summary after file check
    9195
    92 3.0.5:
     963.0.5 (11-07-2012):
    9397        * fix xml format templates for registry check
    9498        * fix database download on registry check init (reported by ldieu)
    9599
    96 3.0.4:
     1003.0.4 (01-05-2012):
    97101        * fix verbosity of message for alerts on already deleted watches
    98102          (set it to debug - suggested by xrx)
Note: See TracChangeset for help on using the changeset viewer.