diff options
Diffstat (limited to 'databases/postgresql73/scripts/configure.postgresql')
-rw-r--r-- | databases/postgresql73/scripts/configure.postgresql | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/databases/postgresql73/scripts/configure.postgresql b/databases/postgresql73/scripts/configure.postgresql index 4523b6e..a8db522 100644 --- a/databases/postgresql73/scripts/configure.postgresql +++ b/databases/postgresql73/scripts/configure.postgresql @@ -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 |