Fix two bugs causing mis-configuration of modules.
authorChris Hanson <org/chris-hanson/cph>
Fri, 12 Jan 2007 03:14:55 +0000 (03:14 +0000)
committerChris Hanson <org/chris-hanson/cph>
Fri, 12 Jan 2007 03:14:55 +0000 (03:14 +0000)
v7/src/microcode/configure.ac

index 83566a17b6171a00db8ca770ca4753f8f92542eb..a7e5001e1b8a05f8c6c6903eedbf27c6c3e77261 100644 (file)
@@ -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 <mcrypt.h> 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 <db.h>])
+           ])
        ])
 fi