From owner-svn-ports-all@FreeBSD.ORG Mon Dec 22 09:47:37 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E7ACDBE2; Mon, 22 Dec 2014 09:47:37 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B84CF64168; Mon, 22 Dec 2014 09:47:37 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sBM9lbYc033172; Mon, 22 Dec 2014 09:47:37 GMT (envelope-from mva@FreeBSD.org) Received: (from mva@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sBM9lbX8033166; Mon, 22 Dec 2014 09:47:37 GMT (envelope-from mva@FreeBSD.org) Message-Id: <201412220947.sBM9lbX8033166@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: mva set sender to mva@FreeBSD.org using -f From: Marcus von Appen Date: Mon, 22 Dec 2014 09:47:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r375221 - in head/lang: python32 python33 python34 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 22 Dec 2014 09:47:38 -0000 Author: mva Date: Mon Dec 22 09:47:36 2014 New Revision: 375221 URL: https://svnweb.freebsd.org/changeset/ports/375221 QAT: https://qat.redports.org/buildarchive/r375221/ Log: - Python 3.x: try to improve the NIS detection for FreeBSD PR: 193650 With hat: python Modified: head/lang/python32/Makefile head/lang/python33/Makefile head/lang/python34/Makefile Modified: head/lang/python32/Makefile ============================================================================== --- head/lang/python32/Makefile Mon Dec 22 09:45:37 2014 (r375220) +++ head/lang/python32/Makefile Mon Dec 22 09:47:36 2014 (r375221) @@ -91,8 +91,8 @@ PLIST_FILES+= libdata/pkgconfig/python-3 CFLAGS+= -DPYTHON_DEFAULT_RECURSION_LIMIT=900 .endif -# See http://bugs.freebsd.org/115940 -.if !exists(/usr/bin/ypcat) || defined(WITHOUT_NIS) # the world with NO_NIS +# See http://bugs.freebsd.org/115940 and http://bugs.freebsd.org/193650 +.if defined(WITHOUT_NIS) || !exists(/usr/include/rpcsvc/yp_prot.h) PLIST_SUB+= NO_NIS="@comment " .else PLIST_SUB+= NO_NIS="" Modified: head/lang/python33/Makefile ============================================================================== --- head/lang/python33/Makefile Mon Dec 22 09:45:37 2014 (r375220) +++ head/lang/python33/Makefile Mon Dec 22 09:47:36 2014 (r375221) @@ -85,8 +85,8 @@ PLIST_FILES+= libdata/pkgconfig/python-3 CFLAGS+= -DPYTHON_DEFAULT_RECURSION_LIMIT=900 .endif -# See http://bugs.freebsd.org/115940 -.if !exists(/usr/bin/ypcat) || defined(WITHOUT_NIS) # the world with NO_NIS +# See http://bugs.freebsd.org/115940 and http://bugs.freebsd.org/193650 +.if defined(WITHOUT_NIS) || !exists(/usr/include/rpcsvc/yp_prot.h) PLIST_SUB+= NO_NIS="@comment " .else PLIST_SUB+= NO_NIS="" Modified: head/lang/python34/Makefile ============================================================================== --- head/lang/python34/Makefile Mon Dec 22 09:45:37 2014 (r375220) +++ head/lang/python34/Makefile Mon Dec 22 09:47:36 2014 (r375221) @@ -100,8 +100,8 @@ PLIST_FILES+= libdata/pkgconfig/python-3 CFLAGS+= -DPYTHON_DEFAULT_RECURSION_LIMIT=900 .endif -# See http://bugs.freebsd.org/115940 -.if !exists(/usr/bin/ypcat) || defined(WITHOUT_NIS) # the world with NO_NIS +# See http://bugs.freebsd.org/115940 and http://bugs.freebsd.org/193650 +.if defined(WITHOUT_NIS) || !exists(/usr/include/rpcsvc/yp_prot.h) PLIST_SUB+= NO_NIS="@comment " DISABLED_EXTENSIONS+= nis .else