X-Git-Url: https://git.distorted.org.uk/u/mdw/catacomb/blobdiff_plain/6fcd939f631184aac1cebb815f996ddb6e2120c2..92090e34f3c26412359b44640064fef767b3a57d:/configure.in diff --git a/configure.in b/configure.in index 4a6ba52..13c0c22 100644 --- a/configure.in +++ b/configure.in @@ -1,6 +1,6 @@ dnl -*-fundamental-*- dnl -dnl $Id: configure.in,v 1.2 1999/10/23 12:56:25 mdw Exp $ +dnl $Id: configure.in,v 1.11 2000/06/17 10:51:23 mdw Exp $ dnl dnl Autoconfiguration for Catacomb dnl @@ -29,8 +29,28 @@ dnl MA 02111-1307, USA. dnl ----- Revision history -------------------------------------------------- dnl dnl $Log: configure.in,v $ -dnl Revision 1.2 1999/10/23 12:56:25 mdw -dnl Version number change. +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. @@ -42,15 +62,14 @@ dnl dnl --- Boring boilerplate --- AC_INIT(blkc.h) -AM_INIT_AUTOMAKE(catacomb, 1.0.0pre2) +AM_INIT_AUTOMAKE(catacomb, 2.0.0) AM_CONFIG_HEADER(config.h) dnl --- Make sure I can compile and build libraries --- AC_PROG_CC -AC_CHECK_PROG(AR, ar, ar) -AC_PROG_RANLIB -mdw_MLIB +AM_PROG_LIBTOOL +mdw_GCC_FLAGS(-Wall) AC_PROG_YACC @@ -62,37 +81,30 @@ AC_HEADER_STDC dnl --- Check for various important system types --- AC_TYPE_PID_T - -dnl --- Tedious check for ssize_t --- -dnl -dnl glibc-2 puts ssize_t in a strange place. - -AC_CACHE_CHECK(for ssize_t, cat_cv_type_ssize_t, -[AC_EGREP_CPP(ssize_t, -[#include -#if HAVE_UNISTD_H -#inlcude -#endif -#if STDC_HEADERS -#include -#include -#endif], -cat_cv_type_ssize_t=yes, cat_cv_type_ssize_t=no)]) -if test $cat_cv_type_ssize_t = no; then - AC_DEFINE(ssize_t, int) -fi +AC_TYPE_SIZE_T AC_TYPE_UID_T AC_CHECK_TYPE(time_t, long) mdw_TYPE_SSIZE_T +dnl --- The maths library, for Maurer's test --- + +mdw_CHECK_MANYLIBS(log, m,,, [#include ], [2]) +mdw_CHECK_MANYLIBS(sqrt, m,,, [#include ], [2]) + dnl --- Can I call `initgroups'? --- dnl dnl This is used in noise-gathering. AC_CHECK_FUNCS(setgroups) -AC_OUTPUT(Makefile) + +dnl --- Support for the passphrase pixie --- + +mdw_CHECK_MANYLIBS(socket, socket) +AC_CHECK_FUNCS(mlock) + dnl --- Done --- -AC_OUTPUT(Makefile catacomb-config) +mdw_MLIB(2.0.0) +AC_OUTPUT(Makefile tests/Makefile catacomb-config qcc, chmod 755 qcc) dnl ----- That's all, folks -------------------------------------------------