Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • configure.ac

    r1f86d5e r107b01a  
    178178AC_PROG_CC
    179179AM_PROG_AS
     180AM_PROG_CC_C_O  # deprecated
    180181# These are often not installed and people miss seeing the "no", so stop the configure.
    181182AC_PROG_YACC
     
    185186AC_PROG_LIBTOOL
    186187AC_PROG_INSTALL
     188AC_PROG_MAKE_SET
    187189
    188190# Checks for libraries.
     
    191193
    192194# Checks for header files.
    193 AC_CHECK_HEADERS([libintl.h malloc.h unistd.h], [], [echo "Error: Missing required header"; exit 1])
     195AC_FUNC_ALLOCA
     196AC_CHECK_HEADERS([fenv.h float.h inttypes.h libintl.h limits.h malloc.h stddef.h stdlib.h string.h unistd.h])
    194197
    195198# Checks for typedefs, structures, and compiler characteristics.
    196 AC_CHECK_TYPES([_Float32], AC_DEFINE([HAVE_KEYWORDS_FLOATXX], [], [Have keywords _FloatXX.]), [], [[]])
    197 
    198 # Checks for compiler flags.
    199 M4CFA_CHECK_COMPILE_FLAG([-Wcast-function-type], AC_DEFINE([HAVE_CAST_FUNCTION_TYPE], [], [Have compiler warning cast-function-type.]))
     199AC_HEADER_STDBOOL
     200AC_C_INLINE
     201AC_TYPE_INT16_T
     202AC_TYPE_INT32_T
     203AC_TYPE_INT8_T
     204AC_C_RESTRICT
     205AC_TYPE_SIZE_T
     206AC_TYPE_UINT16_T
     207AC_TYPE_UINT32_T
     208AC_TYPE_UINT8_T
     209
     210# Checks for library functions.
     211AC_CHECK_FUNCS([memset putenv strchr strtol])
    200212
    201213#==============================================================================
Note: See TracChangeset for help on using the changeset viewer.