File: configure.in

package info (click to toggle)
cppopt 0.0.2-6
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 184 kB
  • ctags: 51
  • sloc: cpp: 730; sh: 177; makefile: 142
file content (34 lines) | stat: -rw-r--r-- 683 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.

AC_INIT()
AM_INIT_AUTOMAKE(cppopt,0.0.2)
AM_CONFIG_HEADER(config.h)
AC_SUBST(PACKAGE)
AC_SUBST(VERSION)

dnl Checks for programs.
AC_PROG_CXX
AC_PROG_RANLIB
AC_PROG_LN_S
AC_ISC_POSIX
AC_PROG_INSTALL
AC_PROG_MAKE_SET

dnl Checks for libraries.

dnl Checks for header files.
AC_LANG_SAVE
AC_LANG_CPLUSPLUS
dnl map.h is now deprecated
dnl AC_CHECK_HEADER(map.h,,
dnl   AC_MSG_ERROR(The libstdc++ headers are required for compilation.))
AC_LANG_RESTORE

AC_HEADER_TIME

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

dnl Checks for library functions.

AC_OUTPUT(Makefile src/Makefile)