diff options
author | Erwin Lansing <erwin@FreeBSD.org> | 2006-04-23 10:34:03 +0000 |
---|---|---|
committer | Erwin Lansing <erwin@FreeBSD.org> | 2006-04-23 10:34:03 +0000 |
commit | 4411617464276447ca699a4cd220565b670e767e (patch) | |
tree | 0e3c88584294c30a639b87abb301a55f7f65e1e8 | |
parent | Update to the 20060422 snapshot of GCC 4.2.0. (diff) |
Due to a missing symbol in the default thread library on sparc64 in
OSVERSION <= 700003, configure breaks with a linker error during the
detection of libpt from devel/pwlib.
- mark it as BROKEN for this particular case
PR: 96170
Submitted by: Joerg Pulz <Joerg.Pulz@frm2.tum.de>
Approved by: maintainer
Reported by: pointyhat errorlogs
Discussed on: freebsd-threads@, freebsd-sparc64@
Review and test on: RELENG_6_1 i386, amd64, sparc64
CURRENT i386, amd64
Notes
Notes:
svn path=/head/; revision=160217
-rw-r--r-- | net/ekiga/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/net/ekiga/Makefile b/net/ekiga/Makefile index f5ca5a0ae96b..b9b7c1c634ed 100644 --- a/net/ekiga/Makefile +++ b/net/ekiga/Makefile @@ -36,6 +36,10 @@ MAN1= ekiga.1 .include <bsd.port.pre.mk> +.if ${ARCH} == sparc64 && ${OSVERSION} <= 700003 +BROKEN= does not link due to missing symbol in default thread library +.endif + .ifndef (WITHOUT_AVAHI) LIB_DEPENDS+= avahi-core.4:${PORTSDIR}/net/avahi CONFIGURE_ARGS+=--enable-avahi |