diff options
author | cpiazza <cpiazza@FreeBSD.org> | 1999-06-29 13:44:21 +0800 |
---|---|---|
committer | cpiazza <cpiazza@FreeBSD.org> | 1999-06-29 13:44:21 +0800 |
commit | 677f233087b56d6d015035f92588995ca7ec40fa (patch) | |
tree | c31cde6b6c1fc736d0e4bd609e5a487c4cc06a16 /net | |
parent | 4047a35911843e6cfc6271460c7779b812c0f754 (diff) | |
download | freebsd-ports-gnome-677f233087b56d6d015035f92588995ca7ec40fa.tar.gz freebsd-ports-gnome-677f233087b56d6d015035f92588995ca7ec40fa.tar.zst freebsd-ports-gnome-677f233087b56d6d015035f92588995ca7ec40fa.zip |
Make samba auto-use Kerberos 5 a la security/ssh
Note: I haven't tested this because I don't use krb5, but I trust
that it works.
PR: 12143
Submitted by: Walt Howard <howard@ee.utah.edu>
Diffstat (limited to 'net')
-rw-r--r-- | net/samba-devel/Makefile | 6 | ||||
-rw-r--r-- | net/samba/Makefile | 6 | ||||
-rw-r--r-- | net/samba3/Makefile | 6 |
3 files changed, 15 insertions, 3 deletions
diff --git a/net/samba-devel/Makefile b/net/samba-devel/Makefile index 53ebab79da55..5e34acb58944 100644 --- a/net/samba-devel/Makefile +++ b/net/samba-devel/Makefile @@ -3,7 +3,7 @@ # Date created: 11th Feb 1995 # Whom: gpalmer # -# $Id: Makefile,v 1.35 1999/03/03 15:48:33 hosokawa Exp $ +# $Id: Makefile,v 1.36 1999/06/04 01:44:47 jseger Exp $ # DISTNAME= samba-2.0.4b @@ -35,6 +35,10 @@ CONFIGURE_ARGS= --prefix=${PREFIX} --libdir=${SAMBA_CONFDIR} \ --localstatedir=${VARDIR} --with-swatdir=${PREFIX}/share/swat \ --with-lockdir=${VARDIR}/spool/lock +.if defined(KRB5_HOME) && exists(${KRB5_HOME}) +CONFIGURE_ARGS+=--with-krb5=${KRB5_HOME} +.endif + WRKSRC= ${WRKDIR}/${DISTNAME}/source MAN1= nmblookup.1 smbstatus.1 smbclient.1 smbrun.1 smbtar.1 \ diff --git a/net/samba/Makefile b/net/samba/Makefile index 53ebab79da55..5e34acb58944 100644 --- a/net/samba/Makefile +++ b/net/samba/Makefile @@ -3,7 +3,7 @@ # Date created: 11th Feb 1995 # Whom: gpalmer # -# $Id: Makefile,v 1.35 1999/03/03 15:48:33 hosokawa Exp $ +# $Id: Makefile,v 1.36 1999/06/04 01:44:47 jseger Exp $ # DISTNAME= samba-2.0.4b @@ -35,6 +35,10 @@ CONFIGURE_ARGS= --prefix=${PREFIX} --libdir=${SAMBA_CONFDIR} \ --localstatedir=${VARDIR} --with-swatdir=${PREFIX}/share/swat \ --with-lockdir=${VARDIR}/spool/lock +.if defined(KRB5_HOME) && exists(${KRB5_HOME}) +CONFIGURE_ARGS+=--with-krb5=${KRB5_HOME} +.endif + WRKSRC= ${WRKDIR}/${DISTNAME}/source MAN1= nmblookup.1 smbstatus.1 smbclient.1 smbrun.1 smbtar.1 \ diff --git a/net/samba3/Makefile b/net/samba3/Makefile index 53ebab79da55..5e34acb58944 100644 --- a/net/samba3/Makefile +++ b/net/samba3/Makefile @@ -3,7 +3,7 @@ # Date created: 11th Feb 1995 # Whom: gpalmer # -# $Id: Makefile,v 1.35 1999/03/03 15:48:33 hosokawa Exp $ +# $Id: Makefile,v 1.36 1999/06/04 01:44:47 jseger Exp $ # DISTNAME= samba-2.0.4b @@ -35,6 +35,10 @@ CONFIGURE_ARGS= --prefix=${PREFIX} --libdir=${SAMBA_CONFDIR} \ --localstatedir=${VARDIR} --with-swatdir=${PREFIX}/share/swat \ --with-lockdir=${VARDIR}/spool/lock +.if defined(KRB5_HOME) && exists(${KRB5_HOME}) +CONFIGURE_ARGS+=--with-krb5=${KRB5_HOME} +.endif + WRKSRC= ${WRKDIR}/${DISTNAME}/source MAN1= nmblookup.1 smbstatus.1 smbclient.1 smbrun.1 smbtar.1 \ |