Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 28 Jul 2007 11:49:29 -0700 (PDT)
From:      "Steven G. Kargl" <kargl@troutmask.apl.washington.edu>
To:        marcus@FreeBSD.org
Cc:        gnome@FreeBSD.org
Subject:   Re: ports/114838: devel/gnome-vfs broken without kerberos
Message-ID:  <200707281849.l6SInTQo078788@troutmask.apl.washington.edu>
In-Reply-To: <200707281803.l6SI3k4L084866@freefall.freebsd.org>

next in thread | previous in thread | raw e-mail | index | archive | help
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/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200707281849.l6SInTQo078788>