Changeset 47 for trunk


Ignore:
Timestamp:
Jun 16, 2006, 10:47:44 PM (18 years ago)
Author:
rainer
Message:

Fix compile error on i686/MacOS X

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/aclocal.m4

    r43 r47  
    11951195        #
    11961196        if test "x$GCC" = xyes; then
    1197           AC_MSG_CHECKING([for i386])
     1197          AC_MSG_CHECKING([for non-apple i386])
    11981198          samhain_i386=no
    1199           touch conf_foo.h
    1200           $CC -E -dM conf_foo.h | egrep '__i386__' >/dev/null 2>&1 && samhain_i386=yes
    1201           rm -f conf_foo.h
     1199          $CC -E -dM - < /dev/null | egrep '__i386__' >/dev/null 2>&1
     1200          if test $? = 0; then
     1201            # apples gcc does not understand the assembly we provide
     1202            $CC -E -dM - < /dev/null | egrep '__APPLE__' >/dev/null 2>&1 || samhain_i386=yes
     1203          fi
    12021204          if test "x$samhain_i386" = xyes; then
    12031205            tiger_src=sh_tiger1.s
  • trunk/configure.ac

    r46 r47  
    1313dnl start
    1414dnl
    15 AM_INIT_AUTOMAKE(samhain, 2.2.1)
     15AM_INIT_AUTOMAKE(samhain, 2.2.1a)
    1616AC_CANONICAL_HOST
    1717
  • trunk/docs/Changelog

    r46 r47  
     12.2.1a:
     2        * fix compile error on i686/MacOS X (reported by Andreas Neth)
     3
    142.2.1:
    25        * fix gcc 4 warnings and build failure on x86_64 (debian bug #370808)
     
    1821        * fix concurrent inserts with postgres in sh_database.c
    1922        * code cleanup
    20         * fix manual version in spec file, noticed by Imre Gergely
     23        * fix manual version in spec file, first noticed by Imre Gergely
    2124       
    22252.2.0:
Note: See TracChangeset for help on using the changeset viewer.