summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin H. Johnson <robbat2@gentoo.org>2010-03-25 07:49:46 +0000
committerRobin H. Johnson <robbat2@gentoo.org>2010-03-25 07:49:46 +0000
commit2d5bbd8fe2440448c872ca76eb68f3cbb2d38467 (patch)
tree4928caa0f8f9634e8ce00a09d2fb3989704ddcb1 /dev-libs/libmemcached
parentAdd note to changelog that bug #308243 linked the upstream ebuild submission. (diff)
downloadgentoo-2-2d5bbd8fe2440448c872ca76eb68f3cbb2d38467.tar.gz
gentoo-2-2d5bbd8fe2440448c872ca76eb68f3cbb2d38467.tar.bz2
gentoo-2-2d5bbd8fe2440448c872ca76eb68f3cbb2d38467.zip
Bug #309835 again: hsieh hash option change configure option upstream, but also had a typo that needed fixing to compile.
(Portage version: 2.2_rc63/cvs/Linux x86_64)
Diffstat (limited to 'dev-libs/libmemcached')
-rw-r--r--dev-libs/libmemcached/ChangeLog7
-rw-r--r--dev-libs/libmemcached/libmemcached-0.38.ebuild7
2 files changed, 11 insertions, 3 deletions
diff --git a/dev-libs/libmemcached/ChangeLog b/dev-libs/libmemcached/ChangeLog
index 28ea38f1bebe..b9c8215aa6fb 100644
--- a/dev-libs/libmemcached/ChangeLog
+++ b/dev-libs/libmemcached/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for dev-libs/libmemcached
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libmemcached/ChangeLog,v 1.26 2010/03/23 03:38:47 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libmemcached/ChangeLog,v 1.27 2010/03/25 07:49:46 robbat2 Exp $
+
+ 25 Mar 2010; Robin H. Johnson <robbat2@gentoo.org>
+ libmemcached-0.38.ebuild:
+ Bug #309835 again: hsieh hash option change configure option upstream, but
+ also had a typo that needed fixing to compile.
*libmemcached-0.38 (23 Mar 2010)
diff --git a/dev-libs/libmemcached/libmemcached-0.38.ebuild b/dev-libs/libmemcached/libmemcached-0.38.ebuild
index 4789684615d7..575a813cfda6 100644
--- a/dev-libs/libmemcached/libmemcached-0.38.ebuild
+++ b/dev-libs/libmemcached/libmemcached-0.38.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libmemcached/libmemcached-0.38.ebuild,v 1.1 2010/03/23 03:38:47 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libmemcached/libmemcached-0.38.ebuild,v 1.2 2010/03/25 07:49:46 robbat2 Exp $
EAPI=2
@@ -20,12 +20,15 @@ RDEPEND="${DEPEND}"
src_prepare() {
epatch "${FILESDIR}/${PN}-0.28-runtestsasuser.patch"
+ sed -r -i \
+ -e 's,(context)(__attribute__),\1 \2,g' \
+ libhashkit/hsieh.c || die "Failed to fix upstream typo"
}
src_configure() {
econf \
$(use_with debug debug) \
- $(use_with hsieh hsieh_hash)
+ $(use_enable hsieh hsieh_hash)
}
src_install() {