]> arthur.barton.de Git - bup.git/blob - config/configure
e630bedfcdce0bb8c6432d755428cccdda9e40c9
[bup.git] / config / configure
1 #!/usr/bin/env bash
2
3 bup_find_prog()
4 {
5     # Prints prog path to stdout or nothing.
6     local name="$1" result="$2"
7     TLOGN "checking for $name"
8     if ! [ "$result" ]; then
9         result=`acLookFor "$name"`
10     fi
11     TLOG " ($result)"
12     echo "$result"
13 }
14
15 bup_try_c_code()
16 {
17     local code="$1" tmpdir rc
18     if test -z "$code"; then
19         AC_FAIL "No code provided to test compile"
20     fi
21     tmpdir="$(mktemp -d "bup-try-c-compile-XXXXXXX")" || exit $?
22     echo "$code" > "$tmpdir/test.c" || exit $?
23     $AC_CC -Wall -Werror -c -o "$tmpdir/test" "$tmpdir/test.c"
24     rc=$?
25     rm -r "$tmpdir" || exit $?
26     return $rc
27 }
28
29 TARGET=bup
30
31 . ./configure.inc
32
33 AC_INIT $TARGET
34
35 if ! AC_PROG_CC; then
36     LOG " You need to have a functional C compiler to build $TARGET"
37     exit 1
38 fi
39
40 MAKE="$(bup_find_prog make $MAKE)"
41 if test -z "$MAKE"; then
42     MAKE="$(bup_find_prog gmake "$GMAKE")"
43 fi
44
45 if test -z "$MAKE"; then
46     AC_FAIL "ERROR: unable to find make"
47 fi
48
49 if ! ($MAKE --version | grep "GNU Make"); then
50     AC_FAIL "ERROR: $MAKE is not GNU Make"
51 fi
52
53 MAKE_VERSION=`$MAKE --version | grep "GNU Make" | awk '{print $3}'`
54 if [ -z "$MAKE_VERSION" ]; then
55     AC_FAIL "ERROR: $MAKE --version does not return sensible output?"
56 fi
57 expr "$MAKE_VERSION" '>=' '3.81' || AC_FAIL "ERROR: $MAKE must be >= version 3.81"
58
59 bup_python="$PYTHON"
60 test -z "$bup_python" && bup_python="$(bup_find_prog python2.7 '')"
61 test -z "$bup_python" && bup_python="$(bup_find_prog python2.6 '')"
62 test -z "$bup_python" && bup_python="$(bup_find_prog python2 '')"
63 test -z "$bup_python" && bup_python="$(bup_find_prog python '')"
64 if test -z "$bup_python"; then
65     AC_FAIL "ERROR: unable to find python"
66 else
67     AC_SUB bup_python "$bup_python"
68 fi
69
70 if test -z "$(bup_find_prog git '')"; then
71     AC_FAIL "ERROR: unable to find git"
72 fi
73
74 # For stat.
75 AC_CHECK_HEADERS sys/stat.h
76 AC_CHECK_HEADERS sys/types.h
77
78 # For stat and mincore.
79 AC_CHECK_HEADERS unistd.h
80
81 # For mincore.
82 AC_CHECK_HEADERS sys/mman.h
83
84 # For FS_IOC_GETFLAGS and FS_IOC_SETFLAGS.
85 AC_CHECK_HEADERS linux/fs.h
86 AC_CHECK_HEADERS sys/ioctl.h
87
88 # On GNU/kFreeBSD utimensat is defined in GNU libc, but won't work.
89 if [ -z "$OS_GNU_KFREEBSD" ]; then
90     AC_CHECK_FUNCS utimensat
91 fi
92 AC_CHECK_FUNCS utimes
93 AC_CHECK_FUNCS lutimes
94
95
96 AC_CHECK_FUNCS mincore
97
98 mincore_incore_code="
99 #if 0$ac_defined_HAVE_UNISTD_H
100 #include <unistd.h>
101 #endif
102 #if 0$ac_defined_HAVE_SYS_MMAN_H
103 #include <sys/mman.h>
104 #endif
105 int main(int argc, char **argv)
106 {
107     if (MINCORE_INCORE)
108       return 0;
109 }
110 "
111
112 mincore_buf_type_code()
113 {
114     local vec_type="$1"
115     echo "
116 #include <sys/mman.h>
117 int main(int argc, char **argv)
118 {
119     void *x = 0;
120     $vec_type *buf = 0;
121     return mincore(x, 0, buf);
122 }" || exit $?
123 }
124
125 if test "$ac_defined_HAVE_MINCORE"; then
126     TLOGN "checking for MINCORE_INCORE"
127     if bup_try_c_code "$mincore_incore_code"; then
128         AC_DEFINE BUP_HAVE_MINCORE_INCORE 1
129         TLOG ' (found)'
130     else
131         TLOG ' (not found)'
132     fi
133
134     TLOGN "checking mincore buf type"
135     if bup_try_c_code "$(mincore_buf_type_code char)"; then
136         AC_DEFINE BUP_MINCORE_BUF_TYPE 'char'
137         TLOG ' (char)'
138     elif bup_try_c_code "$(mincore_buf_type_code 'unsigned char')"; then
139         AC_DEFINE BUP_MINCORE_BUF_TYPE 'unsigned char'
140         TLOG ' (unsigned char)'
141     else
142         AC_FAIL "ERROR: unexpected mincore definition; please notify bup-list@googlegroups.com"
143     fi
144 fi
145
146
147 AC_CHECK_FIELD stat st_atim sys/types.h sys/stat.h unistd.h
148 AC_CHECK_FIELD stat st_mtim sys/types.h sys/stat.h unistd.h
149 AC_CHECK_FIELD stat st_ctim sys/types.h sys/stat.h unistd.h
150
151 AC_CHECK_FIELD stat st_atimensec sys/types.h sys/stat.h unistd.h
152 AC_CHECK_FIELD stat st_mtimensec sys/types.h sys/stat.h unistd.h
153 AC_CHECK_FIELD stat st_ctimensec sys/types.h sys/stat.h unistd.h
154
155 AC_CHECK_FIELD tm tm_gmtoff time.h
156
157 AC_OUTPUT config.vars