From owner-freebsd-current@FreeBSD.ORG Fri May 9 11:09:58 2008 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6F52E1065676 for ; Fri, 9 May 2008 11:09:58 +0000 (UTC) (envelope-from dfr@rabson.org) Received: from itchy.rabson.org (unknown [IPv6:2002:50b1:e8f2:1::143]) by mx1.freebsd.org (Postfix) with ESMTP id 2753F8FC0A for ; Fri, 9 May 2008 11:09:58 +0000 (UTC) (envelope-from dfr@rabson.org) Received: from [IPv6:2001:470:909f:1:21b:63ff:feb8:5abc] (unknown [IPv6:2001:470:909f:1:21b:63ff:feb8:5abc]) by itchy.rabson.org (Postfix) with ESMTP id 46DD93FB0; Fri, 9 May 2008 12:09:57 +0100 (BST) Message-Id: From: Doug Rabson To: Pascal Hofstee In-Reply-To: <20080509123139.50345ec6@nebuchadnezzar> Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Mime-Version: 1.0 (Apple Message framework v919.2) Date: Fri, 9 May 2008 12:09:56 +0100 References: <20080509123139.50345ec6@nebuchadnezzar> X-Mailer: Apple Mail (2.919.2) Cc: freebsd-current , Jiawei Ye Subject: Re: Strange krb5-config output after recent Heimdel import X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 May 2008 11:09:58 -0000 On 9 May 2008, at 11:31, Pascal Hofstee wrote: > On Fri, 9 May 2008 18:16:58 +0800 > "Jiawei Ye" wrote: > >> Dear All, >> After recent heimdel import, "krb5-config --libs" results in >> >> [root@business /usr/src/kerberos5]# krb5-config --libs >> -L/usr/lib -lkrb5 @LIB_pkinit@ -lcom_err @LIB_hcrypto_appl@ -lasn1 >> -lroken -lcrypt @LIB_dlopen@ @LIB_door_create@ -lcom_err >> >> Before the import, it was: >> >> [ leafy@sh-mail ~] $ krb5-config --libs >> -L/usr/lib -lkrb5 -lasn1 -lcrypto -lroken -lcrypt -lcom_err >> >> This broke some ports that depends on the output of krb5-config (ex. >> security/p5-GSSAPI). >> >> Could the importer please fix this issue? > > Ahh, this explains the gnome-vfs build breakage i observed this > morning. In my case it was "krb5-config --cflags" causing the build > breakage. Try this patch (untested - I'm waiting for my buildworld to complete). Index: Makefile =================================================================== RCS file: /home/ncvs/src/kerberos5/usr.bin/krb5-config/Makefile,v retrieving revision 1.15 diff -u -r1.15 Makefile --- Makefile 24 Feb 2005 22:24:24 -0000 1.15 +++ Makefile 9 May 2008 11:08:56 -0000 @@ -7,16 +7,19 @@ krb5-config: krb5-config.in sed -e "s,@PACKAGE\@,FreeBSD heimdal,g" \ - -e "s,@VERSION\@,0.6.3,g" \ + -e "s,@VERSION\@,1.1.0,g" \ -e "s,@prefix\@,/usr,g" \ -e "s,@exec_prefix\@,/usr,g" \ -e "s,@libdir\@,${LIBDIR},g" \ -e "s,@includedir\@,${INCLUDEDIR},g" \ -e "s,@LIB_crypt\@,-lcrypt,g" \ -e "s,@LIB_dbopen\@,,g" \ - -e "s,@LIB_des_appl\@,-lcrypto,g" \ - -e "s,@LIBS\@,-lcom_err,g" \ - -e "s,@INCLUDE_des@,,g" \ + -e "s,@LIB_hcrypto_appl\@,-lcrypto,g" \ + -e "s,@LIB_pkinit\@,-lhx509,g" \ + -e "s,@LIB_dlopen\@,,g" \ + -e "s,@LIB_door_create\@,,g" \ + -e "s,@LIBS\@,,g" \ + -e "s,@INCLUDE_hcrypto@,,g" \ ${.ALLSRC} > ${.TARGET} .include