From owner-svn-ports-all@FreeBSD.ORG Tue Jun 9 04:49:38 2015 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 3E4DCCB3; Tue, 9 Jun 2015 04:49:38 +0000 (UTC) (envelope-from ohauer@FreeBSD.org) 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 2C3B21065; Tue, 9 Jun 2015 04:49:38 +0000 (UTC) (envelope-from ohauer@FreeBSD.org) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t594ncN9031486; Tue, 9 Jun 2015 04:49:38 GMT (envelope-from ohauer@FreeBSD.org) Received: (from ohauer@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t594ncfJ031485; Tue, 9 Jun 2015 04:49:38 GMT (envelope-from ohauer@FreeBSD.org) Message-Id: <201506090449.t594ncfJ031485@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: ohauer set sender to ohauer@FreeBSD.org using -f From: Olli Hauer Date: Tue, 9 Jun 2015 04:49:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r388896 - head/www/mod_perl2 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.20 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: Tue, 09 Jun 2015 04:49:38 -0000 Author: ohauer Date: Tue Jun 9 04:49:37 2015 New Revision: 388896 URL: https://svnweb.freebsd.org/changeset/ports/388896 Log: - disable one check, that is not working in poudriere. Until a working condition is found let it fail in configure Modified: head/www/mod_perl2/Makefile Modified: head/www/mod_perl2/Makefile ============================================================================== --- head/www/mod_perl2/Makefile Tue Jun 9 03:54:40 2015 (r388895) +++ head/www/mod_perl2/Makefile Tue Jun 9 04:49:37 2015 (r388896) @@ -46,16 +46,18 @@ PLIST_SUB+= AP22="@comment " PLIST_SUB+= AP22="" .endif -# PR 15750 +# PR 200697 # Test whether the system uses a multithreaded perl HAS_ITHREADS!= ${PERL} -e 'use Config; print $$Config{useithreads} ? 1 : 0' .if ${HAS_ITHREADS:M1} PLIST_SUB+= ITHREADS="" .else -. if !${APACHE_VERSION:M22} -IGNORE= requires PERL with "THREADS=on", please rebuild PERL and all depending ports -. endif -PLIST_SUB+= ITHREADS="@comment " +#. if !${APACHE_VERSION:M22} +#XXX build is correct, but this test fails in poudriere. +# Let it fail in configure until we find a working condition +#IGNORE= requires PERL with "THREADS=on", please rebuild PERL and all depending ports +#. endif +#PLIST_SUB+= ITHREADS="@comment " .endif CONFIGURE_ARGS= PREFIX=${PREFIX} MP_APXS=${APXS} \