Added `ElectricFence' support, and support for the `deep' package structure.
authormdw <mdw>
Thu, 7 Aug 1997 09:34:32 +0000 (09:34 +0000)
committermdw <mdw>
Thu, 7 Aug 1997 09:34:32 +0000 (09:34 +0000)
configure.in

index 9bbf801..498d5b5 100644 (file)
@@ -1,6 +1,6 @@
 dnl -*-fundamental-*-
 dnl
-dnl $Id: configure.in,v 1.2 1997/08/04 10:24:21 mdw Exp $
+dnl $Id: configure.in,v 1.3 1997/08/07 09:34:32 mdw Exp $
 dnl
 dnl Source for auto configuration for `become'
 dnl
@@ -28,14 +28,17 @@ dnl Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 dnl----- Revision history ---------------------------------------------------
 dnl
 dnl $Log: configure.in,v $
+dnl Revision 1.3  1997/08/07 09:34:32  mdw
+dnl Added `ElectricFence' support, and support for the `deep' package structure.
+dnl
 dnl Revision 1.2  1997/08/04 10:24:21  mdw
 dnl Sources placed under CVS control.
 dnl
-# Revision 1.1  1997/07/21  13:47:51  mdw
-# Initial revision
-#
+dnl Revision 1.1  1997/07/21  13:47:51  mdw
+dnl Initial revision
+dnl
 
-AC_INIT(icrypt.c)
+AC_INIT(src/icrypt.c)
 AC_CONFIG_HEADER(config.h)
 PACKAGE=become VERSION=1.2-pre
 AC_SUBST(PACKAGE)
@@ -49,6 +52,7 @@ AC_PROG_INSTALL
 AC_PROG_LEX
 AC_CHECK_PROG(AR, ar, ar)
 AC_PROG_RANLIB
+AC_PROG_MAKE_SET
 AC_PROG_YACC
 AC_ARG_PROGRAM
 if test "$ac_cv_prog_gcc" = "yes"; then
@@ -85,6 +89,12 @@ AC_CHECK_FUNCS(getrusage vtimes)
 
 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
@@ -108,6 +118,6 @@ prefix="$mdw_save_prefix"
 
 dnl --- Done ---
 
-AC_OUTPUT(Makefile)
+AC_OUTPUT(Makefile src/Makefile manual/Makefile)
 
 dnl----- That's all, folks --------------------------------------------------