if [ -f setup ]; then
. "./setup"
+ infixed="$fixed"
fi
if [ -z "$name" ]; then
fixed="3"
fi
-if [ -z "$confopts" ]; then
+if [ -z "$confopts" -a "$infixed" -lt "4" ]; then
echo "please enter your additional arguments to configure"
echo "examples: --with-ssl --enable-debug --enable-ipv6 --with-krb4"
read confopts
- fixed="3"
+ fixed="4"
fi
echo "email='$email'" >> setup
echo "desc='$desc'" >> setup
echo "confopts='$confopts'" >> setup
+ echo "fixed='$fixed'" >> setup
fi
echo "testcurl: STARTING HERE"
cd "../$build"
# run configure script
-../curl/configure $1 2>&1
+../curl/configure $confopts 2>&1
if [ -f lib/Makefile ]; then
echo "testcurl: configure seems to have finished fine"