1
0
mirror of https://github.com/postgres/postgres.git synced 2025-08-08 06:02:22 +03:00

Remove no-longer-needed configure test for krb5_encrypt(), per Jim Gates.

This commit is contained in:
Tom Lane
2006-07-11 16:15:03 +00:00
parent f446ede326
commit 8d716f0e47
2 changed files with 1 additions and 133 deletions

View File

@@ -1,5 +1,5 @@
dnl Process this file with autoconf to produce a configure script.
dnl $PostgreSQL: pgsql/configure.in,v 1.431.2.11 2006/05/21 21:52:58 tgl Exp $
dnl $PostgreSQL: pgsql/configure.in,v 1.431.2.12 2006/07/11 16:15:03 tgl Exp $
dnl
dnl Developers, please strive to achieve this order:
dnl
@@ -652,8 +652,6 @@ if test "$with_krb5" = yes ; then
if test "$PORTNAME" != "win32"; then
AC_SEARCH_LIBS(com_err, [krb5 'krb5 -ldes -lasn1 -lroken' com_err], [],
[AC_MSG_ERROR([could not find function 'com_err' required for Kerberos 5])])
AC_SEARCH_LIBS(krb5_encrypt, [krb5 'krb5 -ldes -lasn1 -lroken' crypto k5crypto], [],
[AC_MSG_ERROR([could not find function 'krb5_encrypt' required for Kerberos 5])])
AC_SEARCH_LIBS(krb5_sendauth, [krb5 'krb5 -ldes -lasn1 -lroken'], [],
[AC_MSG_ERROR([could not find function 'krb5_sendauth' required for Kerberos 5])])
else