From owner-svn-ports-all@freebsd.org Mon Oct 31 16:48:30 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E658BC28FDB; Mon, 31 Oct 2016 16:48:30 +0000 (UTC) (envelope-from adamw@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 B5DDE1C8B; Mon, 31 Oct 2016 16:48:30 +0000 (UTC) (envelope-from adamw@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u9VGmTQ2080259; Mon, 31 Oct 2016 16:48:29 GMT (envelope-from adamw@FreeBSD.org) Received: (from adamw@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u9VGmTY4080258; Mon, 31 Oct 2016 16:48:29 GMT (envelope-from adamw@FreeBSD.org) Message-Id: <201610311648.u9VGmTY4080258@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: adamw set sender to adamw@FreeBSD.org using -f From: Adam Weinberger Date: Mon, 31 Oct 2016 16:48:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r425013 - head/devel/pcre 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.23 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: Mon, 31 Oct 2016 16:48:31 -0000 Author: adamw Date: Mon Oct 31 16:48:29 2016 New Revision: 425013 URL: https://svnweb.freebsd.org/changeset/ports/425013 Log: Use an option helper and put the description block for it into a pkg-help. Improve an ARCH-checking construct. Modified: head/devel/pcre/Makefile Modified: head/devel/pcre/Makefile ============================================================================== --- head/devel/pcre/Makefile Mon Oct 31 16:24:59 2016 (r425012) +++ head/devel/pcre/Makefile Mon Oct 31 16:48:29 2016 (r425013) @@ -43,13 +43,9 @@ LIBEDIT_CONFIGURE_ENABLE= pcretest-libed READLINE_USES= readline READLINE_CONFIGURE_ENABLE= pcretest-libreadline -.include +STACK_RECURSION_CONFIGURE_ENABLE= stack-for-recursion -# Using the heap rather than the stack for recursion is slower but less -# prone to segfaults from stack exhaustion when matching certain patterns -.if !${PORT_OPTIONS:MSTACK_RECURSION} -CONFIGURE_ARGS+= --disable-stack-for-recursion -.endif +.include # Optional knobs that accept positive integer parameters (see pcrebuild(3)): @@ -84,9 +80,7 @@ CONFIGURE_ARGS+= --with-parens-nest-limi CONFIGURE_ARGS+= --with-posix-malloc-threshold=${WITH_POSIX_MALLOC_THRESHOLD} .endif -.include - -.if ${ARCH} != "sparc64" && ${ARCH} != "ia64" && ${ARCH:Mmips64*} == "" +.if ${ARCH} != "sparc64" && ${ARCH} != "ia64" && empty(ARCH:Mmips64*) CONFIGURE_ARGS+= --enable-jit .else CONFIGURE_ARGS+= --disable-jit