From owner-freebsd-gnome@FreeBSD.ORG Sat Jul 28 18:50:51 2007 Return-Path: Delivered-To: gnome@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BAC5916A41B; Sat, 28 Jul 2007 18:50:51 +0000 (UTC) (envelope-from kargl@troutmask.apl.washington.edu) Received: from troutmask.apl.washington.edu (troutmask.apl.washington.edu [128.208.78.105]) by mx1.freebsd.org (Postfix) with ESMTP id 94EDA13C4A3; Sat, 28 Jul 2007 18:50:51 +0000 (UTC) (envelope-from kargl@troutmask.apl.washington.edu) Received: from troutmask.apl.washington.edu (localhost.apl.washington.edu [127.0.0.1]) by troutmask.apl.washington.edu (8.14.1/8.14.1) with ESMTP id l6SInTKM078789; Sat, 28 Jul 2007 11:49:29 -0700 (PDT) (envelope-from kargl@troutmask.apl.washington.edu) Received: (from kargl@localhost) by troutmask.apl.washington.edu (8.14.1/8.14.1/Submit) id l6SInTQo078788; Sat, 28 Jul 2007 11:49:29 -0700 (PDT) (envelope-from kargl) From: "Steven G. Kargl" Message-Id: <200707281849.l6SInTQo078788@troutmask.apl.washington.edu> In-Reply-To: <200707281803.l6SI3k4L084866@freefall.freebsd.org> To: marcus@FreeBSD.org Date: Sat, 28 Jul 2007 11:49:29 -0700 (PDT) X-Mailer: ELM [version 2.4ME+ PL123f (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="US-ASCII" Cc: gnome@FreeBSD.org Subject: Re: ports/114838: devel/gnome-vfs broken without kerberos X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 28 Jul 2007 18:50:51 -0000 marcus@FreeBSD.org wrote: > Synopsis: devel/gnome-vfs broken without kerberos > > State-Changed-From-To: open->closed > State-Changed-By: marcus > State-Changed-When: Sat Jul 28 18:03:24 UTC 2007 > State-Changed-Why: > Kerberos is part of the default base system, and we do not support > builds without it. > Then the Makefile should check if WITHOUT_KERBEROS is defined, and issue an error. --- Makefile.orig 2007-07-26 16:15:53.000000000 -0700 +++ Makefile 2007-07-26 16:18:37.000000000 -0700 @@ -58,6 +58,10 @@ USE_FAM= yes .endif +.if defined(WITHOUT_KERBEROS) +.error KERBEROS is required. +.endif + .if exists(${LOCALBASE}/lib/libkrb5.so) LIB_DEPENDS+= krb5:${PORTSDIR}/security/heimdal .endif -- Steve http://troutmask.apl.washington.edu/~kargl/