From c6e8b4b28b8f19829336cffe8787a20adf69eb52 Mon Sep 17 00:00:00 2001 From: stskeeps Date: Tue, 10 Jul 2001 09:52:44 +0000 Subject: [PATCH] +- Added possiblity to add parameters to configure in Config --- Changes | 1 + Config | 10 ++++++++++ 2 files changed, 11 insertions(+) diff --git a/Changes b/Changes index 6ce288369..742aa7a56 100644 --- a/Changes +++ b/Changes @@ -673,3 +673,4 @@ seen. gmtime warning still there - Changed pthread process check to pthread_join on proposal and idea by codemastr - Some configure.in fixes to pthread stuff +- Added possiblity to add parameters to configure in Config diff --git a/Config b/Config index 3e1b2ec8a..0fc87c70c 100755 --- a/Config +++ b/Config @@ -53,6 +53,7 @@ ARG="$ARG--with-hostname=$DOMAINNAME " ARG="$ARG--with-permissions=$DEFPERM " ARG="$ARG--with-fd-setsize=$MAXCONNECTIONS " ARG="$ARG--enable-dynamic-linking " +ARG="$ARG $EXTRAPARA " CONF="./configure $ARG" echo $CONF $CONF @@ -87,6 +88,7 @@ MAXSENDQLENGTH="3000000" BUFFERPOOL="9" MAXCONNECTIONS="1024" INET6="" +EXTRAPARA="" if [ "`eval echo -n 'a'`" = "-n a" ] ; then c="\c" else @@ -560,6 +562,13 @@ while [ -z "$TEST" ] ; do ;; esac done + +echo "" +echo "Would you like any more parameters to configure?" +echo "Write them here:" +echo $n "[]-> $c" +read EXTRAPARA + rm -f config.settings cat > config.settings << __EOF__ # @@ -580,6 +589,7 @@ HUB="$HUB" DOMAINNAME="$DOMAINNAME" DEFPERM="$DEFPERM" CRYPTOIRCD="$CRYPTOIRCD" +EXTRAPARA="$EXTRAPARA" __EOF__ RUN_CONFIGURE cat << __EOF__