diff options
author | Matthias Andree <emma@rho.emma.line.org> | 2010-03-20 03:34:44 +0100 |
---|---|---|
committer | Matthias Andree <emma@rho.emma.line.org> | 2010-03-20 03:34:44 +0100 |
commit | 0dc8e1d7403b5f7afa815f6d2ff21cad250d20c5 (patch) | |
tree | 693569f2f6164eeebff243e70d5608708363c960 /configure.ac | |
parent | 0182e41d9421292cb4ab4979d4a79b78557344b3 (diff) | |
download | fetchmail-0dc8e1d7403b5f7afa815f6d2ff21cad250d20c5.tar.gz fetchmail-0dc8e1d7403b5f7afa815f6d2ff21cad250d20c5.tar.bz2 fetchmail-0dc8e1d7403b5f7afa815f6d2ff21cad250d20c5.zip |
Correct MD5Init library check.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index b5c07e78..5e6fff15 100644 --- a/configure.ac +++ b/configure.ac @@ -170,7 +170,7 @@ dnl [LIBS="$LIBS -lintl"]) AC_REPLACE_FUNCS([strstr strcasecmp memmove stpcpy strlcpy strlcat]) -AC_SEARCH_LIBS(MD5Init, [md5, md], [], +AC_SEARCH_LIBS(MD5Init, [md5 md], [], [AC_LIBSOURCE(md5c.c) EXTRAOBJ="$EXTRAOBJ md5c.\$(OBJEXT)"]) @@ -844,6 +844,7 @@ then LDFLAGS="$ac_savedLDFLAGS" fi]) +dnl for libesmtp/ modules: ACX_WHICH_GETHOSTBYNAME_R ### use option --with-hesiod=DIR to point at a HESIOD directory |