fixes for host gcc 4.6.1
[zpugcc/jano.git] / toolchain / dejagnu / example / calc / configure.in
blob260baa0c2da80c7136cff225c433666592f55b50
1 dnl Process this file with autoconf to produce a configure script.
2 AC_PREREQ(2.5)
3 AC_INIT(calc.c)
4 AM_CONFIG_HEADER(calc.h)
5 AM_INIT_AUTOMAKE(calc, 1.1)
7 AC_PROG_CC
8 AC_PROG_INSTALL
10 # Look for various header files
12 AC_CHECK_HEADERS(stdlib.h)
15 # Look for various functions
17 AC_CHECK_FUNC(strcmp)
19 AM_MAINTAINER_MODE
22 # Output Makefile with substitutions
23 AC_SUBST(CC)
24 AC_OUTPUT(Makefile)