tmaesaka / memcached forked from dustin/memcached

This is where my memcached work lives before svn munges the changes.

This URL has Read+Write access

memcached / autogen.sh
1b533267 » Brad Fitzpatrick 2003-06-13 autoconf/automake support f... 1 #!/bin/sh
601b6900 » Brad Fitzpatrick 2003-06-14 auto* changes, update to ve... 2 #
3 # This is hacky, because there are so many damn versions
4 # of autoconf/automake. It works with Debian woody, at least.
c30fc828 » Brad Fitzpatrick 2006-09-03 note for self 5 #
6 # Debian sarge:
7 # apt-get install automake1.7 autoconf
8 #
1b533267 » Brad Fitzpatrick 2003-06-13 autoconf/automake support f... 9
10 echo "aclocal..."
d0a13c27 » dormando 2008-07-24 Add support for newer autom... 11 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`
b65aa2ab » Paul Lindner 2007-05-07 fix for freebsd 6.x (and pe... 12 $ACLOCAL || exit 1
1b533267 » Brad Fitzpatrick 2003-06-13 autoconf/automake support f... 13
14 echo "autoheader..."
15 AUTOHEADER=${AUTOHEADER:-autoheader}
16 $AUTOHEADER || exit 1
17
18 echo "automake..."
d0a13c27 » dormando 2008-07-24 Add support for newer autom... 19 AUTOMAKE=`which automake-1.10 || which automake-1.9 || which automake-1.7 || exit 1`
5ee89b13 » dsporter 2004-12-10 From: Doug Porter <dsp@dsp.... 20 $AUTOMAKE --foreign --add-missing || automake --gnu --add-missing || exit 1
1b533267 » Brad Fitzpatrick 2003-06-13 autoconf/automake support f... 21
22 echo "autoconf..."
23 AUTOCONF=${AUTOCONF:-autoconf}
24 $AUTOCONF || exit 1
25