[go: up one dir, main page]

File: configure.ac

package info (click to toggle)
rolo 011.dfsg.1-9
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 580 kB
  • ctags: 182
  • sloc: ansic: 2,528; sh: 815; makefile: 18
file content (33 lines) | stat: -rw-r--r-- 786 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.
# $Id: configure.ac,v 1.17 2003/05/19 22:32:01 ahsu Rel $

AC_INIT(rolo, 011, ahsu@users.sf.net)
AM_INIT_AUTOMAKE
AC_PREREQ(2.57)
AC_COPYRIGHT([Copyright (C) 2003  Andrew Hsu])
AC_REVISION($Revision: 1.17 $)
AC_CONFIG_SRCDIR([src/main.c])
AM_CONFIG_HEADER([config.h])

# Checks for programs.
AC_PROG_CC

# Checks for libraries.
AC_CHECK_LIB(vc, vc_new)
AC_CHECK_LIB(ncurses, newwin)
AC_CHECK_LIB(menu, new_menu)
AC_CHECK_LIB(form, new_form)

# Checks for header files.
AC_HEADER_STDC

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

# Checks for library functions.
AC_FUNC_MALLOC
AC_TYPE_SIGNAL
AC_CHECK_FUNCS([strdup strstr])

AC_CONFIG_FILES([Makefile src/Makefile doc/Makefile])
AC_OUTPUT