mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 12:32:48 +01:00
fc5ed587ca
107e030723552cf272dc8da01bb682032a457a3d build: make protobuf optional in depends (fanquake) ff6122f32b21fa00e9308e098b33b9657debc1d7 doc: clarify protobuf build requirements (fanquake) Pull request description: As mentioned by dongcarl in https://github.com/bitcoin/bitcoin/pull/15584#issuecomment-521780972, make building `protobuf` optional in depends. With this change it will only be built if you pass `PROTOBUF=1`. ACKs for top commit: laanwj: code review ACK 107e030723552cf272dc8da01bb682032a457a3d Sjors: tACK 107e030 on macOS 10.14. When I build depends with `PROTOBUF=1` then `./configure` has `bip70` enabled. Tree-SHA512: 49bc247a6879aaf55b943a3d0b930544ddef1e69a481955a8bebe0b02c9ad0fe168b93025f34168334cef34bb567478eb98eacab62ba909f2f64fb21119c71b8
115 lines
2.7 KiB
Plaintext
115 lines
2.7 KiB
Plaintext
# shellcheck shell=sh disable=SC2034 # Many variables set will be used in
|
|
# ./configure but shellcheck doesn't know
|
|
# that, hence: disable=SC2034
|
|
|
|
true # Dummy command because shellcheck treats all directives before first
|
|
# command as file-wide, and we only want to disable for one line.
|
|
#
|
|
# See: https://github.com/koalaman/shellcheck/wiki/Directive
|
|
|
|
# shellcheck disable=SC2154
|
|
depends_prefix="$(cd "$(dirname ${ac_site_file})/.." && pwd)"
|
|
|
|
cross_compiling=maybe
|
|
host_alias=@HOST@
|
|
ac_tool_prefix=${host_alias}-
|
|
|
|
if test -z $with_boost; then
|
|
with_boost=$depends_prefix
|
|
fi
|
|
if test -z $with_qt_plugindir; then
|
|
with_qt_plugindir=$depends_prefix/plugins
|
|
fi
|
|
if test -z $with_qt_translationdir; then
|
|
with_qt_translationdir=$depends_prefix/translations
|
|
fi
|
|
if test -z $with_qt_bindir; then
|
|
with_qt_bindir=$depends_prefix/native/bin
|
|
fi
|
|
if test -z $with_protoc_bindir; then
|
|
with_protoc_bindir=$depends_prefix/native/bin
|
|
fi
|
|
|
|
|
|
if test -z $enable_wallet && test -n "@no_wallet@"; then
|
|
enable_wallet=no
|
|
fi
|
|
|
|
if test -z $with_miniupnpc && test -n "@no_upnp@"; then
|
|
with_miniupnpc=no
|
|
fi
|
|
|
|
if test -z $with_gui && test -n "@no_qt@"; then
|
|
with_gui=no
|
|
fi
|
|
|
|
if test -z $enable_zmq && test -n "@no_zmq@"; then
|
|
enable_zmq=no
|
|
fi
|
|
|
|
if test -n $disable_bip70 && test -n "@disable_bip70@"; then
|
|
disable_bip70=no
|
|
fi
|
|
|
|
if test -n "@debug@" && test -z "@no_qt@" && test "x$with_gui" != xno; then
|
|
with_gui=qt5_debug
|
|
fi
|
|
|
|
if test "@host_os@" = darwin; then
|
|
BREW=no
|
|
PORT=no
|
|
fi
|
|
|
|
PATH=$depends_prefix/native/bin:$PATH
|
|
PKG_CONFIG="$(which pkg-config) --static"
|
|
|
|
# These two need to remain exported because pkg-config does not see them
|
|
# otherwise. That means they must be unexported at the end of configure.ac to
|
|
# avoid ruining the cache. Sigh.
|
|
|
|
export PKG_CONFIG_LIBDIR=$depends_prefix/lib/pkgconfig
|
|
export PKG_CONFIG_PATH=$depends_prefix/share/pkgconfig
|
|
|
|
CPPFLAGS="-I$depends_prefix/include/ $CPPFLAGS"
|
|
LDFLAGS="-L$depends_prefix/lib $LDFLAGS"
|
|
|
|
if test -n "@CC@" -a -z "${CC}"; then
|
|
CC="@CC@"
|
|
fi
|
|
if test -n "@CXX@" -a -z "${CXX}"; then
|
|
CXX="@CXX@"
|
|
fi
|
|
PYTHONPATH="${depends_prefix}/native/lib/python3/dist-packages${PYTHONPATH:+${PATH_SEPARATOR}}${PYTHONPATH}"
|
|
|
|
if test -n "@AR@"; then
|
|
AR=@AR@
|
|
ac_cv_path_ac_pt_AR=${AR}
|
|
fi
|
|
|
|
if test -n "@RANLIB@"; then
|
|
RANLIB=@RANLIB@
|
|
ac_cv_path_ac_pt_RANLIB=${RANLIB}
|
|
fi
|
|
|
|
if test -n "@NM@"; then
|
|
NM=@NM@
|
|
ac_cv_path_ac_pt_NM=${NM}
|
|
fi
|
|
|
|
if test -n "@debug@"; then
|
|
enable_reduce_exports=no
|
|
fi
|
|
|
|
if test -n "@CFLAGS@"; then
|
|
CFLAGS="@CFLAGS@ $CFLAGS"
|
|
fi
|
|
if test -n "@CXXFLAGS@"; then
|
|
CXXFLAGS="@CXXFLAGS@ $CXXFLAGS"
|
|
fi
|
|
if test -n "@CPPFLAGS@"; then
|
|
CPPFLAGS="@CPPFLAGS@ $CPPFLAGS"
|
|
fi
|
|
if test -n "@LDFLAGS@"; then
|
|
LDFLAGS="@LDFLAGS@ $LDFLAGS"
|
|
fi
|