Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 17 Sep 2012 11:10:38 +0000 (UTC)
From:      Martin Matuska <mm@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r304395 - head/devel/pcre
Message-ID:  <201209171110.q8HBAcpH002535@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <bsd.port.options.mk>
 
-.if ${PORT_OPTIONS:MJIT} && ${ARCH} != "sparc64"
+.if ${ARCH} != "sparc64" && ${ARCH} != "ia64"
 CONFIGURE_ARGS+=	--enable-jit
 .else
 CONFIGURE_ARGS+=	--disable-jit



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