Annotation of embedaddon/spawn-fcgi/autogen.sh, revision 1.1

1.1     ! misho       1: #!/bin/sh
        !             2: # Run this to generate all the initial makefiles, etc.
        !             3: 
        !             4: ACLOCAL=${ACLOCAL:-aclocal}
        !             5: AUTOHEADER=${AUTOHEADER:-autoheader}
        !             6: AUTOMAKE=${AUTOMAKE:-automake}
        !             7: AUTOMAKE_FLAGS="--add-missing --copy"
        !             8: AUTOCONF=${AUTOCONF:-autoconf}
        !             9: 
        !            10: ARGV0=$0
        !            11: 
        !            12: set -e
        !            13: 
        !            14: 
        !            15: run() {
        !            16:        echo "$ARGV0: running \`$@'"
        !            17:        $@
        !            18: }
        !            19: 
        !            20: run $ACLOCAL $ACLOCAL_FLAGS
        !            21: run $AUTOHEADER
        !            22: run $AUTOMAKE $AUTOMAKE_FLAGS
        !            23: run $AUTOCONF
        !            24: echo "Now type './configure ...' and 'make' to compile."

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>