diff options
author | Dirk Meyer <dinoex@FreeBSD.org> | 2002-06-04 06:54:36 +0000 |
---|---|---|
committer | Dirk Meyer <dinoex@FreeBSD.org> | 2002-06-04 06:54:36 +0000 |
commit | 81cc658a751f55a9d39c1e25dafc08779090e446 (patch) | |
tree | 5638ae2cf393a547fb93cccbcb0919284b725975 /security/openssh-portable/Makefile | |
parent | 1af5ecf24177c2da39a648d447b87232108cd8d6 (diff) | |
download | ports-81cc658a751f55a9d39c1e25dafc08779090e446.tar.gz ports-81cc658a751f55a9d39c1e25dafc08779090e446.zip |
Honor Option ENABLE_SUID_SSH
Build defaults witouth SUID
Notes
Notes:
svn path=/head/; revision=60576
Diffstat (limited to 'security/openssh-portable/Makefile')
-rw-r--r-- | security/openssh-portable/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/security/openssh-portable/Makefile b/security/openssh-portable/Makefile index 2472e0981884..bffacc23db18 100644 --- a/security/openssh-portable/Makefile +++ b/security/openssh-portable/Makefile @@ -6,7 +6,7 @@ # PORTNAME= openssh -PORTREVISION= 1 +PORTREVISION= 2 PORTVERSION= 3.2.3p1 CATEGORIES= security ipv6 MASTER_SITES= ftp://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/ \ @@ -36,6 +36,10 @@ CONFIGURE_ARGS+= --with-pam CONFIGURE_ARGS+= --with-tcp-wrappers .endif +.if !defined(ENABLE_SUID_SSH) +CONFIGURE_ARGS+= --disable-suid-ssh +.endif + .if defined(OPENSSH_OVERWRITE_BASE) USE_OPELSSL_BASE= yes PKGNAMESUFFIX= -overwrite-base |