blob: d47d7e23e3ccdececed93d3d19722bcd5c82dfdd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
--- configure.orig 2015-04-11 01:05:36 UTC
+++ configure
@@ -9216,7 +9216,7 @@ $as_echo_n "checking whether the $compil
hardcode_minus_L=no
hardcode_shlibpath_var=unsupported
inherit_rpath=no
- link_all_deplibs=unknown
+ link_all_deplibs=no
module_cmds=
module_expsym_cmds=
old_archive_from_new_cmds=
@@ -12248,7 +12248,7 @@ hardcode_automatic_CXX=no
inherit_rpath_CXX=no
module_cmds_CXX=
module_expsym_cmds_CXX=
-link_all_deplibs_CXX=unknown
+link_all_deplibs_CXX=no
old_archive_cmds_CXX=$old_archive_cmds
reload_flag_CXX=$reload_flag
reload_cmds_CXX=$reload_cmds
@@ -15767,6 +15767,9 @@ case $host_os in
*mingw32* )
WERROR=""
;;
+ freebsd* )
+ WERROR=""
+ ;;
*)
;;
esac
@@ -31537,47 +31540,47 @@ fi
# prepend DESTDIR where appropriate
if ( test "`echo $ac_default_prefix | cut -c1`" = "/" )
then
- ac_default_prefix='${DESTDIR}'"$ac_default_prefix"
+ ac_default_prefix="$ac_default_prefix"
fi
if ( test "`echo $prefix | cut -c1`" = "/" )
then
- prefix='${DESTDIR}'"$prefix"
+ prefix="$prefix"
fi
if ( test "`echo $exec_prefix | cut -c1`" = "/" )
then
- exec_prefix='${DESTDIR}'"$exec_prefix"
+ exec_prefix="$exec_prefix"
fi
if ( test "`echo $includedir | cut -c1`" = "/" )
then
- includedir='${DESTDIR}'"$includedir"
+ includedir="$includedir"
fi
if ( test "`echo $libdir | cut -c1`" = "/" )
then
- libdir='${DESTDIR}'"$libdir"
+ libdir="$libdir"
fi
if ( test "`echo $libexecdir | cut -c1`" = "/" )
then
- libexecdir='${DESTDIR}'"$libexecdir"
+ libexecdir="$libexecdir"
fi
if ( test "`echo $bindir | cut -c1`" = "/" )
then
- bindir='${DESTDIR}'"$bindir"
+ bindir="$bindir"
fi
if ( test "`echo $localstatedir | cut -c1`" = "/" )
then
- localstatedir='${DESTDIR}'"$localstatedir"
+ localstatedir="$localstatedir"
fi
if ( test "`echo $sysconfdir | cut -c1`" = "/" )
then
- sysconfdir='${DESTDIR}'"$sysconfdir"
+ sysconfdir="$sysconfdir"
fi
if ( test "`echo $mandir | cut -c1`" = "/" )
then
- mandir='${DESTDIR}'"$mandir"
+ mandir="$mandir"
fi
if ( test "`echo $datadir | cut -c1`" = "/" )
then
- datadir='${DESTDIR}'"$datadir"
+ datadir="$datadir"
fi
|