svn commit: r304395 - head/devel/pcre

Martin Matuska mm at FreeBSD.org
Mon Sep 17 11:10:39 UTC 2012


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



More information about the svn-ports-all mailing list