~ubuntu-branches/ubuntu/gutsy/fnfx/gutsy

« back to all changes in this revision

Viewing changes to configure.in

  • Committer: Bazaar Package Importer
  • Author(s): Thom May
  • Date: 2005-04-01 11:39:55 UTC
  • Revision ID: james.westby@ubuntu.com-20050401113955-nnsv7bovk07obxa9
Tags: upstream-0.3
ImportĀ upstreamĀ versionĀ 0.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#                                               -*- Autoconf -*-
 
2
# Process this file with autoconf to produce a configure script.
 
3
 
 
4
PACKAGE=FnFX
 
5
VERSION=0.3
 
6
 
 
7
 
 
8
AC_PACKAGE_NAME(fnfx)
 
9
AC_PREREQ(2.57)
 
10
AC_INIT(fnfx, 0.3, thoenig@nouse.net)
 
11
#AC_CONFIG_SRCDIR(fnfx.h)
 
12
AM_CONFIG_HEADER(config.h)
 
13
AM_INIT_AUTOMAKE(fnfx, 0.3)
 
14
 
 
15
# Checks for programs.
 
16
AC_PROG_CC
 
17
 
 
18
# Checks for libraries.
 
19
 
 
20
# Checks for header files.
 
21
AC_HEADER_STDC
 
22
AC_CHECK_HEADERS([fcntl.h stddef.h stdlib.h string.h sys/ioctl.h unistd.h])
 
23
 
 
24
# Checks for typedefs, structures, and compiler characteristics.
 
25
AC_C_CONST
 
26
AC_TYPE_PID_T
 
27
 
 
28
# Checks for library functions.
 
29
AC_PROG_GCC_TRADITIONAL
 
30
AC_TYPE_SIGNAL
 
31
 
 
32
AC_CONFIG_FILES([Makefile
 
33
                 etc/Makefile
 
34
                 src/Makefile])
 
35
AC_OUTPUT