From owner-svn-ports-head@FreeBSD.ORG Mon Sep 17 11:10:38 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DB8051065758; Mon, 17 Sep 2012 11:10:38 +0000 (UTC) (envelope-from mm@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 844E58FC89; Mon, 17 Sep 2012 11:10:38 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q8HBAcJq002537; Mon, 17 Sep 2012 11:10:38 GMT (envelope-from mm@svn.freebsd.org) Received: (from mm@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q8HBAcpH002535; Mon, 17 Sep 2012 11:10:38 GMT (envelope-from mm@svn.freebsd.org) Message-Id: <201209171110.q8HBAcpH002535@svn.freebsd.org> From: Martin Matuska Date: Mon, 17 Sep 2012 11:10:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r304395 - head/devel/pcre X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Sep 2012 11:10:39 -0000 Author: mm Date: Mon Sep 17 11:10:37 2012 New Revision: 304395 URL: http://svn.freebsd.org/changeset/ports/304395 Log: Always build with JIT support Treat ia64 together with sparc64 as JIT-unsupported architectures Modified: head/devel/pcre/Makefile Modified: head/devel/pcre/Makefile ============================================================================== --- head/devel/pcre/Makefile Mon Sep 17 10:57:09 2012 (r304394) +++ head/devel/pcre/Makefile Mon Sep 17 11:10:37 2012 (r304395) @@ -7,6 +7,7 @@ PORTNAME= pcre PORTVERSION= 8.31 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= ftp://ftp.csx.cam.ac.uk/pub/software/programming/%SUBDIR%/ \ ftp://ftp.fu-berlin.de/unix/misc/%SUBDIR%/ \ @@ -19,10 +20,6 @@ COMMENT= Perl Compatible Regular Express LICENSE= BSD LICENSE_FILE= ${WRKSRC}/LICENCE -OPTIONS_DEFINE= JIT -OPTIONS_DEFAULT= JIT -JIT_DESC= Enable Just-In-Time compiling support - USE_BZIP2= yes GNU_CONFIGURE= yes USE_LDCONFIG= yes @@ -32,7 +29,7 @@ CONFIGURE_ARGS= --enable-utf --enable-un .include -.if ${PORT_OPTIONS:MJIT} && ${ARCH} != "sparc64" +.if ${ARCH} != "sparc64" && ${ARCH} != "ia64" CONFIGURE_ARGS+= --enable-jit .else CONFIGURE_ARGS+= --disable-jit