dustin / memcached

Memcached -- you all use it. Get it here.

This URL has Read+Write access

Trond Norbye (author)
Tue Jul 29 09:38:54 -0700 2008
dustin (committer)
Mon Dec 22 12:35:53 -0800 2008
memcached / autogen.sh
100755 26 lines (20 sloc) 0.742 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/bin/sh
#
# This is hacky, because there are so many damn versions
# of autoconf/automake. It works with Debian woody, at least.
#
# Debian sarge:
# apt-get install automake1.7 autoconf
#
 
echo "aclocal..."
ACLOCAL=`which aclocal-1.10 || which aclocal-1.9 || which aclocal19 || which aclocal-1.7 || which aclocal17 || which aclocal-1.5 || which aclocal15 || which aclocal || exit 1`
$ACLOCAL || exit 1
 
echo "autoheader..."
AUTOHEADER=${AUTOHEADER:-autoheader}
$AUTOHEADER || exit 1
 
echo "automake..."
AUTOMAKE=`which automake-1.10 || which automake-1.9 || which automake-1.7 || exit 1`
$AUTOMAKE --foreign --add-missing || automake --gnu --add-missing || exit 1
 
echo "autoconf..."
AUTOCONF=${AUTOCONF:-autoconf}
$AUTOCONF || exit 1