Skip to content

Commit

Permalink
dev-util/bitcoin-tx-0.17.1: Fix build without libevent
Browse files Browse the repository at this point in the history
Fixes: https://bugs.gentoo.org/675256
Signed-off-by: Luke Dashjr <[email protected]>
Signed-off-by: Craig Andrews <[email protected]>
  • Loading branch information
luke-jr authored and candrews committed Jan 13, 2019
1 parent ac46cbd commit 4ccfcad
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
2 changes: 2 additions & 0 deletions dev-util/bitcoin-tx/bitcoin-tx-0.17.1.ebuild
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,8 @@ src_prepare() {
mkdir -p src/obj || die
echo "#define BUILD_SUFFIX gentoo${PVR#${PV}}" >src/obj/build.h || die

eapply "${FILESDIR}/${PV}-no-libevent.patch"

eautoreconf
rm -r src/leveldb src/secp256k1 || die
}
Expand Down
20 changes: 20 additions & 0 deletions dev-util/bitcoin-tx/files/0.17.1-no-libevent.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
--- a/configure.ac
+++ b/configure.ac
@@ -1101,7 +1101,7 @@ if test x$use_pkgconfig = xyes; then
if test x$use_qr != xno; then
BITCOIN_QT_CHECK([PKG_CHECK_MODULES([QR], [libqrencode], [have_qrencode=yes], [have_qrencode=no])])
fi
- if test x$build_bitcoin_cli$build_bitcoin_tx$build_bitcoind$bitcoin_enable_qt$use_tests != xnonononono; then
+ if test x$build_bitcoin_cli$build_bitcoind$bitcoin_enable_qt$use_tests != xnononono; then
PKG_CHECK_MODULES([EVENT], [libevent],, [AC_MSG_ERROR(libevent not found.)])
if test x$TARGET_OS != xwindows; then
PKG_CHECK_MODULES([EVENT_PTHREADS], [libevent_pthreads],, [AC_MSG_ERROR(libevent_pthreads not found.)])
@@ -1126,7 +1126,7 @@ else
AC_CHECK_HEADER([openssl/ssl.h],, AC_MSG_ERROR(libssl headers missing),)
AC_CHECK_LIB([ssl], [main],SSL_LIBS=-lssl, AC_MSG_ERROR(libssl missing))

- if test x$build_bitcoin_cli$build_bitcoin_tx$build_bitcoind$bitcoin_enable_qt$use_tests != xnonononono; then
+ if test x$build_bitcoin_cli$build_bitcoind$bitcoin_enable_qt$use_tests != xnononono; then
AC_CHECK_HEADER([event2/event.h],, AC_MSG_ERROR(libevent headers missing),)
AC_CHECK_LIB([event],[main],EVENT_LIBS=-levent,AC_MSG_ERROR(libevent missing))
if test x$TARGET_OS != xwindows; then

0 comments on commit 4ccfcad

Please sign in to comment.