diff options
author | erwin <erwin@FreeBSD.org> | 2006-04-21 21:09:38 +0800 |
---|---|---|
committer | erwin <erwin@FreeBSD.org> | 2006-04-21 21:09:38 +0800 |
commit | 11ecd9ed84c032d6afe02748250331ba59a7e31d (patch) | |
tree | c16d0d294646d2cd55499c832fcf254f6ff6c606 /net/openmcu | |
parent | 13a8591f786c24e8b4238c4220883a7d1aec11c2 (diff) | |
download | freebsd-ports-gnome-11ecd9ed84c032d6afe02748250331ba59a7e31d.tar.gz freebsd-ports-gnome-11ecd9ed84c032d6afe02748250331ba59a7e31d.tar.zst freebsd-ports-gnome-11ecd9ed84c032d6afe02748250331ba59a7e31d.zip |
Due to a missing symbol in the default thread library on sparc64 in
OSVERSION <= 700003, the build ends with an linker error.
- mark it as BROKEN for this particular case
Reported by: Kris (pointyhat)
Discussed on: freebsd-threads@, freebsd-sparc64@
Review and test on: RELENG_6_1 i386, amd64, sparc64
CURRENT i386, amd64
PR: 96136
Submitted by: Joerg Pulz <Joerg.Pulz@frm2.tum.de> (maintainer)
Diffstat (limited to 'net/openmcu')
-rw-r--r-- | net/openmcu/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/net/openmcu/Makefile b/net/openmcu/Makefile index dfd606b98725..cae8cad4195c 100644 --- a/net/openmcu/Makefile +++ b/net/openmcu/Makefile @@ -37,6 +37,10 @@ EXAMPLESDIR= ${PREFIX}/share/examples/openh323 .include <bsd.port.pre.mk> +.if ${ARCH} == sparc64 && ${OSVERSION} <= 700003 +BROKEN= does not link due to missing symbol in default thread library +.endif + pre-install: @${SED} -e 's|%%EXAMPLESDIR%%|${EXAMPLESDIR}|g' \ -e 's|%%PORTNAME%%|${PORTNAME}|g' \ |