From mat@aragorn.in.absolight.net  Sun Feb 23 18:13:52 2014
Return-Path: <mat@aragorn.in.absolight.net>
Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115])
	(using TLSv1 with cipher ADH-AES256-SHA (256/256 bits))
	(No client certificate requested)
	by hub.freebsd.org (Postfix) with ESMTPS id 0E5FEE66
	for <FreeBSD-gnats-submit@freebsd.org>; Sun, 23 Feb 2014 18:13:52 +0000 (UTC)
Received: from prod2.absolight.net (mx3.absolight.net [IPv6:2a01:678:2:100::25])
	(using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits))
	(No client certificate requested)
	by mx1.freebsd.org (Postfix) with ESMTPS id BB89716FB
	for <FreeBSD-gnats-submit@freebsd.org>; Sun, 23 Feb 2014 18:13:51 +0000 (UTC)
Received: from prod2.absolight.net (localhost [127.0.0.1])
	by prod2.absolight.net (Postfix) with ESMTP id EE118BDC3E
	for <FreeBSD-gnats-submit@freebsd.org>; Sun, 23 Feb 2014 19:13:48 +0100 (CET)
Received: from gw.in.absolight.net (gw-ecl.in.absolight.net [79.143.241.69])
	(using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits))
	(Client CN "gw.in.absolight.net", Issuer "CA Cert Signing Authority" (not verified))
	by prod2.absolight.net (Postfix) with ESMTPSA id CE522BDC1D
	for <FreeBSD-gnats-submit@freebsd.org>; Sun, 23 Feb 2014 19:13:48 +0100 (CET)
Received: from aragorn.in.absolight.net (aragorn.in.absolight.net [79.143.241.225])
	by gw.in.absolight.net (Postfix) with ESMTP id 246E5613F
	for <FreeBSD-gnats-submit@freebsd.org>; Sun, 23 Feb 2014 19:13:48 +0100 (CET)
Received: by aragorn.in.absolight.net (Postfix, from userid 1000)
	id 5D8711426A2; Sun, 23 Feb 2014 19:13:47 +0100 (CET)
Message-Id: <20140223181347.5D8711426A2@aragorn.in.absolight.net>
Date: Sun, 23 Feb 2014 19:13:47 +0100 (CET)
From: Mathieu Arnold <mat@FreeBSD.org>
To: FreeBSD-gnats-submit@freebsd.org
Subject: [PATCH] devel/pcre: Seems the jit isn't for mips64.
X-Send-Pr-Version: 3.113
X-GNATS-Notify:

>Number:         186983
>Category:       ports
>Synopsis:       [PATCH] devel/pcre: Seems the jit isn't for mips64.
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    bf
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Sun Feb 23 18:20:00 UTC 2014
>Closed-Date:    Wed Mar 05 05:09:20 UTC 2014
>Last-Modified:  Wed Mar 05 05:09:20 UTC 2014
>Originator:     Mathieu Arnold
>Release:        FreeBSD 10.0-RELEASE i386
>Organization:
Absolight
>Environment:
System: FreeBSD aragorn.in.absolight.net 10.0-RELEASE FreeBSD 10.0-RELEASE #0 r260789: Fri Jan 17 01:46:25 UTC
>Description:
On mips64, it says:

pcre_jit_compile.c:65:2: error: #error Unsupported architecture

http://pkg.absolight.net/logs/bulk/latest-per-pkg/pcre/8.34/100mips64-pkgng.log
>How-To-Repeat:
>Fix:

--- pcre-8.34.patch begins here ---
Index: Makefile
===================================================================
--- Makefile	(revision 345754)
+++ Makefile	(working copy)
@@ -32,7 +32,7 @@
 
 .include <bsd.port.options.mk>
 
-.if ${ARCH} != "sparc64" && ${ARCH} != "ia64"
+.if ${ARCH} != "sparc64" && ${ARCH} != "ia64" && ${ARCH} != "mips64"
 CONFIGURE_ARGS+=	--enable-jit
 .else
 CONFIGURE_ARGS+=	--disable-jit
--- pcre-8.34.patch ends here ---

>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports-bugs->bf 
Responsible-Changed-By: edwin 
Responsible-Changed-When: Sun Feb 23 18:20:20 UTC 2014 
Responsible-Changed-Why:  
Over to maintainer (via the GNATS Auto Assign Tool) 

http://www.freebsd.org/cgi/query-pr.cgi?pr=186983 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/186983: commit references a PR
Date: Mon,  3 Mar 2014 15:27:42 +0000 (UTC)

 Author: bf
 Date: Mon Mar  3 15:27:34 2014
 New Revision: 346916
 URL: http://svnweb.freebsd.org/changeset/ports/346916
 QAT: https://qat.redports.org/buildarchive/r346916/
 
 Log:
   Disable the pcre jit on mips64*
   
   PR:		186983
   Submitted by:	mat
 
 Modified:
   head/devel/pcre/Makefile
 
 Modified: head/devel/pcre/Makefile
 ==============================================================================
 --- head/devel/pcre/Makefile	Mon Mar  3 15:20:27 2014	(r346915)
 +++ head/devel/pcre/Makefile	Mon Mar  3 15:27:34 2014	(r346916)
 @@ -32,7 +32,7 @@ STACK_RECURSION_DESC=	Use the stack for 
  
  .include <bsd.port.options.mk>
  
 -.if ${ARCH} != "sparc64" && ${ARCH} != "ia64"
 +.if ${ARCH} != "sparc64" && ${ARCH} != "ia64" && ${ARCH:Mmips64*} == ""
  CONFIGURE_ARGS+=	--enable-jit
  .else
  CONFIGURE_ARGS+=	--disable-jit
 _______________________________________________
 svn-ports-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-ports-all
 To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
 
State-Changed-From-To: open->closed 
State-Changed-By: bf 
State-Changed-When: Wed Mar 5 05:09:19 UTC 2014 
State-Changed-Why:  
Committed, with minor changes. Thanks! 

http://www.freebsd.org/cgi/query-pr.cgi?pr=186983 
>Unformatted:
