mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-07-12 14:22:43 +02:00
Merge pull request #3322
26d1b65
src/Makefile.am: Simplify clean of leveldb (Josh Triplett)a26a367
configure.ac: Check for miniupnpc headers, not just -lminiupnpc (Josh Triplett)82ccb05
autogen.sh: Stop passing --verbose to autoreconf (Josh Triplett)e12dafd
autogen.sh: Use long options to autoreconf, for self-documentation (Josh Triplett)19b9add
autogen.sh: Support running from outside the source directory (Josh Triplett)97d285a
autogen.sh: Use set -e to fail if any command fails (Josh Triplett)f80b723
autogen.sh: Add a /bin/sh shebang. (Josh Triplett)
This commit is contained in:
@ -376,7 +376,11 @@ fi
|
||||
|
||||
dnl Check for libminiupnpc (optional)
|
||||
if test x$use_upnp != xno; then
|
||||
AC_CHECK_LIB([miniupnpc], [main],, [have_miniupnpc=no])
|
||||
AC_CHECK_HEADERS(
|
||||
[miniupnpc/miniwget.h miniupnpc/miniupnpc.h miniupnpc/upnpcommands.h miniupnpc/upnperrors.h],
|
||||
[AC_CHECK_LIB([miniupnpc], [main],, [have_miniupnpc=no])],
|
||||
[have_miniupnpc=no]
|
||||
)
|
||||
fi
|
||||
|
||||
dnl Check for boost libs
|
||||
|
Reference in New Issue
Block a user