File: configure.in

package info (click to toggle)
eli 4.4.1-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 29,180 kB
  • ctags: 46,497
  • sloc: ansic: 290,588; sh: 4,471; makefile: 4,420; tcl: 3,517; lisp: 73; yacc: 71; sed: 44; awk: 11
file content (27 lines) | stat: -rw-r--r-- 533 bytes parent folder | download
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
# $Id: configure.in,v 1.2 2004/03/21 02:09:45 profw Exp $

AC_INIT([GNU cpp],[1.40])
AC_CONFIG_SRCDIR(cccp.c)

dnl Checks for programs.
AC_PROG_CC
AC_PROG_CPP

dnl Checks for libraries.

dnl Checks for header files.
AC_HEADER_STDC
AC_CHECK_HEADERS(fcntl.h malloc.h sys/file.h sys/time.h unistd.h)

dnl Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST
AC_TYPE_SIZE_T
AC_STRUCT_TM

dnl Checks for library functions.
AC_TYPE_SIGNAL
AC_CHECK_FUNCS(memcpy strchr)

AC_CONFIG_HEADER(config.h)

AC_OUTPUT(Makefile)