Change library to `libbecome.a', for aesthetic reasons.
[become] / configure.in
index 382aa5a..fd875e0 100644 (file)
@@ -1,6 +1,6 @@
 dnl -*-fundamental-*-
 dnl
-dnl $Id: configure.in,v 1.16 1998/06/18 15:15:45 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,7 +28,10 @@ dnl Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 dnl----- Revision history ---------------------------------------------------
 dnl
 dnl $Log: configure.in,v $
-dnl Revision 1.16  1998/06/18 15:15:45  mdw
+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
@@ -84,26 +87,17 @@ dnl Initial revision
 dnl
 
 AC_INIT(src/icrypt.c)
-AC_CONFIG_HEADER(config.h)
-PACKAGE=become
-VERSION=1.3.2
-AC_DEFINE(VERSION, "1.3.2 (18 June 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 ---
 
@@ -199,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 --------------------------------------------------