Changeset 503


Ignore:
Timestamp:
Apr 13, 2016, 8:58:18 PM (9 years ago)
Author:
katerina
Message:

Fix for ticket #398 (AvoidBlock issue on Cygwin).

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/configure.ac

    r499 r503  
    1212dnl start
    1313dnl
    14 AM_INIT_AUTOMAKE(samhain, 4.1.2)
     14AM_INIT_AUTOMAKE(samhain, 4.1.3)
    1515AC_DEFINE([SAMHAIN], 1, [Application is samhain])
    1616AC_CANONICAL_HOST
  • trunk/docs/Changelog

    r502 r503  
    114.1.3:
     2        * on Cygwin, the AvoidBlock function is now off by default
     3        (problem reported by Fred C)
    24        * tighter sanity checks in sh_static.c
    35        * fix regression with '--enable-static' in sh_static.c
  • trunk/src/sh_calls.c

    r481 r503  
    320320
    321321#if defined (SH_WITH_CLIENT) || defined (SH_STANDALONE)
     322#if defined(HOST_IS_CYGWIN) || defined(__cygwin__) || defined(__CYGWIN32__) || defined(__CYGWIN__)
     323static int sh_use_sub = 0;
     324#else
    322325static int sh_use_sub = 1;
     326#endif
    323327#else
    324328static int sh_use_sub = 0;
Note: See TracChangeset for help on using the changeset viewer.