#!/bin/sh
# Copyright (C) 1999-2003 by Salvador E. Tropea (SET),
# see copyrigh file for details
#
echo
echo This batch file configures the packages using the settings that the
echo *maintainer* uses for your own needs.
echo These settings doesn\'t have to be the same you want.
echo The most common defaults are obtained by just running configure.bat.
echo If you want to reconfigure the package first delete configure.cache
echo
echo Press the 'ENTER' key to continue.
read
rm -f configure.cache
rm -f Makefile
perl config.pl --no-prefix-h --no-fhs --Xcppflags=-O3\ -fomit-frame-pointer\ -ffast-math --cflags=-O2\ -Wall\ -Werror\ -gstabs+3\ -pipe --cxxflags=-O2\ -Wall\ -Werror\ -gstabs+3\ -pipe --libset --enable-maintainer-mode $1 $2

