Changeset 474 for trunk/configure.ac


Ignore:
Timestamp:
May 30, 2015, 7:57:16 PM (9 years ago)
Author:
katerina
Message:

Fix for ticket #372 (Replace obsolete smatch by clang in test suite).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/configure.ac

    r471 r474  
    17561756   if test -z "`echo "$CFLAGS" | grep "\-fno\-strength\-reduce" 2> /dev/null`"
    17571757   then
    1758         CFLAGS="$CFLAGS -fno-strength-reduce"
     1758        GCC_FLAG_CHECK([-fno-strength-reduce])
    17591759   fi
    17601760  fi
     
    17641764   if test -z "`echo "$CFLAGS" | grep "\-fno\-omit\-frame\-pointer" 2> /dev/null`"
    17651765   then
    1766         CFLAGS="$CFLAGS -fno-omit-frame-pointer"
     1766        GCC_FLAG_CHECK([-fno-omit-frame-pointer])
    17671767   fi
    17681768  fi
     
    17731773dnl Suppresses warnings from glibc pthread_cleanup_pop
    17741774dnl
    1775 GCC_WEMPTY_BODY
     1775GCC_FLAG_CHECK([-Wno-empty-body])
     1776
     1777dnl This one is for clang
     1778dnl
     1779GCC_FLAG_CHECK([-Wno-invalid-source-encoding])
     1780
    17761781
    17771782AC_MSG_CHECKING([which random module to use])
Note: See TracChangeset for help on using the changeset viewer.