]> Git Repo - VerusCoin.git/blame - depends/config.site.in
Auto merge of #1569 - str4d:1552-disable-wallet-encryption, r=daira
[VerusCoin.git] / depends / config.site.in
CommitLineData
e6fa787a
CF
1depends_prefix="`dirname ${ac_site_file}`/.."
2
1dec09b3
CF
3cross_compiling=maybe
4host_alias=@HOST@
5ac_tool_prefix=${host_alias}-
6
7if test -z $with_boost; then
e6fa787a 8 with_boost=$depends_prefix
1dec09b3
CF
9fi
10if test -z $with_qt_plugindir; then
e6fa787a 11 with_qt_plugindir=$depends_prefix/plugins
1dec09b3
CF
12fi
13if test -z $with_qt_translationdir; then
e6fa787a 14 with_qt_translationdir=$depends_prefix/translations
1dec09b3
CF
15fi
16if test -z $with_qt_bindir; then
e6fa787a 17 with_qt_bindir=$depends_prefix/native/bin
1dec09b3
CF
18fi
19if test -z $with_protoc_bindir; then
e6fa787a 20 with_protoc_bindir=$depends_prefix/native/bin
1dec09b3 21fi
f53f490b
JG
22# Disable comparison utility (#592)
23#if test -z $with_comparison_tool; then
e6fa787a 24# with_comparison_tool=$depends_prefix/native/share/BitcoindComparisonTool_jar/BitcoindComparisonTool.jar
f53f490b 25#fi
1dec09b3
CF
26
27
28if test -z $enable_wallet && test -n "@no_wallet@"; then
29 enable_wallet=no
30fi
31
32if test -z $with_miniupnpc && test -n "@no_upnp@"; then
33 with_miniupnpc=no
34fi
35
36if test -z $with_gui && test -n "@no_qt@"; then
37 with_gui=no
38fi
39
ab720685 40if test x@host_os@ = xdarwin; then
1dec09b3
CF
41 BREW=no
42 PORT=no
43fi
44
ab720685 45if test x@host_os@ = xmingw32; then
1dec09b3 46 if test -z $with_qt_incdir; then
e6fa787a 47 with_qt_incdir=$depends_prefix/include
1dec09b3
CF
48 fi
49 if test -z $with_qt_libdir; then
e6fa787a 50 with_qt_libdir=$depends_prefix/lib
1dec09b3
CF
51 fi
52fi
53
e6fa787a 54PATH=$depends_prefix/native/bin:$PATH
54566de2
CF
55PKG_CONFIG="`which pkg-config` --static"
56
57# These two need to remain exported because pkg-config does not see them
58# otherwise. That means they must be unexported at the end of configure.ac to
59# avoid ruining the cache. Sigh.
60
e6fa787a
CF
61export PKG_CONFIG_LIBDIR=$depends_prefix/lib/pkgconfig
62export PKG_CONFIG_PATH=$depends_prefix/share/pkgconfig
dc66ff53 63
e6fa787a
CF
64CPPFLAGS="-I$depends_prefix/include/ $CPPFLAGS"
65LDFLAGS="-L$depends_prefix/lib $LDFLAGS"
1dec09b3 66
54566de2
CF
67CC="@CC@"
68CXX="@CXX@"
69OBJC="${CC}"
70OBJCXX="${CXX}"
e6fa787a 71CCACHE=$depends_prefix/native/bin/ccache
1dec09b3
CF
72
73if test -n "@AR@"; then
54566de2 74 AR=@AR@
1dec09b3
CF
75 ac_cv_path_ac_pt_AR=${AR}
76fi
77
78if test -n "@RANLIB@"; then
54566de2 79 RANLIB=@RANLIB@
1dec09b3
CF
80 ac_cv_path_ac_pt_RANLIB=${RANLIB}
81fi
82
83if test -n "@NM@"; then
54566de2 84 NM=@NM@
1dec09b3
CF
85 ac_cv_path_ac_pt_NM=${NM}
86fi
87
00522cd4
CF
88if test -n "@debug@"; then
89 enable_reduce_exports=no
90fi
91
1dec09b3 92if test -n "@CFLAGS@"; then
54566de2 93 CFLAGS="@CFLAGS@ $CFLAGS"
1dec09b3
CF
94fi
95if test -n "@CXXFLAGS@"; then
54566de2 96 CXXFLAGS="@CXXFLAGS@ $CXXFLAGS"
1dec09b3 97fi
2027ad30 98if test -n "@CPPFLAGS@"; then
54566de2 99 CPPFLAGS="@CPPFLAGS@ $CPPFLAGS"
2027ad30 100fi
dc66ff53 101if test -n "@LDFLAGS@"; then
54566de2 102 LDFLAGS="@LDFLAGS@ $LDFLAGS"
dc66ff53 103fi
This page took 0.074511 seconds and 4 git commands to generate.