added concrete implementations of putc(), getc(), getchar() and gets()
[tangerine.git] / tools / MetaMake / configure.in
blob2881c04bf3bdc9211dc1d1985c096c50362a8cd4
1 dnl Process this file with autoconf to produce a configure script.
2 AC_INIT(mmake.c)
3 AM_INIT_AUTOMAKE(MetaMake,0.6)
4 AC_REVISION($Revision$)dnl
5 AC_PREREQ(2.12)
7 dnl Checks for programs.
8 AC_PROG_CC
9 AC_PROG_INSTALL
11 dnl Checks for libraries.
13 dnl Checks for header files.
14 AC_HEADER_DIRENT
15 AC_HEADER_STDC
16 AC_CHECK_HEADERS(stdarg.h string.h unistd.h sys/stat.h sys/types.h netinet/in.h)
18 dnl Checks for typedefs, structures, and compiler characteristics.
19 AM_C_PROTOTYPES
20 AC_C_CONST
21 AC_TYPE_SIZE_T
23 dnl Checks for library functions.
24 AC_FUNC_VPRINTF
25 AC_CHECK_FUNCS(getcwd strdup strndup strerror)
27 AM_CONFIG_HEADER(config.h)
28 AC_OUTPUT(Makefile)