diff options
author | markm <markm@FreeBSD.org> | 1998-03-20 22:50:09 +0800 |
---|---|---|
committer | markm <markm@FreeBSD.org> | 1998-03-20 22:50:09 +0800 |
commit | c5fbef6a4c9565984170b5069693000b6532efae (patch) | |
tree | b0219e99a05f6fa12125e159ce9171b7c4b02a04 | |
parent | 91641781addc93411abec99c00303ad5cb7395b1 (diff) | |
download | freebsd-ports-gnome-c5fbef6a4c9565984170b5069693000b6532efae.tar.gz freebsd-ports-gnome-c5fbef6a4c9565984170b5069693000b6532efae.tar.zst freebsd-ports-gnome-c5fbef6a4c9565984170b5069693000b6532efae.zip |
Enable kerberosIV if MAKE_KERBEROS4 is set. Xlock will then get a TGT
for the user when she returns and unlocks.
-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 |