X-Git-Url: https://git.distorted.org.uk/u/mdw/catacomb/blobdiff_plain/4992e2374315905b4652c897c27e6fd21c68eda7..a6864ad907239985bd1f6eab414cec6171930d46:/configure.in diff --git a/configure.in b/configure.in index e0deb20..30c2816 100644 --- a/configure.in +++ b/configure.in @@ -1,6 +1,6 @@ -dnl -*-fundamental-*- +dnl -*-m4-*- dnl -dnl $Id: configure.in,v 1.14 2000/06/25 12:59:09 mdw Exp $ +dnl $Id$ dnl dnl Autoconfiguration for Catacomb dnl @@ -15,71 +15,28 @@ dnl Catacomb is free software; you can redistribute it and/or modify dnl it under the terms of the GNU Library General Public License as dnl published by the Free Software Foundation; either version 2 of the dnl License, or (at your option) any later version. -dnl +dnl dnl Catacomb is distributed in the hope that it will be useful, dnl but WITHOUT ANY WARRANTY; without even the implied warranty of dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the dnl GNU Library General Public License for more details. -dnl +dnl dnl You should have received a copy of the GNU Library General Public dnl License along with Catacomb; if not, write to the Free dnl Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, dnl MA 02111-1307, USA. -dnl ----- Revision history -------------------------------------------------- -dnl -dnl $Log: configure.in,v $ -dnl Revision 1.14 2000/06/25 12:59:09 mdw -dnl Version bump. -dnl -dnl Revision 1.13 2000/06/17 13:51:03 mdw -dnl Whoops. Too eager with the mLib version. -dnl -dnl Revision 1.12 2000/06/17 12:57:47 mdw -dnl New free counter noise generator, for use if /dev/random is -dnl unavailable. -dnl -dnl Revision 1.11 2000/06/17 10:51:23 mdw -dnl Version number changes. Find maths library for Maurer's test. -dnl -dnl Revision 1.10 1999/12/22 16:03:31 mdw -dnl New mLib version. Find socket functions for pixie. -dnl -dnl Revision 1.7 1999/11/13 01:55:48 mdw -dnl Don't be pedantic, because using `long long' as a multiprecision type -dnl gets complained about. -dnl -dnl Revision 1.6 1999/11/11 18:56:14 mdw -dnl Use `libtool' to generate a shared library. -dnl -dnl Revision 1.5 1999/11/11 17:47:34 mdw -dnl Updates for new configuration system, and `mptypes' generator. -dnl -dnl Revision 1.4 1999/11/11 00:58:19 mdw -dnl Use canned check for `ssize_t'. -dnl -dnl Revision 1.3 1999/10/24 10:20:36 mdw -dnl Modify for standalone distribution. The library's getting far too large -dnl to be sensibly embedded in other programs. -dnl -dnl Revision 1.2 1999/10/23 12:56:25 mdw -dnl Version number change. -dnl -dnl Revision 1.1 1999/09/03 08:41:11 mdw -dnl Initial import. -dnl - dnl --- Boring boilerplate --- AC_INIT(blkc.h) -AM_INIT_AUTOMAKE(catacomb, 2.0.0pre2) +AM_INIT_AUTOMAKE(catacomb, 2.1.1) AM_CONFIG_HEADER(config.h) dnl --- Make sure I can compile and build libraries --- AC_PROG_CC AM_PROG_LIBTOOL -mdw_GCC_FLAGS(-Wall) +AX_CFLAGS_WARN_ALL AC_PROG_YACC @@ -90,16 +47,18 @@ AC_HEADER_STDC dnl --- Check for various important system types --- -AC_TYPE_PID_T -AC_TYPE_SIZE_T +AC_CHECK_TYPE(pid_t, int) +AC_CHECK_TYPE(size_t, unsigned) AC_TYPE_UID_T AC_CHECK_TYPE(time_t, long) -mdw_TYPE_SSIZE_T +AC_CHECK_TYPE(ssize_t, int) dnl --- The maths library, for Maurer's test --- -mdw_CHECK_MANYLIBS(log, m,,, [#include ], [2]) -mdw_CHECK_MANYLIBS(sqrt, m,,, [#include ], [2]) +OLIBS=$LIBS +AC_SEARCH_LIBS(log, m) +AC_SEARCH_LIBS(sqrt, m) +AC_SUBST([CATACOMB_LIBS], [$LIBS]) LIBS=$OLIBS dnl --- Functions used for noise-gathering --- @@ -118,17 +77,39 @@ sigsetjmp(j, 1);], [catacomb_cv_freewheel=yes], [catacomb_cv_freewheel=no])]) if test "$catacomb_cv_freewheel" = "yes"; then - AC_DEFINE([USE_FREEWHEEL]) + AC_DEFINE([USE_FREEWHEEL], [1], + [Define if you want to use the freewheel noise generator.]) fi dnl --- Support for the passphrase pixie --- -mdw_CHECK_MANYLIBS(socket, socket) +OLIBS=$LIBS +AC_SEARCH_LIBS(socket, socket) +AC_SUBST([PIXIE_LIBS], [$LIBS]) LIBS=$OLIBS AC_CHECK_FUNCS(mlock) +dnl --- Debugging things --- + +AC_ARG_ENABLE([mpw], + [AS_HELP_STRING([--enable-mpw], + [force small-width mp digits])], + [case "$enableval" in + y*|t*|short) + AC_DEFINE([FORCE_MPW_SHORT], [1], + [Define to force small-width mp digits.]) + ;; + cussid) + AC_DEFINE([FORCE_MPW_CUSSID], [1], + [Define to force strange-width mp digits.]) + ;; + esac]) + dnl --- Done --- -mdw_MLIB(2.0.0pre1) -AC_OUTPUT(Makefile tests/Makefile catacomb-config qcc, chmod 755 qcc) +PKG_CHECK_MODULES(mLib, mLib >= 2.0.4) +CFLAGS="$CFLAGS $mLib_CFLAGS" +LIBS="$LIBS $mLib_LIBS" +AC_OUTPUT(Makefile tests/Makefile catacomb.pc qcc, + chmod 755 qcc) dnl ----- That's all, folks -------------------------------------------------