[SSSD] [PATCH] Raise the required version of libdhash

Sumit Bose sbose at redhat.com
Wed Oct 13 06:06:22 UTC 2010


Hi,

this patch increase the required version number of libdhash. Older
version cannot update hash entries with hash_enter(). I think we
currently do not use hash_enter() to update entries (I had a netgroup
patch where it was used, but since we let glibc do all the unrolling and
loop-detection it is not needed anymore).

To avoid surprises we should check for the latest version of libdhash.

bye,
Sumit
-------------- next part --------------
From 47d9ad70d126a4c3a92b750c330978980d559fcb Mon Sep 17 00:00:00 2001
From: Sumit Bose <sbose at redhat.com>
Date: Wed, 13 Oct 2010 07:56:49 +0200
Subject: [PATCH] Raise the required version of libdhash

libdhash version 0.4.2 is required because older versions cannot update
hash entries.
---
 src/external/libdhash.m4 |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/external/libdhash.m4 b/src/external/libdhash.m4
index 4d5c5d1..f0184d1 100644
--- a/src/external/libdhash.m4
+++ b/src/external/libdhash.m4
@@ -3,7 +3,7 @@ AC_SUBST(DHASH_CFLAGS)
 AC_SUBST(DHASH_LIBS)
 
 PKG_CHECK_MODULES(DHASH,
-    dhash >= 0.4.0,
+    dhash >= 0.4.2,
     ,
     AC_MSG_ERROR("Please install libdhash-devel")
     )
-- 
1.7.2.3



More information about the sssd-devel mailing list