gcc says those values are out of bounds
[apps/madtty.git] / configure.ac
1 dnl Process this file with autoconf to produce a configure script.
2
3 AC_INIT([maddty], 0.0.0)
4
5 AC_SUBST(PACKAGE_NAME)
6 AC_SUBST(PACKAGE_VERSION)
7
8 AC_CONFIG_SRCDIR([madtty/madtty.h])
9
10 dnl Checks for programs.
11 AC_PROG_CC_C99
12 AC_GNU_SOURCE
13
14 dnl Checks for header files.
15 AC_HEADER_STDC
16 AC_HEADER_STDBOOL
17 AC_CHECK_HEADERS([sys/types.h unistd.h stdlib.h string.h])
18
19 dnl Checks for typedefs, structures, and compiler characteristics.
20 AC_C_CONST
21 AC_C_INLINE
22
23 AC_CONFIG_FILES([am/vars.mk
24                  madtty/madtty.pc
25                  madtty/Makefile
26 ])
27 AC_OUTPUT