From owner-freebsd-ports@FreeBSD.ORG Sat Jan 5 11:23:49 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4FD6916A46D for ; Sat, 5 Jan 2008 11:23:49 +0000 (UTC) (envelope-from dorian.buettner@gmx.de) Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by mx1.freebsd.org (Postfix) with SMTP id A1ABE13C474 for ; Sat, 5 Jan 2008 11:23:48 +0000 (UTC) (envelope-from dorian.buettner@gmx.de) Received: (qmail invoked by alias); 05 Jan 2008 11:23:46 -0000 Received: from port-83-236-54-40.dynamic.qsc.de (EHLO powersupply.doris.net) [83.236.54.40] by mail.gmx.net (mp056) with SMTP; 05 Jan 2008 12:23:46 +0100 X-Authenticated: #1682771 X-Provags-ID: V01U2FsdGVkX1/Bm2szCbHB6xKxKkygK/zbU9R/xmqEhcFGX0vZ2o lRo9+ZRr8g71gz From: Dorian =?utf-8?q?B=C3=BCttner?= To: freebsd-ports@freebsd.org User-Agent: KMail/1.9.7 References: <200801041232.06239.dorian.buettner@gmx.de> <88335647@bb.ipt.ru> In-Reply-To: <88335647@bb.ipt.ru> MIME-Version: 1.0 Content-Disposition: inline Date: Sat, 5 Jan 2008 12:23:46 +0100 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Message-Id: <200801051223.46327.dorian.buettner@gmx.de> X-Y-GMX-Trusted: 0 Subject: Re: postgresql 8.2.5_1 client doesn't make with heimdal X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Jan 2008 11:23:49 -0000 I'm not to deep into this, but as far as I can see, man krb5 doesn't list krb5_sendauth it it's list of provided funtions, however postgres' configure.in is checking for that: 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 fo r Kerberos 5])]) AC_SEARCH_LIBS(krb5_sendauth, [krb5 'krb5 -ldes -lasn1 -lroken'], [], [AC_MSG_ERROR([could not find function 'krb5_sendauth' requi red for Kerberos 5])]) else AC_SEARCH_LIBS(com_err, 'comerr32 -lkrb5_32', [], [AC_MSG_ERROR([could not find function 'com_err' required fo r Kerberos 5])]) fi fi This seems to have been introduced somewhere in postgresql 7.1/7.2 or whatever. http://archives.postgresql.org/pgsql-patches/2001-11/msg00292.php Has heimdal somehow renamed that function in the past couple of versions or is there any other clue to go?