diff options
author | kris <kris@FreeBSD.org> | 2004-02-17 08:22:55 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2004-02-17 08:22:55 +0800 |
commit | 731b7ffa7e02ea06f7ff650cf02331d5ea5e1e31 (patch) | |
tree | 9a7a0802d9547e24dafa6f6b46c09fd5ee462e0f | |
parent | 0783500376930eb242169bed0d355c25535a05b6 (diff) | |
download | freebsd-ports-graphics-731b7ffa7e02ea06f7ff650cf02331d5ea5e1e31.tar.gz freebsd-ports-graphics-731b7ffa7e02ea06f7ff650cf02331d5ea5e1e31.tar.zst freebsd-ports-graphics-731b7ffa7e02ea06f7ff650cf02331d5ea5e1e31.zip |
FORBIDDEN on 502102: Does not respect PTHREAD_{CFLAGS,LIBS}
-rw-r--r-- | lang/pike74/Makefile | 4 | ||||
-rw-r--r-- | textproc/p5-XML-Xerces/Makefile | 4 | ||||
-rw-r--r-- | textproc/xalan-c/Makefile | 4 |
3 files changed, 12 insertions, 0 deletions
diff --git a/lang/pike74/Makefile b/lang/pike74/Makefile index 8d7a2db40aa..15c2d9654c1 100644 --- a/lang/pike74/Makefile +++ b/lang/pike74/Makefile @@ -69,6 +69,10 @@ USE_REINPLACE= yes .include <bsd.port.pre.mk> +.if ${OSVERSION} >= 502102 +FORBIDDEN= "Does not respect PTHREAD_{CFLAGS,LIBS}" +.endif + PLIST_SUB+= PORTVERSION=${PORTVERSION} # FreeBSD 5.0 Needs to have libgmp port to support gmp. diff --git a/textproc/p5-XML-Xerces/Makefile b/textproc/p5-XML-Xerces/Makefile index 5ea3a5acdfc..4a67f3e5292 100644 --- a/textproc/p5-XML-Xerces/Makefile +++ b/textproc/p5-XML-Xerces/Makefile @@ -33,6 +33,10 @@ USE_GMAKE= yes IGNORE= "requires perl 5.6.x or later. Install lang/perl5 and try again" .endif +.if ${OSVERSION} >= 502102 +FORBIDDEN= "Does not respect PTHREAD_{CFLAGS,LIBS}" +.endif + post-patch: @${PERL} -pi -e "s|-lpthread|${PTHREAD_LIBS}|" ${WRKSRC}/Makefile.PL diff --git a/textproc/xalan-c/Makefile b/textproc/xalan-c/Makefile index 6769c22b7d0..25c87ad79cd 100644 --- a/textproc/xalan-c/Makefile +++ b/textproc/xalan-c/Makefile @@ -64,6 +64,10 @@ CONFIGURE_ARGS+= -p freebsd -c ${CC} -x ${CXX} -z -I${LOCALBASE}/include -C --pr .include "${WRKDIRPREFIX}${.CURDIR}/Makefile.inc" .endif +.if ${OSVERSION} >= 502102 +FORBIDDEN= "Does not respect PTHREAD_{CFLAGS,LIBS}" +.endif + .if defined(DEBUG) CONFIGURE_ARGS+= -d STRIP= |