1#!/bin/sh2autoreconf -v --install || exit134# If there are any options, assume the user wants to run configure.5# To run configure w/o any options, use ./autogen.sh --configure6if [ $# -gt 0 ] ; then7case"$1"in8 --conf*)
9shift110 ;;
11esac12exec ./configure"$@"13fi14