diff options
author | dinoex <dinoex@FreeBSD.org> | 2002-06-04 06:54:36 +0000 |
---|---|---|
committer | dinoex <dinoex@FreeBSD.org> | 2002-06-04 06:54:36 +0000 |
commit | 30ad7d1bdec6c4e67f374f0fec188c34efe570ea (patch) | |
tree | 7b39b3856e38924f2025bd2870bdea26d70480d7 /security/openssh-portable | |
parent | 6784683f414d6e10c3bd17a660f04e0885cc1c5f (diff) | |
download | FreeBSD-ports-30ad7d1bdec6c4e67f374f0fec188c34efe570ea.zip FreeBSD-ports-30ad7d1bdec6c4e67f374f0fec188c34efe570ea.tar.gz |
Honor Option ENABLE_SUID_SSH
Build defaults witouth SUID
Diffstat (limited to 'security/openssh-portable')
-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 2472e09..bffacc2 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 |