Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 22 Dec 2014 16:45:42 +0000 (UTC)
From:      Marcus von Appen <mva@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r375245 - in head/lang: python27 python32 python33 python34
Message-ID:  <201412221645.sBMGjg75031061@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: mva
Date: Mon Dec 22 16:45:41 2014
New Revision: 375245
URL: https://svnweb.freebsd.org/changeset/ports/375245
QAT: https://qat.redports.org/buildarchive/r375245/

Log:
  - Revert the previous NIS check, since it does not help at all
  
  PR:		196195
  Submitted by:	ache@
  With hat:	python@

Modified:
  head/lang/python27/Makefile
  head/lang/python32/Makefile
  head/lang/python33/Makefile
  head/lang/python34/Makefile

Modified: head/lang/python27/Makefile
==============================================================================
--- head/lang/python27/Makefile	Mon Dec 22 16:42:47 2014	(r375244)
+++ head/lang/python27/Makefile	Mon Dec 22 16:45:41 2014	(r375245)
@@ -94,7 +94,7 @@ LIB_DEPENDS+=		libffi.so:${PORTSDIR}/dev
 .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=""

Modified: head/lang/python32/Makefile
==============================================================================
--- head/lang/python32/Makefile	Mon Dec 22 16:42:47 2014	(r375244)
+++ head/lang/python32/Makefile	Mon Dec 22 16:45:41 2014	(r375245)
@@ -92,7 +92,7 @@ CFLAGS+=	-DPYTHON_DEFAULT_RECURSION_LIMI
 .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=""

Modified: head/lang/python33/Makefile
==============================================================================
--- head/lang/python33/Makefile	Mon Dec 22 16:42:47 2014	(r375244)
+++ head/lang/python33/Makefile	Mon Dec 22 16:45:41 2014	(r375245)
@@ -86,7 +86,7 @@ CFLAGS+=	-DPYTHON_DEFAULT_RECURSION_LIMI
 .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=""

Modified: head/lang/python34/Makefile
==============================================================================
--- head/lang/python34/Makefile	Mon Dec 22 16:42:47 2014	(r375244)
+++ head/lang/python34/Makefile	Mon Dec 22 16:45:41 2014	(r375245)
@@ -101,7 +101,7 @@ CFLAGS+=	-DPYTHON_DEFAULT_RECURSION_LIMI
 .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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201412221645.sBMGjg75031061>