as_cr_alnum=abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789
# If the previous option needs an argument, assign it.
    if test -n "$prev"; then
	eval "$prev=\$option"
	prev=
	continue
    fi

    optarg=`expr "x$option" : 'x[^=]*=\(.*\)'`

    case $option in
	-no-pkg-config | --no-pkg-config)
       	    NO_PKG_CONFIG=yes 
continue;;		
	-sysconfdir |  --sysconfdir)
	    prev=SYSCONF 
continue;;
	-sysconfdir=* |  --sysconfdir=*)
	    SYSCONF="$optarg" 
continue;;
	-prefix | --prefix)
	    prev=PREFIX 
continue;;
	-prefix=* | --prefix=*)
	    PREFIX="$optarg" 
	    continue
continue;;
	-force-make | --force-make)
	    FORCEMAKE=yes 
continue;;
	-force-gpp | --force-gpp)
	    FORCEGPP=yes 
continue;;	
	-force-gcc | --force-gcc)
	    FORCEGCC=yes 
continue;;
	--no-static)
	    NOSTATLIB=true 
continue;;
	-help | --help | -h)
	    HELP=yes 
continue;;
	esac
# vim: ft=sh