From 140a6a04ef2a09142c27b45eb392c6fc8f89b392 Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Fri, 12 Jan 2007 03:14:55 +0000 Subject: [PATCH] Fix two bugs causing mis-configuration of modules. --- v7/src/microcode/configure.ac | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/v7/src/microcode/configure.ac b/v7/src/microcode/configure.ac index 83566a17b..a7e5001e1 100644 --- a/v7/src/microcode/configure.ac +++ b/v7/src/microcode/configure.ac @@ -1,7 +1,7 @@ dnl Process this file with autoconf to produce a configure script. AC_INIT([MIT/GNU Scheme microcode], [14.18], [bug-mit-scheme@gnu.org], [mit-scheme]) -AC_REVISION([$Id: configure.ac,v 1.28 2007/01/12 02:57:10 cph Exp $]) +AC_REVISION([$Id: configure.ac,v 1.29 2007/01/12 03:14:55 cph Exp $]) AC_CONFIG_SRCDIR([boot.c]) AC_CONFIG_HEADERS([config.h]) AC_PROG_MAKE_SET @@ -591,7 +591,7 @@ if test "${with_mcrypt}" != no; then [ AC_DEFINE([HAVE_MCRYPT_H], [1], [Define to 1 if you have the header file.]) - AC_CHECK_LIB([tdl], [lt_dlinit], [mc_libs=-lltdl], [mc_libs=]) + AC_CHECK_LIB([ltdl], [lt_dlinit], [mc_libs=-lltdl], [mc_libs=]) AC_CHECK_LIB([mcrypt], [mcrypt_generic_init], [ AC_DEFINE([HAVE_LIBMCRYPT], [1], @@ -640,9 +640,7 @@ if test "${with_db_4}" != no; then [Define to 1 if you have the `db-4' library (-ldb-4).]) MODULE_LIBS="-ldb-4 ${MODULE_LIBS}" MODULE_BASES="${MODULE_BASES} prdb4" - ], - [], - [#include ]) + ]) ]) fi -- 2.25.1