diff options
author | jaortega <jaortega> | 2000-11-18 00:50:31 +0000 |
---|---|---|
committer | jaortega <jaortega> | 2000-11-18 00:50:31 +0000 |
commit | f169f8ac5a447013aa896340e6372e6b9ebb178b (patch) | |
tree | a5f141f361957159956d82c74586499b806683f2 | |
parent | a67987db371a5f8a4ff96485bd610cedb6e94a21 (diff) | |
download | mdk-f169f8ac5a447013aa896340e6372e6b9ebb178b.tar.gz mdk-f169f8ac5a447013aa896340e6372e6b9ebb178b.tar.bz2 |
new try at a fix for configuration in Mandrake 7.0
-rw-r--r-- | configure.in | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/configure.in b/configure.in index dbf3774..3ff5d91 100644 --- a/configure.in +++ b/configure.in @@ -31,12 +31,12 @@ test "x$prefix" = xNONE && prefix=$ac_default_prefix AC_DEFINE_UNQUOTED(LOCALEDIR, "${prefix}/share/locale") dnl Check for readline and history -AC_CHECK_LIB(readline, readline, , - [AC_MSG_WARN(Cannot find GNU readline lib, using default flag) - LIBS = "$LIBS -lreadline"]) +AC_CHECK_LIB(readline, completion_matches, , + [AC_MSG_WARN(Cannot find GNU readline lib... using default flag) + LIBS="$LIBS -lreadline"]) AC_CHECK_LIB(history, add_history, , - [AC_MSG_WARN(Cannot find GNU history lib, using default flag) - LIBS = "$LIBS -lhistory"]) + [AC_MSG_WARN(Cannot find GNU history lib... using default flag) + LIBS="$LIBS -lhistory"]) dnl Check for glib AM_PATH_GLIB(1.2.0, |