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