Commit f88ca1aba31eb0a4de166d8e1457b5766060da6f

Authored by Stéphane Raimbault
1 parent cdc536c9

Added some checks to configure.ac

- detected by autoscan
- uintX_T
- added functions
Showing 1 changed file with 8 additions and 1 deletions
configure.ac
... ... @@ -9,8 +9,10 @@ AM_DISABLE_STATIC
9 9  
10 10 # Checks for programs.
11 11 AC_PROG_CC
  12 +AC_PROG_CXX
12 13 AC_PROG_MAKE_SET
13 14 AC_PROG_LIBTOOL
  15 +AC_PROG_RANLIB
14 16  
15 17 # Checks for header files.
16 18 AC_HEADER_STDC
... ... @@ -20,11 +22,16 @@ AC_CHECK_HEADERS([termios.h sys/time.h unistd.h errno.h limits.h fcntl.h sys/typ
20 22 AC_C_CONST
21 23 AC_TYPE_SIZE_T
22 24 AC_HEADER_TIME
  25 +AC_TYPE_UINT16_T
  26 +AC_TYPE_UINT32_T
  27 +AC_TYPE_UINT8_T
23 28  
24 29 # Checks for library functions.
  30 +AC_FUNC_FORK
25 31 AC_FUNC_MALLOC
26 32 AC_FUNC_SELECT_ARGTYPES
27   -AC_CHECK_FUNCS([inet_ntoa memset select socket])
  33 +AC_TYPE_SIGNAL
  34 +AC_CHECK_FUNCS([gettimeofday inet_ntoa memset select socket strerror])
28 35  
29 36 AC_OUTPUT([
30 37 Makefile
... ...