Gentoo Archives: gentoo-commits

From: "Alexys Jacob (ultrabug)" <ultrabug@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-cluster/ceph/files: ceph-0.26-autotools.patch ceph-0.24.1-autotools.patch
Date: Tue, 26 Apr 2011 10:30:42
Message-Id: 20110426103033.52DD220054@flycatcher.gentoo.org
1 ultrabug 11/04/26 10:30:33
2
3 Added: ceph-0.26-autotools.patch
4 Removed: ceph-0.24.1-autotools.patch
5 Log:
6 Fix autotools patch wrt #363497. Thanks to Peter Große for reporting.
7
8 (Portage version: 2.1.9.46/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.1 sys-cluster/ceph/files/ceph-0.26-autotools.patch
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/ceph/files/ceph-0.26-autotools.patch?rev=1.1&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/ceph/files/ceph-0.26-autotools.patch?rev=1.1&content-type=text/plain
15
16 Index: ceph-0.26-autotools.patch
17 ===================================================================
18 --- a/configure.ac 2011-04-26 12:17:33.318491903 +0200
19 +++ b/configure.ac 2011-04-26 12:19:57.822776369 +0200
20 @@ -48,10 +48,12 @@
21 [PKG_CHECK_MODULES([CRYPTOPP],
22 [libcrypto++],
23 [have_cryptopp=yes],
24 - [AC_SEARCH_LIBS([_ZTIN8CryptoPP14CBC_EncryptionE], [crypto++ cryptopp],
25 + [AC_LANG_PUSH([C++])
26 + AC_SEARCH_LIBS([_ZTIN8CryptoPP14CBC_EncryptionE], [crypto++ cryptopp],
27 [have_cryptopp=yes],
28 [true],
29 - [-lpthread])])])
30 + [-lpthread])
31 + AC_LANG_POP([C++])])])
32 # bail out if given explicit --with-cryptopp
33 if test "x$have_cryptopp" = "xno" -a "x$with_cryptopp" != "xcheck" -a "x$with_cryptopp" != "xno"; then
34 AC_MSG_FAILURE([--with-cryptopp was given, but library was not found])