X-Git-Url: https://git.distorted.org.uk/~mdw/become/blobdiff_plain/b0ac4e9dbf14e2b02e8221b145d6c53cbb1f325a..2344499e76fcb03d2690e5f8402104241abf1e53:/configure.in diff --git a/configure.in b/configure.in index 787d501..ff93341 100644 --- a/configure.in +++ b/configure.in @@ -1,6 +1,6 @@ dnl -*-fundamental-*- dnl -dnl $Id: configure.in,v 1.13 1998/04/23 13:34:10 mdw Exp $ +dnl $Id: configure.in,v 1.19 2003/10/12 00:14:44 mdw Exp $ dnl dnl Source for auto configuration for `become' dnl @@ -28,6 +28,26 @@ dnl Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. dnl----- Revision history --------------------------------------------------- dnl dnl $Log: configure.in,v $ +dnl Revision 1.19 2003/10/12 00:14:44 mdw +dnl Major overhaul. Now uses DSA signatures rather than the bogus symmetric +dnl encrypt-and-hope thing. Integrated with mLib and Catacomb. +dnl +dnl Revision 1.18 1999/07/28 09:30:12 mdw +dnl Use new-fangled mdw_TYPE_SSIZE_T macro. +dnl +dnl Revision 1.17 1999/05/04 16:25:19 mdw +dnl Fixes for new version of automake. +dnl +dnl Revision 1.16 1998/06/18 15:15:45 mdw +dnl Set version number properly. D'oh. +dnl +dnl Revision 1.15 1998/06/18 15:11:36 mdw +dnl Change patchlevel. Check for @sigprocmask@, for improved @noise__shell@ +dnl function. +dnl +dnl Revision 1.14 1998/06/08 11:22:16 mdw +dnl Step version number and date. +dnl dnl Revision 1.13 1998/04/23 13:34:10 mdw dnl Release version. dnl @@ -73,27 +93,18 @@ dnl Revision 1.1 1997/07/21 13:47:51 mdw dnl Initial revision dnl -AC_INIT(src/icrypt.c) -AC_CONFIG_HEADER(config.h) -PACKAGE=become -VERSION=1.3 -AC_DEFINE(VERSION, "1.3 (23 April 1998)") -AC_SUBST(PACKAGE) -AC_SUBST(VERSION) +AC_INIT(src/become.c) +AM_INIT_AUTOMAKE(become, 1.4.0) +AM_CONFIG_HEADER(config.h) dnl --- Check for compilers and things --- AC_PROG_CC -AC_PROG_INSTALL -AC_PROG_LEX +mdw_GCC_FLAGS +AM_PROG_LEX AC_CHECK_PROG(AR, ar, ar) AC_PROG_RANLIB -AC_PROG_MAKE_SET AC_PROG_YACC -AC_ARG_PROGRAM -if test "$GCC" = "yes"; then - CFLAGS="$CFLAGS -pedantic -Wall" -fi dnl --- Set default become style --- @@ -134,28 +145,15 @@ AC_SUBST(htmldir) dnl --- Debugging stuff --- -AC_ARG_WITH(electric-fence, -[ --with-electric-fence link programs with Electric Fence], - [if test "$withval" = "yes"; then - AC_CHECK_LIB(efence, malloc) - fi]) - -AC_ARG_ENABLE(debugging, -[ --enable-debugging spews vast swathes of useless information], - [if test "$enableval" = "no"; then - AC_DEFINE(NDEBUG, 1) - fi], - AC_DEFINE(NDEBUG, 1)) - -AC_ARG_ENABLE(tracing, -[ --enable-tracing enable output of tracing information], - [if test "$enableval" = "yes"; then - AC_DEFINE(TRACING) - fi], - AC_DEFINE(TRACING)) +mdw_OPT_EFENCE +mdw_OPT_NDEBUG +mdw_OPT_TRACE dnl --- Libraries --- +mdw_MLIB(2.0.1) +mdw_CATACOMB(2.0.1) + mdw_CHECK_MANYLIBS(socket, socket,, [AC_MSG_ERROR([Socket library not found])]) @@ -164,15 +162,15 @@ mdw_CHECK_MANYLIBS(gethostbyname, resolv nsl,, mdw_CHECK_MANYLIBS(yp_all, nsl, AC_DEFINE(HAVE_YP)) +dnl --- Other functions --- + +AC_CHECK_FUNCS(sigprocmask) + dnl --- Types --- AC_TYPE_PID_T AC_TYPE_UID_T -AC_CHECK_TYPE(ssize_t, int) - -dnl --- Check on type sizes --- - -AC_CHECK_SIZEOF(int, 2) +mdw_TYPE_SSIZE_T dnl --- Set the path separator --- @@ -185,7 +183,6 @@ AC_CHECK_FUNCS(getrusage vtimes) dnl --- Done --- -AC_OUTPUT(Makefile conf/Makefile src/Makefile manual/Makefile, - [test -z "$CONFIG_HEADERS" || echo timestamp >stamp-h]) +AC_OUTPUT(Makefile conf/Makefile src/Makefile manual/Makefile) dnl----- That's all, folks --------------------------------------------------