mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-09 10:43:19 -05:00
build: Drop unused use_pkgconfig variable
This commit is contained in:
parent
a661449a2e
commit
1739eb23d8
1 changed files with 4 additions and 9 deletions
13
configure.ac
13
configure.ac
|
@ -573,7 +573,6 @@ AC_ARG_WITH([daemon],
|
||||||
[build_bitcoind=$withval],
|
[build_bitcoind=$withval],
|
||||||
[build_bitcoind=yes])
|
[build_bitcoind=yes])
|
||||||
|
|
||||||
use_pkgconfig=yes
|
|
||||||
case $host in
|
case $host in
|
||||||
*mingw*)
|
*mingw*)
|
||||||
TARGET_OS=windows
|
TARGET_OS=windows
|
||||||
|
@ -678,14 +677,10 @@ case $host in
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
if test x$use_pkgconfig = xyes; then
|
m4_ifndef([PKG_PROG_PKG_CONFIG], [AC_MSG_ERROR([PKG_PROG_PKG_CONFIG macro not found. Please install pkg-config and re-run autogen.sh])])
|
||||||
m4_ifndef([PKG_PROG_PKG_CONFIG], [AC_MSG_ERROR(PKG_PROG_PKG_CONFIG macro not found. Please install pkg-config and re-run autogen.sh.)])
|
PKG_PROG_PKG_CONFIG
|
||||||
m4_ifdef([PKG_PROG_PKG_CONFIG], [
|
if test "x$PKG_CONFIG" = x; then
|
||||||
PKG_PROG_PKG_CONFIG
|
AC_MSG_ERROR([pkg-config not found])
|
||||||
if test x"$PKG_CONFIG" = "x"; then
|
|
||||||
AC_MSG_ERROR(pkg-config not found.)
|
|
||||||
fi
|
|
||||||
])
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if test x$use_extended_functional_tests != xno; then
|
if test x$use_extended_functional_tests != xno; then
|
||||||
|
|
Loading…
Add table
Reference in a new issue