Update of /cvsroot/mod-auth/mod_authn_pam
In directory sc8-pr-cvs1:/tmp/cvs-serv6769
Added Files:
autogen.sh
Log Message:
missed a few files on the last commit.
--- NEW FILE: autogen.sh ---
#!/bin/sh
# autogen.sh - generates configure using the autotools
# $Id: autogen.sh,v 1.1 2003/11/11 08:41:51 firechipmunk Exp $
#libtoolize --force --copy
libtoolize14 --force --copy
#aclocal
autoheader
automake --add-missing
echo
echo "Using `autoconf --version`, if you have problems"
echo "while building then edit autogen.sh and rerun it..."
echo
#autoconf
## autoconf 2.53 will not work, at least on FreeBSD. Change the following
## line appropriately to call autoconf 2.13 instead. This one works for
## FreeBSD 4.7:
autoconf213
|