diff options
author | Mark Murray <markm@FreeBSD.org> | 1998-03-20 14:50:09 +0000 |
---|---|---|
committer | Mark Murray <markm@FreeBSD.org> | 1998-03-20 14:50:09 +0000 |
commit | 3af7e5707f8ca28f7b88785252923e6424824ecc (patch) | |
tree | 0b5da2af6dc9081cabfc157356a9445275615166 /x11/xlockmore | |
parent | 9421a448686317fbc5d43fc41ed16892b01846d1 (diff) | |
download | ports-3af7e5707f8ca28f7b88785252923e6424824ecc.tar.gz ports-3af7e5707f8ca28f7b88785252923e6424824ecc.zip |
Enable kerberosIV if MAKE_KERBEROS4 is set. Xlock will then get a TGT
for the user when she returns and unlocks.
Notes
Notes:
svn path=/head/; revision=10237
Diffstat (limited to 'x11/xlockmore')
-rw-r--r-- | x11/xlockmore/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/x11/xlockmore/Makefile b/x11/xlockmore/Makefile index aba30327118e..4fb9cab8b2ea 100644 --- a/x11/xlockmore/Makefile +++ b/x11/xlockmore/Makefile @@ -3,7 +3,7 @@ # Date created: 9 November 1994 # Whom: smace # -# $Id: Makefile,v 1.29 1998/03/04 08:20:47 tg Exp $ +# $Id: Makefile,v 1.30 1998/03/16 10:04:04 tg Exp $ # DISTNAME= xlockmore-4.08.2 @@ -19,6 +19,9 @@ GNU_CONFIGURE= yes CONFIGURE_ARGS= --without-gl --without-motif --without-sx \ --without-editres --without-dtsaver --without-rplay \ --without-nas +.if defined(MAKE_KERBEROS4) +CONFIGURE_ARGS+= --enable-kerberos4 +.endif USE_X11= yes MAN1= xlock.1 |