- Revert the previous NIS check, since it does not help at all

PR:		196195
Submitted by:	ache@
With hat:	python@
This commit is contained in:
Marcus von Appen 2014-12-22 16:45:41 +00:00
parent ea70da9e01
commit 21c90c5467
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=375245
4 changed files with 4 additions and 4 deletions

View file

@ -94,7 +94,7 @@ LIB_DEPENDS+= libffi.so:${PORTSDIR}/devel/libffi
.endif
# See http://bugs.freebsd.org/115940 and http://bugs.freebsd.org/193650
.if defined(WITHOUT_NIS) || !exists(/usr/include/rpcsvc/yp_prot.h)
.if !exists(/usr/bin/ypcat) || defined(WITHOUT_NIS)
PLIST_SUB+= NO_NIS="@comment "
.else
PLIST_SUB+= NO_NIS=""

View file

@ -92,7 +92,7 @@ CFLAGS+= -DPYTHON_DEFAULT_RECURSION_LIMIT=900
.endif
# See http://bugs.freebsd.org/115940 and http://bugs.freebsd.org/193650
.if defined(WITHOUT_NIS) || !exists(/usr/include/rpcsvc/yp_prot.h)
.if !exists(/usr/bin/ypcat) || defined(WITHOUT_NIS)
PLIST_SUB+= NO_NIS="@comment "
.else
PLIST_SUB+= NO_NIS=""

View file

@ -86,7 +86,7 @@ CFLAGS+= -DPYTHON_DEFAULT_RECURSION_LIMIT=900
.endif
# See http://bugs.freebsd.org/115940 and http://bugs.freebsd.org/193650
.if defined(WITHOUT_NIS) || !exists(/usr/include/rpcsvc/yp_prot.h)
.if !exists(/usr/bin/ypcat) || defined(WITHOUT_NIS)
PLIST_SUB+= NO_NIS="@comment "
.else
PLIST_SUB+= NO_NIS=""

View file

@ -101,7 +101,7 @@ CFLAGS+= -DPYTHON_DEFAULT_RECURSION_LIMIT=900
.endif
# See http://bugs.freebsd.org/115940 and http://bugs.freebsd.org/193650
.if defined(WITHOUT_NIS) || !exists(/usr/include/rpcsvc/yp_prot.h)
.if !exists(/usr/bin/ypcat) || defined(WITHOUT_NIS)
PLIST_SUB+= NO_NIS="@comment "
DISABLED_EXTENSIONS+= nis
.else