summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcin Kryczek <mkay@gentoo.org>2005-11-25 09:39:44 +0000
committerMarcin Kryczek <mkay@gentoo.org>2005-11-25 09:39:44 +0000
commit146c9ffcac367c0e3024252243d574562d63afc1 (patch)
tree442cb362479ced6a2d8469afc26c013d3e2266cd /net-p2p
parentmpicoder bounds error fixed per bug #113521 (diff)
downloadgentoo-2-146c9ffcac367c0e3024252243d574562d63afc1.tar.gz
gentoo-2-146c9ffcac367c0e3024252243d574562d63afc1.tar.bz2
gentoo-2-146c9ffcac367c0e3024252243d574562d63afc1.zip
Patch for new ver
Diffstat (limited to 'net-p2p')
-rw-r--r--net-p2p/xmule/files/xmule-1.12.0-crypto-gentoo.patch21
1 files changed, 21 insertions, 0 deletions
diff --git a/net-p2p/xmule/files/xmule-1.12.0-crypto-gentoo.patch b/net-p2p/xmule/files/xmule-1.12.0-crypto-gentoo.patch
new file mode 100644
index 000000000000..e2e177539c09
--- /dev/null
+++ b/net-p2p/xmule/files/xmule-1.12.0-crypto-gentoo.patch
@@ -0,0 +1,21 @@
+--- configure.ac.orig 2005-07-26 09:41:05.000000000 +0200
++++ configure.ac 2005-07-26 09:40:55.000000000 +0200
+@@ -79,15 +79,15 @@
+
+ if test x"$have_cryptopp" = x"yes"; then
+ cryp_name="cryptopp";
+- have_crypto = 1
++ have_crypto=1
+ fi
+
+ if test x"$have_cryptopp2" = x"yes"; then
+ cryp_name="crypto++"
+- have_crypto = 1
++ have_crypto=1
+ fi
+
+-if [have_crypto -eq 1]; then
++if test x"$have_crypto" = x1; then
+ echo "Cryp name: -$cryp_name-"
+ AC_DEFINE_UNQUOTED(HAVE_CRYPTOPP, 1, [Define if you have the Crypto++ development headers and libraries.])
+ if test -n "$cryptopp_prefix"; then