X-Git-Url: https://git.distorted.org.uk/~mdw/become/blobdiff_plain/c758e6541ca05409b178dd9629e9337494c49890..e646baee7fc67afb5d7d6a6585ef57b0d2118e2c:/configure.in diff --git a/configure.in b/configure.in index 045f9cb..fd875e0 100644 --- a/configure.in +++ b/configure.in @@ -1,6 +1,6 @@ dnl -*-fundamental-*- dnl -dnl $Id: configure.in,v 1.10 1998/01/12 16:45:21 mdw Exp $ +dnl $Id: configure.in,v 1.17 1999/05/04 16:25:19 mdw Exp $ dnl dnl Source for auto configuration for `become' dnl @@ -28,6 +28,28 @@ dnl Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. dnl----- Revision history --------------------------------------------------- dnl dnl $Log: configure.in,v $ +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 +dnl Revision 1.12 1998/04/23 13:09:24 mdw +dnl Add new option to disable networking. +dnl +dnl Revision 1.11 1998/02/20 17:55:56 mdw +dnl Fix default HTML directory. +dnl dnl Revision 1.10 1998/01/12 16:45:21 mdw dnl Fix copyright date. dnl @@ -65,26 +87,17 @@ dnl Initial revision dnl AC_INIT(src/icrypt.c) -AC_CONFIG_HEADER(config.h) -PACKAGE=become -VERSION=1.2 -AC_DEFINE(VERSION, "1.2 (12 January 1998)") -AC_SUBST(PACKAGE) -AC_SUBST(VERSION) +AM_INIT_AUTOMAKE(become, 1.3.3) +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 --- @@ -100,6 +113,14 @@ esac], [style="l_preserve"]) AC_DEFINE_UNQUOTED(DEFAULT_LOGIN_STYLE, $style) +dnl --- Choose networking options --- + +AC_ARG_ENABLE([network], +[ --disable-network disable the client-server bits of the program], + [if test "$enableval" = "no"; then + AC_DEFINE(NONETWORK) + fi]) + dnl --- Set configuration directory --- AC_ARG_WITH([etcdir], @@ -112,7 +133,7 @@ AC_DEFINE_UNQUOTED(ETCDIR, "$etcdir") AC_ARG_WITH([htmldir], [ --with-htmldir=PATH set directory for HTML documentation [default is PREFIX/html/become]], -[htmldir="$withval"], [htmldir="${prefix}/html/become"]) +[htmldir="$withval"], [htmldir='${prefix}/html/become']) AC_SUBST(htmldir) dnl --- Debugging stuff --- @@ -147,6 +168,10 @@ 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 @@ -168,7 +193,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 --------------------------------------------------