summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com>2017-01-07 17:46:44 +0100
committerAnthony G. Basile <blueness@gentoo.org>2017-01-07 17:27:49 -0500
commit69c6499d67dfa1dd749573997d6b618c2b3bf623 (patch)
tree9be1583bd6e5f44f23cd6c40c8a74941ec71c32c /net-p2p/bitcoind/files/0.9.0-sys_leveldb.patch
parentnet-misc/tor: remove unused initd file (diff)
downloadgentoo-69c6499d67dfa1dd749573997d6b618c2b3bf623.tar.gz
gentoo-69c6499d67dfa1dd749573997d6b618c2b3bf623.tar.bz2
gentoo-69c6499d67dfa1dd749573997d6b618c2b3bf623.zip
net-p2p/bitcoind: remove unused patches/files
Diffstat (limited to 'net-p2p/bitcoind/files/0.9.0-sys_leveldb.patch')
-rw-r--r--net-p2p/bitcoind/files/0.9.0-sys_leveldb.patch34
1 files changed, 0 insertions, 34 deletions
diff --git a/net-p2p/bitcoind/files/0.9.0-sys_leveldb.patch b/net-p2p/bitcoind/files/0.9.0-sys_leveldb.patch
deleted file mode 100644
index 60e9f2b20941..000000000000
--- a/net-p2p/bitcoind/files/0.9.0-sys_leveldb.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-commit c38e0af3e021eb0b2aba846c77b06ca71de06b11 (personal-github/sys_leveldb, sys_leveldb)
-Author: Luke Dashjr <luke-jr+git@utopios.org>
-Date: Mon Sep 9 03:06:17 2013 +0000
-
- configure: Add unsupported --with-system-leveldb configure flag
-
-diff --git a/configure.ac b/configure.ac
-index 3ed4549..5a5852d 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -332,10 +332,22 @@ AC_TRY_COMPILE([#include <sys/socket.h>],
- [ AC_MSG_RESULT(no)]
- )
-
-+dnl Check for leveldb, only if explicitly requested
- LEVELDB_CPPFLAGS=
- LIBLEVELDB=
- LIBMEMENV=
--AM_CONDITIONAL([EMBEDDED_LEVELDB],[true])
-+AC_ARG_WITH([system-leveldb],
-+ [AS_HELP_STRING([--with-system-leveldb],
-+ [Build with system LevelDB (default is no; DANGEROUS; NOT SUPPORTED)])],
-+ [system_leveldb=$withval],
-+ [system_leveldb=no]
-+)
-+if test x$system_leveldb != xno; then
-+ LEVELDB_CPPFLAGS=
-+ LIBLEVELDB=-lleveldb
-+ LIBMEMENV=-lmemenv
-+fi
-+AM_CONDITIONAL([EMBEDDED_LEVELDB],[test x$system_leveldb = xno])
- AC_SUBST(LEVELDB_CPPFLAGS)
- AC_SUBST(LIBLEVELDB)
- AC_SUBST(LIBMEMENV)