diff options
author | krion <krion@FreeBSD.org> | 2005-06-12 15:39:16 +0800 |
---|---|---|
committer | krion <krion@FreeBSD.org> | 2005-06-12 15:39:16 +0800 |
commit | 9920fe643d5b47ecdc8e11193707c35ac9e86159 (patch) | |
tree | a25cee260d6541819dbb9aa549d86a10d3008bfa /devel | |
parent | 6a8d47377d0b010244eea76fdb901dd73f31343a (diff) | |
download | freebsd-ports-gnome-9920fe643d5b47ecdc8e11193707c35ac9e86159.tar.gz freebsd-ports-gnome-9920fe643d5b47ecdc8e11193707c35ac9e86159.tar.zst freebsd-ports-gnome-9920fe643d5b47ecdc8e11193707c35ac9e86159.zip |
Add WITH_LINK_SIZE knob which allows to adjust pcre internal data
structures for compilation of jumbo-sized patterns.
PR: ports/74369
Submitted by: David Landgren <david (at) landgren dot net>
Diffstat (limited to 'devel')
-rw-r--r-- | devel/pcre/Makefile | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/devel/pcre/Makefile b/devel/pcre/Makefile index 32652e842011..0cc99f600005 100644 --- a/devel/pcre/Makefile +++ b/devel/pcre/Makefile @@ -11,8 +11,7 @@ CATEGORIES= devel MASTER_SITES= ftp://ftp.csx.cam.ac.uk/pub/software/programming/%SUBDIR%/ \ ftp://ftp.fu-berlin.de/unix/misc/%SUBDIR%/ \ ftp://ftp.tin.org/pub/libs/%SUBDIR%/ -MASTER_SITE_SUBDIR= \ - ${PORTNAME} +MASTER_SITE_SUBDIR=${PORTNAME} MAINTAINER= krion@FreeBSD.org COMMENT= Perl Compatible Regular Expressions library @@ -26,13 +25,15 @@ PORTDOCS= * .endif .if defined(WITH_UTF8) -CONFIGURE_ARGS+= \ - --enable-utf8 \ +CONFIGURE_ARGS+=--enable-utf8 \ --enable-unicode-properties .endif -CONFIGURE_TARGET= \ - --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} +.if defined(WITH_LINK_SIZE) +CONFIGURE_ARGS+=--with-link-size=${WITH_LINK_SIZE} +.endif + +CONFIGURE_TARGET=--build=${MACHINE_ARCH}-portbld-freebsd${OSREL} MAN1= pcregrep.1 pcretest.1 MAN3= pcre.3 pcre_compile.3 pcre_config.3 \ |