src: Fix pointer casts to smaller integral type.
[platform/upstream/cmocka.git] / autogen.sh
1 #!/bin/sh
2
3 # Before using, you should figure out all the .m4 macros that your
4 # configure.m4 script needs and make sure they exist in the autoconf/
5 # directory.
6 #
7 # These are the files that this script might edit:
8 #    aclocal.m4 configure Makefile.in src/config.h.in \
9 #    depcomp config.guess config.sub install-sh missing mkinstalldirs \
10 #    ltmain.sh
11 #
12 # Here's a command you can run to see what files aclocal will import:
13 #  aclocal -I ../autoconf --output=- | sed -n 's/^m4_include..\([^]]*\).*/\1/p'
14
15 set -ex
16 rm -rf autom4te.cache
17
18 trap 'rm -f aclocal.m4.tmp' EXIT
19
20 # Use version 1.9 of aclocal and automake if available.
21 ACLOCAL=aclocal-1.9
22 if test -z `which "$ACLOCAL"`; then
23   ACLOCAL=aclocal
24 fi
25
26 AUTOMAKE=automake-1.9
27 if test -z `which "$AUTOMAKE"`; then
28   AUTOMAKE=automake
29 fi
30
31 # glibtoolize is used for Mac OS X
32 LIBTOOLIZE=libtoolize
33 if test -z `which "$LIBTOOLIZE"`; then
34   LIBTOOLIZE=glibtoolize
35 fi
36
37 # aclocal tries to overwrite aclocal.m4 even if the contents haven't
38 # changed, which is annoying when the file is not open for edit (in
39 # p4).  We work around this by writing to a temp file and just
40 # updating the timestamp if the file hasn't change.
41 "$ACLOCAL" --force -I m4 --output=aclocal.m4.tmp
42 if cmp aclocal.m4.tmp aclocal.m4; then
43   touch aclocal.m4               # pretend that we regenerated the file
44   rm -f aclocal.m4.tmp
45 else
46   mv aclocal.m4.tmp aclocal.m4   # we did set -e above, so we die if this fails
47 fi
48
49 grep -q LIBTOOL configure.ac && "$LIBTOOLIZE" -c -f
50 autoconf -f -W all,no-obsolete
51 autoheader -f -W all
52 "$AUTOMAKE" -a -c -f -W all
53
54 rm -rf autom4te.cache
55 exit 0