]> git.ipfire.org Git - thirdparty/rng-tools.git/blame - configure.ac
s/list_add/src_list_add/
[thirdparty/rng-tools.git] / configure.ac
CommitLineData
61af3de3
JG
1dnl Process this file with autoconf 2.52+ to produce a configure script.
2dnl
3dnl Copyright (C) 2001 Philipp Rumpf
4dnl Copyright (C) 2004 Henrique de Moraes Holschuh <hmh@debian.org>
5dnl
6dnl This program is free software; you can redistribute it and/or modify
7dnl it under the terms of the GNU General Public License as published by
8dnl the Free Software Foundation; either version 2 of the License, or
9dnl (at your option) any later version.
10dnl
11dnl This program is distributed in the hope that it will be useful,
12dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
13dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14dnl GNU General Public License for more details.
15dnl
16dnl You should have received a copy of the GNU General Public License
17dnl along with this program; if not, write to the Free Software
18dnl Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19
20AC_INIT(rng-tools, 2, [Jeff Garzik <jgarzik@pobox.com>])
21AC_PREREQ(2.52)
22AC_CONFIG_SRCDIR([rngd.c])
23AM_INIT_AUTOMAKE([gnu])
24AC_CONFIG_HEADERS([rng-tools-config.h])
25
26dnl Make sure anyone changing configure.ac/Makefile.am has a clue
27AM_MAINTAINER_MODE
28
29dnl Checks for programs
30AC_PROG_CC
31AC_PROG_RANLIB
32AC_PROG_GCC_TRADITIONAL
33
34dnl Checks for header files.
35dnl AC_HEADER_STDC
36dnl AC_CHECK_HEADERS(sys/ioctl.h unistd.h)
37
38dnl Checks for typedefs, structures, and compiler characteristics.
39dnl AC_TYPE_SIZE_T
40dnl AC_TYPE_PID_T
41
42dnl -----------------------------
43dnl Checks for required libraries
44dnl -----------------------------
45
46dnl -------------------------------------
47dnl Checks for optional library functions
48dnl -------------------------------------
49
50dnl -----------------
51dnl Configure options
52dnl -----------------
53
54dnl --------------------------
55dnl autoconf output generation
56dnl --------------------------
57
58AC_CONFIG_FILES([Makefile contrib/Makefile rngd.8 rngtest.1])
59AC_OUTPUT