Merged in a lost patch.
[m6w6/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 # Try to detect the supported binaries if the user didn't
39 # override that by pushing the environment variable
40 if test x$LIBTOOLIZE = x; then
41 LIBTOOLIZE=`locate_binary glibtoolize libtoolize-1.5 libtoolize`
42 if test x$LIBTOOLIZE = x; then
43 die "Did not find a supported libtoolize"
44 fi
45 fi
46
47 if test x$ACLOCAL = x; then
48 ACLOCAL=`locate_binary aclocal-1.10 aclocal-1.9 aclocal19 aclocal`
49 if test x$ACLOCAL = x; then
50 die "Did not find a supported aclocal"
51 fi
52 fi
53
54 if test x$AUTOMAKE = x; then
55 AUTOMAKE=`locate_binary automake-1.10 automake-1.9 automake19 automake`
56 if test x$AUTOMAKE = x; then
57 die "Did not find a supported automake"
58 fi
59 fi
60
61 if test x$AUTOCONF = x; then
62 AUTOCONF=`locate_binary autoconf-2.59 autoconf259 autoconf`
63 if test x$AUTOCONF = x; then
64 die "Did not find a supported autoconf"
65 fi
66 fi
67
68 if test x$AUTOHEADER = x; then
69 AUTOHEADER=`locate_binary autoheader-2.59 autoheader259 autoheader`
70 if test x$AUTOHEADER = x; then
71 die "Did not find a supported autoheader"
72 fi
73 fi
74
75 run $LIBTOOLIZE $LIBTOOLIZE_FLAGS || die "Can't execute libtoolize"
76 run $ACLOCAL $ACLOCAL_FLAGS || die "Can't execute aclocal"
77 run $AUTOHEADER || die "Can't execute autoheader"
78 run $AUTOMAKE $AUTOMAKE_FLAGS || die "Can't execute automake"
79 run $AUTOCONF || die "Can't execute autoconf"
80
81 echo "---"
82 echo "Configured with the following tools:"
83 echo " * `$LIBTOOLIZE --version | head -1`"
84 echo " * `$ACLOCAL --version | head -1`"
85 echo " * `$AUTOHEADER --version | head -1`"
86 echo " * `$AUTOMAKE --version | head -1`"
87 echo " * `$AUTOCONF --version | head -1`"
88 echo "---"