diff options
author | vd <vd@FreeBSD.org> | 2006-10-09 14:05:55 +0800 |
---|---|---|
committer | vd <vd@FreeBSD.org> | 2006-10-09 14:05:55 +0800 |
commit | 5e1220ae7867628259044128e229798033831e51 (patch) | |
tree | 157cedeff8b70567c6ff7c3a36c526a34de49804 | |
parent | 66be6120bf6a154c672d088f276f2180ce4491e7 (diff) | |
download | freebsd-ports-graphics-5e1220ae7867628259044128e229798033831e51.tar.gz freebsd-ports-graphics-5e1220ae7867628259044128e229798033831e51.tar.zst freebsd-ports-graphics-5e1220ae7867628259044128e229798033831e51.zip |
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
-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 8656f5913ce..95715029c30 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> |