pandora-build v0.45
[awesomized/libmemcached] / config / autorun.sh
1 #!/bin/sh
2 # Taken from lighthttpd server (BSD). Thanks Jan!
3 # Run this to generate all the initial makefiles, etc.
4
5 die() { echo "$@"; exit 1; }
6
7 # --force means overwrite ltmain.sh script if it already exists
8 LIBTOOLIZE_FLAGS=" --automake --copy --force"
9 # --add-missing instructs automake to install missing auxiliary files
10 # and --force to overwrite them if they already exist
11 AUTOMAKE_FLAGS="--add-missing --copy --force"
12 ACLOCAL_FLAGS="-I m4"
13
14 ARGV0=$0
15 ARGS="$@"
16
17 run() {
18 echo "$ARGV0: running \`$@' $ARGS"
19 $@ $ARGS
20 }
21
22 # Try to locate a program by using which, and verify that the file is an
23 # executable
24 locate_binary() {
25 for f in $@
26 do
27 file=`which $f 2>/dev/null | grep -v '^no '`
28 if test -n "$file" -a -x "$file"; then
29 echo $file
30 return 0
31 fi
32 done
33
34 echo ""
35 return 1
36 }
37
38
39 if test -f config/pre_hook.sh
40 then
41 . config/pre_hook.sh
42 fi
43
44 # Try to detect the supported binaries if the user didn't
45 # override that by pushing the environment variable
46 if test x$LIBTOOLIZE = x; then
47 LIBTOOLIZE=`locate_binary glibtoolize libtoolize-1.5 libtoolize`
48 if test x$LIBTOOLIZE = x; then
49 die "Did not find a supported libtoolize"
50 fi
51 fi
52
53 if test x$ACLOCAL = x; then
54 ACLOCAL=`locate_binary aclocal-1.10 aclocal-1.9 aclocal19 aclocal`
55 if test x$ACLOCAL = x; then
56 die "Did not find a supported aclocal"
57 fi
58 fi
59
60 if test x$AUTOMAKE = x; then
61 AUTOMAKE=`locate_binary automake-1.10 automake-1.9 automake19 automake`
62 if test x$AUTOMAKE = x; then
63 die "Did not find a supported automake"
64 fi
65 fi
66
67 if test x$AUTOCONF = x; then
68 AUTOCONF=`locate_binary autoconf-2.59 autoconf259 autoconf`
69 if test x$AUTOCONF = x; then
70 die "Did not find a supported autoconf"
71 fi
72 fi
73
74 if test x$AUTOHEADER = x; then
75 AUTOHEADER=`locate_binary autoheader-2.59 autoheader259 autoheader`
76 if test x$AUTOHEADER = x; then
77 die "Did not find a supported autoheader"
78 fi
79 fi
80
81 run $LIBTOOLIZE $LIBTOOLIZE_FLAGS || die "Can't execute libtoolize"
82 run $ACLOCAL $ACLOCAL_FLAGS || die "Can't execute aclocal"
83 run $AUTOHEADER || die "Can't execute autoheader"
84 run $AUTOMAKE $AUTOMAKE_FLAGS || die "Can't execute automake"
85 run $AUTOCONF || die "Can't execute autoconf"
86
87 if test -f config/post_hook.sh
88 then
89 . config/post_hook.sh
90 fi
91
92 echo "---"
93 echo "Configured with the following tools:"
94 echo " * `$LIBTOOLIZE --version | head -1`"
95 echo " * `$ACLOCAL --version | head -1`"
96 echo " * `$AUTOHEADER --version | head -1`"
97 echo " * `$AUTOMAKE --version | head -1`"
98 echo " * `$AUTOCONF --version | head -1`"
99 echo "---"