configure.in: Put the auxiliary scripts in a useful place.
[u/mdw/catacomb] / configure.in
... / ...
CommitLineData
1dnl -*-m4-*-
2dnl
3dnl $Id$
4dnl
5dnl Autoconfiguration for Catacomb
6dnl
7dnl (c) 1999 Straylight/Edgeware
8dnl
9
10dnl ----- Licensing notice --------------------------------------------------
11dnl
12dnl This file is part of Catacomb.
13dnl
14dnl Catacomb is free software; you can redistribute it and/or modify
15dnl it under the terms of the GNU Library General Public License as
16dnl published by the Free Software Foundation; either version 2 of the
17dnl License, or (at your option) any later version.
18dnl
19dnl Catacomb is distributed in the hope that it will be useful,
20dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
21dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22dnl GNU Library General Public License for more details.
23dnl
24dnl You should have received a copy of the GNU Library General Public
25dnl License along with Catacomb; if not, write to the Free
26dnl Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
27dnl MA 02111-1307, USA.
28
29dnl --- Boring boilerplate ---
30
31AC_INIT(blkc.h)
32AM_CONFIG_HEADER(config.h)
33AC_CONFIG_AUX_DIR(.)
34AM_INIT_AUTOMAKE(catacomb, 2.1.1)
35
36dnl --- Make sure I can compile and build libraries ---
37
38AC_PROG_CC
39AM_PROG_LIBTOOL
40AX_CFLAGS_WARN_ALL
41
42AC_PROG_YACC
43
44dnl --- Actually, I assume these exist anyway ---
45
46AC_CHECK_HEADERS(unistd.h)
47AC_HEADER_STDC
48
49dnl --- Check for various important system types ---
50
51AC_CHECK_TYPE(pid_t, int)
52AC_CHECK_TYPE(size_t, unsigned)
53AC_TYPE_UID_T
54AC_CHECK_TYPE(time_t, long)
55AC_CHECK_TYPE(ssize_t, int)
56
57dnl --- The maths library, for Maurer's test ---
58
59OLIBS=$LIBS
60AC_SEARCH_LIBS(log, m)
61AC_SEARCH_LIBS(sqrt, m)
62AC_SUBST([CATACOMB_LIBS], [$LIBS]) LIBS=$OLIBS
63
64dnl --- Functions used for noise-gathering ---
65
66AC_CHECK_FUNCS(setgroups)
67
68AC_CACHE_CHECK([whether the freewheel noise generator will work],
69[catacomb_cv_freewheel],
70[AC_TRY_LINK([
71#include <setjmp.h>
72#include <sys/time.h>
73],
74[struct itimerval itv = { { 0, 0 }, { 0, 5000 } };
75jmp_buf j;
76setitimer(ITIMER_REAL, &itv, 0);
77sigsetjmp(j, 1);],
78[catacomb_cv_freewheel=yes],
79[catacomb_cv_freewheel=no])])
80if test "$catacomb_cv_freewheel" = "yes"; then
81 AC_DEFINE([USE_FREEWHEEL], [1],
82 [Define if you want to use the freewheel noise generator.])
83fi
84
85dnl --- Support for the passphrase pixie ---
86
87OLIBS=$LIBS
88AC_SEARCH_LIBS(socket, socket)
89AC_SUBST([PIXIE_LIBS], [$LIBS]) LIBS=$OLIBS
90AC_CHECK_FUNCS(mlock)
91
92dnl --- Debugging things ---
93
94AC_ARG_ENABLE([mpw],
95 [AS_HELP_STRING([--enable-mpw],
96 [force small-width mp digits])],
97 [case "$enableval" in
98 y*|t*|short)
99 AC_DEFINE([FORCE_MPW_SHORT], [1],
100 [Define to force small-width mp digits.])
101 ;;
102 cussid)
103 AC_DEFINE([FORCE_MPW_CUSSID], [1],
104 [Define to force strange-width mp digits.])
105 ;;
106 esac])
107
108dnl --- Done ---
109
110PKG_CHECK_MODULES(mLib, mLib >= 2.0.4)
111CFLAGS="$CFLAGS $mLib_CFLAGS"
112LIBS="$LIBS $mLib_LIBS"
113AC_OUTPUT(Makefile tests/Makefile catacomb.pc qcc,
114 chmod 755 qcc)
115
116dnl ----- That's all, folks -------------------------------------------------