From owner-freebsd-questions@FreeBSD.ORG Sun Aug 12 18:54:24 2007 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D5C3616A419 for ; Sun, 12 Aug 2007 18:54:24 +0000 (UTC) (envelope-from h.skuhra@gmail.com) Received: from mu-out-0910.google.com (mu-out-0910.google.com [209.85.134.188]) by mx1.freebsd.org (Postfix) with ESMTP id 637E613C457 for ; Sun, 12 Aug 2007 18:54:23 +0000 (UTC) (envelope-from h.skuhra@gmail.com) Received: by mu-out-0910.google.com with SMTP id w9so1431534mue for ; Sun, 12 Aug 2007 11:54:22 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:date:from:to:cc:subject:message-id:references:mime-version:content-type:content-disposition:in-reply-to:user-agent; b=hxEtwaHQRH7yTt/oyD0NuXMg7hRjjVkr9g+wGpHLdrhzieGps9WXI0bjotbXzaIeKvRndYBQvmJYb0GBvgtFNiHZevMhnjYFWQCdtURMX1Ssh1zqpPdcyI+s63GIUPnJygZMrQ3PCunU8T5LCdgZWCoJ1b+S3BV40V1fzQPtd3U= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:date:from:to:cc:subject:message-id:references:mime-version:content-type:content-disposition:in-reply-to:user-agent; b=TDyiMW+YLuKmNoseot9BF1JWweV6ZyL4intg6wcwYRgntGq6xuvnheBYyGEO4hYcI/kfPUSYs8gKvXAP6EHq0/4pX4Zz646rn74ocOIaDA6BVFHT562DdIVWEqN0XHwLLwvpGUTQX5E3PTIZuDbXVJcQetcTCUXQSwjP0sQKYEA= Received: by 10.86.49.13 with SMTP id w13mr4125557fgw.1186944862115; Sun, 12 Aug 2007 11:54:22 -0700 (PDT) Received: from oslo.ath.cx ( [213.47.80.26]) by mx.google.com with ESMTPS id p9sm9857731fkb.2007.08.12.11.54.19 (version=SSLv3 cipher=OTHER); Sun, 12 Aug 2007 11:54:20 -0700 (PDT) Date: Sun, 12 Aug 2007 20:54:23 +0200 From: "Herbert J. Skuhra" To: Noah Message-ID: <20070812185423.GA34790@oslo.ath.cx> References: <46BE693F.4000808@enabled.com> <20070812102902.GA59220@oslo.ath.cx> <46BF0050.1080208@enabled.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <46BF0050.1080208@enabled.com> User-Agent: Mutt/1.5.16 (2007-06-09) Cc: freebsd-questions@freebsd.org Subject: Re: subversion doesnt build: /usr/bin/ld: cannot find -lgssapi_krb5 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Aug 2007 18:54:24 -0000 On Sun, Aug 12, 2007 at 05:42:56AM -0700, Noah wrote: > > > Herbert J. Skuhra wrote: >> Noah wrote: >>> Hi, >>> >>> subversion doesnt build: /usr/bin/ld: cannot find -lgssapi_krb5 >>> any clues why the gssapi_krb5 is not found. where shall I find the >>> gssapi_krb5 library? Shall I use the library from the linux >>> compatibility dirs? >> security/krb5 >> I don't have libgssapi_krb5.so, but devel/subversion built fine. > > > > thanks Herbert, > > what switches are you using at build time. I added the following to me > /etc/make.conf > > > WITH_MOD_DAV_SVN=yes > WITH_REPOSITORY_CREATION=yes You have propably built www/neon when security/krb5 was installed on your system and later removed the krb5 port. I assume "neon-config --libs" still returns -L/usr/local/lib -rpath=/usr/lib:/usr/local/lib -L/usr/local/lib -lneon -lintl -lssl -lcrypto -lz -L/usr/local/lib -Wl,-rpath -Wl,/usr/local/lib -O2 -fno-strict-aliasing -pipe -march=pentium4 -lgssapi_krb5 -lkrb5 -lk5crypto -lcom_err -lexpat on your system although libgssapi_krb5.so does no longer exist. On my system "neon-config --libs" returns: -L/usr/local/lib -rpath=/usr/lib:/usr/local/lib -L/usr/local/lib -lneon -lintl -lssl -lcrypto -lz -L/usr/lib -lgssapi -lkrb5 -lasn1 -lcrypto -lroken -lcrypt -lcom_err -lexpat You either have to rebuild www/neon or re-install security/krb5. -Herbert