[go: up one dir, main page]

File: configure.in

package info (click to toggle)
fnfx 0.3-5
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 592 kB
  • ctags: 179
  • sloc: sh: 3,243; ansic: 1,788; makefile: 90
file content (35 lines) | stat: -rw-r--r-- 742 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#                                               -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.

PACKAGE=FnFX
VERSION=0.3


AC_PACKAGE_NAME(fnfx)
AC_PREREQ(2.57)
AC_INIT(fnfx, 0.3, thoenig@nouse.net)
#AC_CONFIG_SRCDIR(fnfx.h)
AM_CONFIG_HEADER(config.h)
AM_INIT_AUTOMAKE(fnfx, 0.3)

# Checks for programs.
AC_PROG_CC

# Checks for libraries.

# Checks for header files.
AC_HEADER_STDC
AC_CHECK_HEADERS([fcntl.h stddef.h stdlib.h string.h sys/ioctl.h unistd.h])

# Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST
AC_TYPE_PID_T

# Checks for library functions.
AC_PROG_GCC_TRADITIONAL
AC_TYPE_SIGNAL

AC_CONFIG_FILES([Makefile
		 etc/Makefile
                 src/Makefile])
AC_OUTPUT