File: configure.in

package info (click to toggle)
spell 1.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, trixie
  • size: 560 kB
  • sloc: ansic: 2,189; sh: 379; makefile: 100
file content (64 lines) | stat: -rw-r--r-- 1,573 bytes parent folder | download | duplicates (3)
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
dnl Configure template for GNU Spell.
dnl Process this file with autoconf to produce a configure script.

# This file is part of GNU Spell.
# Copyright (C) 1996,2010 Free Software Foundation, Inc.

# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.

# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.

# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

AC_INIT([spell], [1.1], [])
AC_CONFIG_SRCDIR([spell.c])
AC_CONFIG_HEADERS([config.h])

# checks for programs

AC_PROG_CC
AC_PROG_INSTALL
AC_PROG_LN_S

# checks for libraries

AC_CHECK_LIB(malloc, malloc)
dnl AC_CHECK_LIB(ucb, bzero)

# checks for header files

dnl AC_USG
AC_CHECK_HEADERS([string.h])

# checks for typedefs

AC_TYPE_PID_T

# checks for structures

# checks for compiler characteristics
AC_C_CONST

# checks for library functions
AC_CHECK_FUNCS(strerror)
AC_CHECK_FUNCS(getopt_long)
AC_CHECK_FUNCS(getline)

# checks for system services

AC_CONFIG_FILES([Makefile])
AC_OUTPUT

dnl Local Variables:
dnl comment-start: "dnl "
dnl comment-end: ""
dnl comment-start-skip: "\\bdnl\\b\\s *"
dnl compile-command: "autoconf"
dnl End: