]> arthur.barton.de Git - bup.git/blob - config/configure
Update base_version to 0.34~ for 0.34 development
[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 AC_SUB bup_make "$MAKE"
60
61 bup_python="$PYTHON"
62 test -z "$bup_python" && bup_python="$(bup_find_prog python2.7 '')"
63 test -z "$bup_python" && bup_python="$(bup_find_prog python2.6 '')"
64 test -z "$bup_python" && bup_python="$(bup_find_prog python2 '')"
65 test -z "$bup_python" && bup_python="$(bup_find_prog python '')"
66 if test -z "$bup_python"; then
67     AC_FAIL "ERROR: unable to find python"
68 else
69     AC_SUB bup_python "$bup_python"
70     AC_SUB bup_python_majver \
71            "$("$bup_python" -c 'import sys; print(sys.version_info[0])')"
72 fi
73
74 if test -z "$(bup_find_prog git '')"; then
75     AC_FAIL "ERROR: unable to find git"
76 fi
77
78 # For stat.
79 AC_CHECK_HEADERS sys/stat.h
80 AC_CHECK_HEADERS sys/types.h
81
82 # For stat and mincore.
83 AC_CHECK_HEADERS unistd.h
84
85 # For mincore.
86 AC_CHECK_HEADERS sys/mman.h
87
88 # For FS_IOC_GETFLAGS and FS_IOC_SETFLAGS.
89 AC_CHECK_HEADERS linux/fs.h
90 AC_CHECK_HEADERS sys/ioctl.h
91
92 # On GNU/kFreeBSD utimensat is defined in GNU libc, but won't work.
93 if [ -z "$OS_GNU_KFREEBSD" ]; then
94     AC_CHECK_FUNCS utimensat
95 fi
96 AC_CHECK_FUNCS utimes
97 AC_CHECK_FUNCS lutimes
98
99
100 AC_CHECK_FUNCS mincore
101
102 mincore_incore_code="
103 #if 0$ac_defined_HAVE_UNISTD_H
104 #include <unistd.h>
105 #endif
106 #if 0$ac_defined_HAVE_SYS_MMAN_H
107 #include <sys/mman.h>
108 #endif
109 int main(int argc, char **argv)
110 {
111     if (MINCORE_INCORE)
112       return 0;
113 }
114 "
115
116 mincore_buf_type_code()
117 {
118     local vec_type="$1"
119     echo "
120 #include <sys/mman.h>
121 int main(int argc, char **argv)
122 {
123     void *x = 0;
124     $vec_type *buf = 0;
125     return mincore(x, 0, buf);
126 }" || exit $?
127 }
128
129 if test "$ac_defined_HAVE_MINCORE"; then
130     TLOGN "checking for MINCORE_INCORE"
131     if bup_try_c_code "$mincore_incore_code"; then
132         AC_DEFINE BUP_HAVE_MINCORE_INCORE 1
133         TLOG ' (found)'
134     else
135         TLOG ' (not found)'
136     fi
137
138     TLOGN "checking mincore buf type"
139     if bup_try_c_code "$(mincore_buf_type_code char)"; then
140         AC_DEFINE BUP_MINCORE_BUF_TYPE 'char'
141         TLOG ' (char)'
142     elif bup_try_c_code "$(mincore_buf_type_code 'unsigned char')"; then
143         AC_DEFINE BUP_MINCORE_BUF_TYPE 'unsigned char'
144         TLOG ' (unsigned char)'
145     else
146         AC_FAIL "ERROR: unexpected mincore definition; please notify bup-list@googlegroups.com"
147     fi
148 fi
149
150
151 AC_CHECK_FIELD stat st_atim sys/types.h sys/stat.h unistd.h
152 AC_CHECK_FIELD stat st_mtim sys/types.h sys/stat.h unistd.h
153 AC_CHECK_FIELD stat st_ctim sys/types.h sys/stat.h unistd.h
154
155 AC_CHECK_FIELD stat st_atimensec sys/types.h sys/stat.h unistd.h
156 AC_CHECK_FIELD stat st_mtimensec sys/types.h sys/stat.h unistd.h
157 AC_CHECK_FIELD stat st_ctimensec sys/types.h sys/stat.h unistd.h
158
159 AC_CHECK_FIELD tm tm_gmtoff time.h
160
161 AC_OUTPUT config.vars
162
163 mkdir -p config.var
164 echo -n "$MAKE" > config.var/bup-make
165 echo -n "$bup_python" > config.var/bup-python