]> Git Repo - VerusCoin.git/blame - depends/config.site.in
Merge pull request #4969
[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
37if test @host_os@ == darwin; then
38 BREW=no
39 PORT=no
40fi
41
42if test @host_os@ == mingw32; then
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
51export PATH=$prefix/native/bin:$PATH
52export PKG_CONFIG="`which pkg-config` --static"
53export PKG_CONFIG_LIBDIR=$prefix/lib/pkgconfig
54export PKG_CONFIG_PATH=$prefix/share/pkgconfig
cf12c223 55export CPPFLAGS="-I$prefix/include/ $CPPFLAGS"
1dec09b3
CF
56
57export CC="@CC@"
58export CXX="@CXX@"
59export OBJC="${CC}"
60export OBJCXX="${CXX}"
61export CCACHE=$prefix/native/bin/ccache
62
63if test -n "@AR@"; then
64 export AR=@AR@
65 ac_cv_path_ac_pt_AR=${AR}
66fi
67
68if test -n "@RANLIB@"; then
69 export RANLIB=@RANLIB@
70 ac_cv_path_ac_pt_RANLIB=${RANLIB}
71fi
72
73if test -n "@NM@"; then
74 export NM=@NM@
75 ac_cv_path_ac_pt_NM=${NM}
76fi
77
78if test -n "@CFLAGS@"; then
79 export CFLAGS="@CFLAGS@ $CFLAGS"
80fi
81if test -n "@CXXFLAGS@"; then
82 export CXXFLAGS="@CXXFLAGS@ $CXXFLAGS"
83fi
84export LDFLAGS="-L$prefix/lib @LDFLAGS@ $LDFLAGS"
This page took 0.029913 seconds and 4 git commands to generate.