progs: Fix a number of format-related errors.
[u/mdw/catacomb] / configure.ac
CommitLineData
ba6e6b64
MW
1dnl -*-autoconf-*-
2dnl
3dnl Configuration script for Catacomb
4dnl
5dnl (c) 2013 Straylight/Edgeware
6dnl
7
8dnl----- Licensing notice ---------------------------------------------------
9dnl
10dnl This file is part of Catacomb.
11dnl
12dnl Catacomb is free software; you can redistribute it and/or modify
13dnl it under the terms of the GNU Library General Public License as
14dnl published by the Free Software Foundation; either version 2 of the
15dnl License, or (at your option) any later version.
16dnl
17dnl Catacomb is distributed in the hope that it will be useful,
18dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
19dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20dnl GNU Library General Public License for more details.
21dnl
22dnl You should have received a copy of the GNU Library General Public
23dnl License along with Catacomb; if not, write to the Free
24dnl Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
25dnl MA 02111-1307, USA.
26
27dnl--------------------------------------------------------------------------
28dnl Initialization.
29
30mdw_AUTO_VERSION
31AC_INIT([catacomb], AUTO_VERSION, [mdw@distorted.org.uk])
32AC_CONFIG_SRCDIR([catacomb.pc.in])
33AC_CONFIG_AUX_DIR([config])
34AM_INIT_AUTOMAKE([foreign parallel-tests])
35mdw_SILENT_RULES
36
37AC_PROG_CC
38AX_CFLAGS_WARN_ALL
39AM_PROG_LIBTOOL
40mdw_LIBTOOL_VERSION_INFO
41
42AC_PROG_YACC
43
44AC_SUBST(AM_CFLAGS)
45
46dnl--------------------------------------------------------------------------
47dnl C programming environment.
48
0f00dc4c
MW
49dnl Find out if we're cross-compiling.
50AM_CONDITIONAL([CROSS_COMPILING], [test "$cross_compiling" = yes])
51
ba6e6b64
MW
52dnl Various standard types.
53AC_CHECK_TYPE([pid_t], [int])
54AC_TYPE_UID_T
55AC_CHECK_TYPE([ssize_t], [int])
56
57dnl The maths library.
58mdw_ORIG_LIBS=$LIBS
59AC_SEARCH_LIBS([log], [m])
60AC_SEARCH_LIBS([sqrt], [m])
61AC_SUBST([CATACOMB_LIBS], [$LIBS])
62LIBS=$mdw_ORIG_LIBS
63
1c3d4cf5
MW
64dnl Find out whether very long integer types are available.
65AC_CHECK_HEADERS([stdint.h])
66AC_SUBST([have_stdint_h])
67AC_C_LONG_LONG
68
69dnl Find the bit lengths of the obvious integer types. This will be useful
70dnl when deciding on a representation for multiprecision integers.
71type_bits="" type_bits_sep=""
72AC_DEFUN([catacomb_UINT_BITS],
73 [mdw_UINT_BITS([$2], [$1])
74 type_bits="$type_bits$type_bits_sep('$1', $[]$1_bits)"
75 type_bits_sep=", "])
76catacomb_UINT_BITS([uchar], [unsigned char])
77catacomb_UINT_BITS([ushort], [unsigned short])
78catacomb_UINT_BITS([uint], [unsigned int])
79catacomb_UINT_BITS([ulong], [unsigned long])
80if test "$ac_cv_c_long_long" = "yes"; then
81 catacomb_UINT_BITS([ullong], [unsigned long long])
82fi
83if test "$ac_cv_header_stdint_h" = "yes"; then
84 catacomb_UINT_BITS([uintmax], [uintmax_t])
85fi
86AC_SUBST([type_bits])
87
88dnl Determine the limits of common C integer types.
89limits="" limits_sep=""
90AC_DEFUN([catacomb_COMPILE_TIME_CONSTANT],
91 [case "$2" in
92 =*)
93 $1="$2"; $1=${$1#=}
94 ;;
95 *)
96 AC_CACHE_CHECK([compile-time value of $2], [mdw_cv_constant_$3],
97 [mdw_PROBE_CONSTANT([mdw_cv_constant_$3], [$2], [$4])])
98 $1=$mdw_cv_constant_$3
99 ;;
100 esac])
101AC_DEFUN([catacomb_LIMIT],
102[catacomb_COMPILE_TIME_CONSTANT([lo], [$2], [$1_min],
103[#include <limits.h>
104#include <stddef.h>])
105 catacomb_COMPILE_TIME_CONSTANT([hi], [$3], [$1_max],
106[#include <limits.h>
107#include <stddef.h>])
108 limits="$limits$limits_sep('$1', $lo, $hi)" limits_sep=", "])
109catacomb_LIMIT([SCHAR], [SCHAR_MIN], [SCHAR_MAX])
110catacomb_LIMIT([CHAR], [CHAR_MIN], [CHAR_MAX])
111catacomb_LIMIT([UCHAR], [=0], [UCHAR_MAX])
112catacomb_LIMIT([UINT8], [=0], [=0xff])
113catacomb_LIMIT([SHRT], [SHRT_MIN], [SHRT_MAX])
114catacomb_LIMIT([USHRT], [=0], [USHRT_MAX])
115catacomb_LIMIT([UINT16], [=0], [=0xffff])
116catacomb_LIMIT([INT], [INT_MIN], [INT_MAX])
117catacomb_LIMIT([UINT], [=0], [UINT_MAX])
118catacomb_LIMIT([LONG], [LONG_MIN], [LONG_MAX])
119catacomb_LIMIT([ULONG], [=0], [ULONG_MAX])
120catacomb_LIMIT([UINT32], [=0], [=0xffffffff])
121if test "$ac_cv_c_long_long" = "yes"; then
122 catacomb_LIMIT([LLONG], [LLONG_MIN], [LLONG_MAX])
123 catacomb_LIMIT([ULLONG], [=0], [ULLONG_MAX])
124fi
125catacomb_LIMIT([SIZET], [=0], [~(size_t)0])
126AC_SUBST([limits])
127
ba6e6b64
MW
128dnl Functions used for noise-gathering.
129AC_CHECK_FUNCS([setgroups])
130AC_CACHE_CHECK([whether the freewheel noise generator will work],
131 [catacomb_cv_freewheel],
132[AC_TRY_LINK(
133[#include <setjmp.h>
134#include <sys/time.h>],
135[struct itimerval itv = { { 0, 0 }, { 0, 5000 } };
136jmp_buf j;
137setitimer(ITIMER_REAL, &itv, 0);
138sigsetjump(j, 1);],
139[catacomb_cv_freewheel=yes],
140[catacomb_cv_freewheel=no])])
141case $catacomb_cv_freewheel in
142 yes)
143 AC_DEFINE([USE_FREEWHEEL], [1],
144 [Define if you want to use the freewheel noise generator.])
145 ;;
146esac
147
148dnl Support for the passphrase pixie.
149mdw_ORIG_LIBS=$LIBS
150AC_SEARCH_LIBS([socket], [socket])
151AC_SUBST([PIXIE_LIBS], [$LIBS])
152LIBS=$mdw_ORIG_LIBS
153
154dnl Memory locking support.
155AC_CHECK_FUNCS([mlock])
156
157dnl Necessary support libraries.
158PKG_CHECK_MODULES([mLib], [mLib >= 2.0.4])
159AM_CFLAGS="$AM_CFLAGS $mLib_CFLAGS"
160
161dnl--------------------------------------------------------------------------
162dnl Python.
163
164dnl Make sure we have a suitable version.
165AM_PATH_PYTHON([2.5])
166
167dnl--------------------------------------------------------------------------
168dnl Special debugging options.
169
170AC_ARG_ENABLE([mpw],
171 [AS_HELP_STRING([--enable-mpw], [force small-width mp digits])],
172 [case "$enableval" in
173 y*|t*|short)
174 AC_DEFINE([FORCE_MPW_SHORT], [1],
175 [Define to force small-width mp digits.])
176 ;;
177 cussid)
178 AC_DEFINE([FORCE_MPW_CUSSID], [1],
179 [Define to force strange-width mp digits.])
180 ;;
181 esac])
182
183dnl--------------------------------------------------------------------------
184dnl Produce output.
185
186AC_CONFIG_HEADER([config/config.h])
187
188AC_CONFIG_FILES(
0f00dc4c
MW
189 [Makefile]
190 [base/Makefile]
191 [key/Makefile]
192 [math/Makefile]
193 [misc/Makefile]
194 [pub/Makefile]
195 [rand/Makefile]
196 [symm/Makefile]
197 [progs/Makefile])
ba6e6b64
MW
198AC_OUTPUT
199
200dnl----- That's all, folks --------------------------------------------------