diff options
author | Vasil Dimov <vd@FreeBSD.org> | 2006-10-09 06:05:55 +0000 |
---|---|---|
committer | Vasil Dimov <vd@FreeBSD.org> | 2006-10-09 06:05:55 +0000 |
commit | 568170a075f27619ae9f87529688aed3e2ccf320 (patch) | |
tree | 898b91e11ebca0a784369b14d20571c1603d3e08 /devel/lwp | |
parent | - Update to 0.4.1 (diff) |
Mark as BROKEN on 4.x:
In file included from lwp.private.h:50,
from iomgr.c:53:
lwp_ucontext.h:33: conflicting types for `mcontext_t'
/usr/include/machine/ucontext.h:63: previous declaration of `mcontext_t'
lwp_ucontext.h:39: conflicting types for `ucontext_t'
/usr/include/sys/ucontext.h:51: previous declaration of `ucontext_t'
gmake[2]: *** [liblwp_la-iomgr.lo] Error 1
Reported by: kris
Diffstat (limited to 'devel/lwp')
-rw-r--r-- | devel/lwp/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/devel/lwp/Makefile b/devel/lwp/Makefile index 8656f5913cee..95715029c30a 100644 --- a/devel/lwp/Makefile +++ b/devel/lwp/Makefile @@ -22,4 +22,10 @@ CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} USE_LDCONFIG= yes -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 500000 +BROKEN= Does not compile on 4.x +.endif + +.include <bsd.port.post.mk> |