File: configure.in

package info (click to toggle)
robodoc 3.2.2-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 636 kB
  • ctags: 474
  • sloc: ansic: 2,939; sh: 441; makefile: 226; cpp: 4
file content (29 lines) | stat: -rw-r--r-- 527 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
28
29
dnl Process this file with autoconf to produce a configure script.

AC_INIT(Source/robodoc.h)

AM_CONFIG_HEADER(Source/config.h)

AM_INIT_AUTOMAKE(robodoc, 3.2.2)

AC_PROG_MAKE_SET

dnl Checks for programs.
AC_PROG_CC

dnl Checks for libraries.

dnl Checks for header files.
AC_HEADER_STDC

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

dnl Checks for library functions.
AC_FUNC_STRFTIME
AC_FUNC_VPRINTF
AC_CHECK_FUNCS(strstr)

AC_OUTPUT(makefile Docs/makefile Source/makefile)