blowfish-mktab.c: Remove the eye-candy progress meter.
[u/mdw/catacomb] / configure.in
CommitLineData
2ee993fe 1dnl -*-m4-*-
d03ab969 2dnl
e4fb6b4d 3dnl $Id$
d03ab969 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.
45c0fd36 18dnl
d03ab969 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.
45c0fd36 23dnl
d03ab969 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
6fcd939f 29dnl --- Boring boilerplate ---
d03ab969 30
7280f7f4
MW
31mdw_AUTO_VERSION
32AC_INIT(catacomb, AUTO_VERSION, mdw@distorted.org.uk)
7db733d4 33mdw_SILENT_RULES
7280f7f4 34AC_CONFIG_SRCDIR(blkc.h)
ce5cb7e4 35AC_CONFIG_AUX_DIR(.)
7280f7f4
MW
36AM_CONFIG_HEADER(config.h)
37AM_INIT_AUTOMAKE(foreign)
d03ab969 38
39dnl --- Make sure I can compile and build libraries ---
40
41AC_PROG_CC
ffc086db 42AM_PROG_LIBTOOL
4263ac2b 43AX_CFLAGS_WARN_ALL
097fb6f2 44mdw_LIBTOOL_VERSION_INFO
d03ab969 45
46AC_PROG_YACC
47
48dnl --- Actually, I assume these exist anyway ---
49
50AC_CHECK_HEADERS(unistd.h)
51AC_HEADER_STDC
52
53dnl --- Check for various important system types ---
54
4263ac2b
MW
55AC_CHECK_TYPE(pid_t, int)
56AC_CHECK_TYPE(size_t, unsigned)
d03ab969 57AC_TYPE_UID_T
58AC_CHECK_TYPE(time_t, long)
4263ac2b 59AC_CHECK_TYPE(ssize_t, int)
d03ab969 60
93100380 61dnl --- The maths library, for Maurer's test ---
62
4263ac2b
MW
63OLIBS=$LIBS
64AC_SEARCH_LIBS(log, m)
65AC_SEARCH_LIBS(sqrt, m)
66AC_SUBST([CATACOMB_LIBS], [$LIBS]) LIBS=$OLIBS
93100380 67
25f654a7 68dnl --- Functions used for noise-gathering ---
d03ab969 69
70AC_CHECK_FUNCS(setgroups)
a094cab7 71
25f654a7 72AC_CACHE_CHECK([whether the freewheel noise generator will work],
73[catacomb_cv_freewheel],
74[AC_TRY_LINK([
75#include <setjmp.h>
76#include <sys/time.h>
77],
78[struct itimerval itv = { { 0, 0 }, { 0, 5000 } };
79jmp_buf j;
80setitimer(ITIMER_REAL, &itv, 0);
81sigsetjmp(j, 1);],
82[catacomb_cv_freewheel=yes],
83[catacomb_cv_freewheel=no])])
84if test "$catacomb_cv_freewheel" = "yes"; then
e4fb6b4d 85 AC_DEFINE([USE_FREEWHEEL], [1],
45c0fd36 86 [Define if you want to use the freewheel noise generator.])
25f654a7 87fi
88
db2623e1 89dnl --- Support for the passphrase pixie ---
90
4263ac2b
MW
91OLIBS=$LIBS
92AC_SEARCH_LIBS(socket, socket)
93AC_SUBST([PIXIE_LIBS], [$LIBS]) LIBS=$OLIBS
db2623e1 94AC_CHECK_FUNCS(mlock)
95
c29970a7
MW
96dnl --- Debugging things ---
97
45c0fd36
MW
98AC_ARG_ENABLE([mpw],
99 [AS_HELP_STRING([--enable-mpw],
100 [force small-width mp digits])],
101 [case "$enableval" in
102 y*|t*|short)
103 AC_DEFINE([FORCE_MPW_SHORT], [1],
104 [Define to force small-width mp digits.])
105 ;;
106 cussid)
107 AC_DEFINE([FORCE_MPW_CUSSID], [1],
108 [Define to force strange-width mp digits.])
109 ;;
110 esac])
c29970a7 111
d03ab969 112dnl --- Done ---
113
4263ac2b
MW
114PKG_CHECK_MODULES(mLib, mLib >= 2.0.4)
115CFLAGS="$CFLAGS $mLib_CFLAGS"
116LIBS="$LIBS $mLib_LIBS"
7db733d4 117AC_OUTPUT(Makefile)
d03ab969 118
119dnl ----- That's all, folks -------------------------------------------------