~ubuntu-branches/ubuntu/warty/dejagnu/warty

« back to all changes in this revision

Viewing changes to example/calc/configure.in

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Jacobowitz
  • Date: 2004-02-09 15:07:58 UTC
  • Revision ID: james.westby@ubuntu.com-20040209150758-oaj7r5zrop60v8sb
Tags: upstream-1.4.4
ImportĀ upstreamĀ versionĀ 1.4.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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)
 
6
 
 
7
AC_PROG_CC
 
8
AC_PROG_INSTALL
 
9
#
 
10
# Look for various header files
 
11
#
 
12
AC_CHECK_HEADERS(stdlib.h)
 
13
 
 
14
#
 
15
# Look for various functions
 
16
#
 
17
AC_CHECK_FUNC(strcmp)
 
18
 
 
19
AM_MAINTAINER_MODE
 
20
 
 
21
#
 
22
# Output Makefile with substitutions
 
23
AC_SUBST(CC)
 
24
AC_OUTPUT(Makefile)