File: configure.scan

package info (click to toggle)
keynote 2.3-3
  • links: PTS
  • area: main
  • in suites: woody
  • size: 1,372 kB
  • ctags: 329
  • sloc: sh: 6,540; ansic: 4,739; lex: 1,064; yacc: 783; makefile: 70
file content (33 lines) | stat: -rw-r--r-- 696 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
# Process this file with autoconf to produce a configure script.
AC_INIT
AC_CONFIG_SRCDIR([getopt.c])
AC_CONFIG_HEADER([config.h])

# Checks for programs.
AC_PROG_CXX
AC_PROG_AWK
AC_PROG_CC
AC_PROG_CPP
AC_PROG_INSTALL
AC_PROG_LN_S
AC_PROG_MAKE_SET
AC_PROG_RANLIB
AC_PROG_LEX
AC_PROG_YACC

# Checks for libraries.

# Checks for header files.
AC_CHECK_HEADERS([fcntl.h limits.h memory.h stdlib.h string.h sys/time.h unistd.h])

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

# Checks for library functions.
AC_HEADER_STDC
AC_FUNC_MEMCMP
AC_CHECK_FUNCS([floor memset pow regcomp strchr strdup strncasecmp strtoul])

AC_CONFIG_FILES([Makefile])
AC_OUTPUT