File: configure.ac

package info (click to toggle)
cssc 1.0.1-4
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, lenny
  • size: 3,620 kB
  • ctags: 1,424
  • sloc: cpp: 13,500; sh: 4,759; ansic: 2,971; perl: 342; makefile: 342; awk: 11
file content (34 lines) | stat: -rw-r--r-- 817 bytes parent folder | download | duplicates (2)
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
dnl Process this file with autoconf to produce a configure script.

dnl Initialise.   Look for lndir.c to double-check that we are looking
dnl at the correct directory.
AC_INIT
AC_CONFIG_SRCDIR([lndir.c])
dnl AC_CONFIG_HEADER(aconf.h)

dnl We have to do this next bit in order to appeast automake. 
dnl We don't really want a version number for the test suite 
dnl separate from that of CSSC itself (at least at the moment).
AM_INIT_AUTOMAKE(CSSC-testsuite,same-version-as-CSSC-itself)



dnl Checks for programs.
AC_PROG_CC
AC_PROG_CXX
AC_PROG_INSTALL

dnl Checks for header files.
AC_CHECK_HEADERS(stdarg.h stdlib.h string.h stdio.h errno.h)
AC_CHECK_HEADERS(unistd.h sys/stat.h sys/param.h)
AC_HEADER_STDC
AC_HEADER_DIRENT
AC_HEADER_STAT

AC_CHECK_FUNCS(symlink readlink)

AC_CONFIG_FILES([Makefile])
AC_OUTPUT