Remove HBA related switch

From: Tom I Helbekkmo <tih@Hamartun.Priv.NO>
This commit is contained in:
Marc G. Fournier 1998-02-14 18:02:43 +00:00
parent aa0d3ec1be
commit dde2b66f44
2 changed files with 211 additions and 259 deletions

446
src/configure vendored

File diff suppressed because it is too large Load Diff

View File

@ -239,21 +239,6 @@ else
fi
export USE_PERL
dnl Unless we specify the command line options
dnl --disable-hba to explicitly disable it
dnl --enable-hba to explicitly enable it
dnl The default is to enable it
if test "$enable_hba" = "yes"
then
NOHBA=no
elif test "$enable_hba" = "no"
then
NOHBA=yes
else
NOHBA=no
fi
export NOHBA
dnl Unless we specify the command line options
dnl --disable cassert to explicitly disable it
dnl --enable cassert to explicitly enable it
@ -531,14 +516,5 @@ fi
AC_MSG_CHECKING(setting DEF_PGPORT)
AC_DEFINE_UNQUOTED(DEF_PGPORT, "${DEF_PGPORT}")
AC_MSG_RESULT($DEF_PGPORT)
AC_MSG_CHECKING(setting HBA)
if test "$NOHBA" = "no"
then
AC_MSG_RESULT(enabled)
AC_DEFINE(HBA)
else
AC_MSG_RESULT(disabled)
fi
AC_OUTPUT(GNUmakefile Makefile.global backend/port/Makefile bin/pg_version/Makefile bin/psql/Makefile bin/pg_dump/Makefile backend/utils/Gen_fmgrtab.sh interfaces/libpq/Makefile interfaces/libpgtcl/Makefile interfaces/ecpg/lib/Makefile )