upgrade to 7.2.1

PR:		36975
Submitted by:	maintainer
This commit is contained in:
Ying-Chieh Liao
2002-04-11 04:58:11 +00:00
parent 890f276009
commit b345761190
154 changed files with 1568 additions and 8106 deletions

View File

@@ -25,9 +25,10 @@ if [ "${BATCH}" ]; then
else
/usr/bin/dialog --title "configuration options" --clear \
--checklist "\n\
Please select desired options:" -1 -1 7 \
Please select desired options:" -1 -1 3 \
MultiByte "Multibyte for Multilingualism" ON \
KRB5 "Kerberos 5" ON \
KRB5 "Kerberos 5 (only if it exists)" ON \
CLIENT "PostgreSQL client only, no server" OFF \
2> /tmp/checklist.tmp.$$
retval=$?
@@ -59,6 +60,9 @@ while [ "$1" ]; do
\"KRB5\")
KRB5=1
;;
\"CLIENT\")
CLIENT=1
;;
\"nothing\"|true)
;;
*)
@@ -163,3 +167,7 @@ if [ "${KRB5}" ]; then
fi
fi
fi
if [ ${CLIENT} ]; then
echo "WITHOUT_SERVER=yes" >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc
fi