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