diff options
author | Erwin Lansing <erwin@FreeBSD.org> | 2006-04-21 13:09:38 +0000 |
---|---|---|
committer | Erwin Lansing <erwin@FreeBSD.org> | 2006-04-21 13:09:38 +0000 |
commit | ff1b8f78e2f69b514e86606e1d856700a025c0d4 (patch) | |
tree | 0ec80680ecf82bd3fdf95d81bfba935124902321 /net/openmcu | |
parent | 9cfdf1e990c59598d35f5cfcfd07a4441981adca (diff) | |
download | ports-ff1b8f78e2f69b514e86606e1d856700a025c0d4.tar.gz ports-ff1b8f78e2f69b514e86606e1d856700a025c0d4.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)
Notes
Notes:
svn path=/head/; revision=160071
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' \ |