diff options
author | Bryan Drewery <bdrewery@FreeBSD.org> | 2015-03-31 19:07:25 +0000 |
---|---|---|
committer | Bryan Drewery <bdrewery@FreeBSD.org> | 2015-03-31 19:07:25 +0000 |
commit | ff0a43e2f0f476801aa39d0eb754c9cee18ad214 (patch) | |
tree | 31f1e0c0004b524f22a17e4c262c8ad6a9ba85aa | |
parent | Document mozilla vulnerabilities (diff) |
Remove useless IGNORE for TCP_WRAPPERS and PAM.
TCP_WRAPPERS: /usr/include/tcpd.h is always installed by the base system.
It is only libwrap.so that is conditional on WITH_TCP_WRAPPERS.
PAM: /usr/include/security/pam_modules.h is always installed.
This fixes FreshPorts claiming this port is ignored.
Notes
Notes:
svn path=/head/; revision=382859
-rw-r--r-- | security/openssh-portable/Makefile | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/security/openssh-portable/Makefile b/security/openssh-portable/Makefile index 50211e39c826..fac7f95888a8 100644 --- a/security/openssh-portable/Makefile +++ b/security/openssh-portable/Makefile @@ -158,14 +158,6 @@ BROKEN= KERB_GSSAPI Requires either MIT or HEMIDAL, does not build with base He IGNORE= you have selected HEIMDAL_BASE but do not have heimdal installed in base .endif -.if ${PORT_OPTIONS:MPAM} && !exists(/usr/include/security/pam_modules.h) -IGNORE= PAM must be installed in base -.endif - -.if ${PORT_OPTIONS:MTCP_WRAPPERS} && !exists(/usr/include/tcpd.h) -IGNORE= required /usr/include/tcpd.h missing -.endif - .if ${PORT_OPTIONS:MMIT} || ${PORT_OPTIONS:MHEIMDAL} || ${PORT_OPTIONS:MHEIMDAL_BASE} . if ${PORT_OPTIONS:MHEIMDAL_BASE} CONFIGURE_LIBS+= -lgssapi_krb5 |