]> Git Repo - VerusCoin.git/blob - depends/config.site.in
Build librustzcash package without changing directory
[VerusCoin.git] / depends / config.site.in
1 depends_prefix="`dirname ${ac_site_file}`/.."
2
3 cross_compiling=maybe
4 host_alias=@HOST@
5 ac_tool_prefix=${host_alias}-
6
7 if test -z $with_boost; then
8   with_boost=$depends_prefix
9 fi
10
11
12 if test -z $enable_wallet && test -n "@no_wallet@"; then
13   enable_wallet=no
14 fi
15
16 if test x@host_os@ = xdarwin; then
17   BREW=no
18   PORT=no
19 fi
20
21 PATH=$depends_prefix/native/bin:$PATH
22 PKG_CONFIG="`which pkg-config` --static"
23
24 # These two need to remain exported because pkg-config does not see them
25 # otherwise. That means they must be unexported at the end of configure.ac to
26 # avoid ruining the cache. Sigh.
27
28 export PKG_CONFIG_LIBDIR=$depends_prefix/lib/pkgconfig
29 export PKG_CONFIG_PATH=$depends_prefix/share/pkgconfig
30
31 CPPFLAGS="-I$depends_prefix/include/ $CPPFLAGS"
32 LDFLAGS="-L$depends_prefix/lib $LDFLAGS"
33
34 CC="@CC@"
35 CXX="@CXX@"
36 OBJC="${CC}"
37 OBJCXX="${CXX}"
38 CCACHE=$depends_prefix/native/bin/ccache
39
40 if test -n "@AR@"; then
41   AR=@AR@
42   ac_cv_path_ac_pt_AR=${AR}
43 fi
44
45 if test -n "@RANLIB@"; then
46   RANLIB=@RANLIB@
47   ac_cv_path_ac_pt_RANLIB=${RANLIB}
48 fi
49
50 if test -n "@NM@"; then
51   NM=@NM@
52   ac_cv_path_ac_pt_NM=${NM}
53 fi
54
55 if test -n "@debug@"; then
56   enable_reduce_exports=no
57 fi
58
59 if test -n "@CFLAGS@"; then
60   CFLAGS="@CFLAGS@ $CFLAGS"
61 fi
62 if test -n "@CXXFLAGS@"; then
63   CXXFLAGS="@CXXFLAGS@ $CXXFLAGS"
64 fi
65 if test -n "@CPPFLAGS@"; then
66   CPPFLAGS="@CPPFLAGS@ $CPPFLAGS"
67 fi
68 if test -n "@LDFLAGS@"; then
69   LDFLAGS="@LDFLAGS@ $LDFLAGS"
70 fi
This page took 0.024086 seconds and 4 git commands to generate.