projects
/
collectd.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2e23f7b
)
configure.in: Check libgcrypt minimum version 1.2.0.
author
Doug MacEachern
<dougm@hyperic.com>
Fri, 8 May 2009 06:13:48 +0000
(23:13 -0700)
committer
Florian Forster
<octo@huhu.verplant.org>
Sat, 9 May 2009 09:05:41 +0000
(11:05 +0200)
Signed-off-by: Doug MacEachern <dougm@hyperic.com>
Signed-off-by: Florian Forster <octo@huhu.verplant.org>
configure.in
patch
|
blob
|
history
diff --git
a/configure.in
b/configure.in
index
3770910
..
e86eab6
100644
(file)
--- a/
configure.in
+++ b/
configure.in
@@
-1383,6
+1383,10
@@
then
AC_CHECK_LIB(gcrypt, gcry_md_hash_buffer,
[with_libgcrypt="yes"],
[with_libgcrypt="no (symbol gcry_md_hash_buffer not found)"])
+
+ if test "$with_libgcrypt" != "no"; then
+ AM_PATH_LIBGCRYPT(1:1.2.0,,with_libgcrypt="no (version 1.2.0+ required)")
+ fi
fi
CPPFLAGS="$SAVE_CPPFLAGS"