diff options
author | Chris Piazza <cpiazza@FreeBSD.org> | 1999-06-29 05:44:21 +0000 |
---|---|---|
committer | Chris Piazza <cpiazza@FreeBSD.org> | 1999-06-29 05:44:21 +0000 |
commit | 595fce410ffa5cde649980ccdfacc37cffbdb1e2 (patch) | |
tree | f37acf7c89bc6d4d1d1b3b794e4fa8d044f2762d /net | |
parent | Activate tkcon. (diff) |
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>
Notes
Notes:
svn path=/head/; revision=19898
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 \ |