From owner-freebsd-questions@FreeBSD.ORG Thu Jan 27 17:33:50 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 087BD16A4CE for ; Thu, 27 Jan 2005 17:33:50 +0000 (GMT) Received: from mail.freebsd-corp-net-guide.com (mail.freebsd-corp-net-guide.com [65.75.192.90]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6963843D54 for ; Thu, 27 Jan 2005 17:33:49 +0000 (GMT) (envelope-from tedm@toybox.placo.com) Received: from tedwin2k (nat-rtr.freebsd-corp-net-guide.com [65.75.197.130]) j0RHXkj44467; Thu, 27 Jan 2005 09:33:47 -0800 (PST) (envelope-from tedm@toybox.placo.com) From: "Ted Mittelstaedt" To: "Mike Doyle" Date: Thu, 27 Jan 2005 09:33:45 -0800 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.6604 (9.0.2911.0) X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1441 In-Reply-To: <6.2.0.14.0.20050127110158.02c458a0@199.107.2.1> Importance: Normal cc: freebsd-questions@freebsd.org Subject: RE: Need to get DarwinStreamingServer on 5.3R X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Jan 2005 17:33:50 -0000 > -----Original Message----- > From: owner-freebsd-questions@freebsd.org > [mailto:owner-freebsd-questions@freebsd.org]On Behalf Of Mike Doyle > Sent: Thursday, January 27, 2005 3:08 AM > To: Ted Mittelstaedt > Cc: freebsd-questions@freebsd.org > Subject: RE: Need to get DarwinStreamingServer on 5.3R > > > At 05:31 27/01/2005, Ted Mittelstaedt wrote: > >owner-freebsd-questions@freebsd.org wrote: > > > I'm trying to install DSS onto FreeBSD 5.3 > > > > > > The Port wants version 5.0.1.1_2 of the source code tarball, > > > and it's no longer available from the Apple download site. > > > > > > The version in both ZIP and CVS available from the Apple site > > > fails to compile. > > > > > > >What's the error message on the compilation? > > > > > >Ted > > The compile fails with an error message > > ... undefined reference to '__gxx_peraonality_v0' > *** Error code 1 > > Stop in ..../DSS-v5_0_3_2/QTFileTools/QTTrackInfo.tproj. > > Looks like someome misspelled "personality" in the code somewhere? The error should be undefined reference to `__gxx_personality_v0' and is caused by not including libstdc++ Since that's a standard library included by g++ when you compile, I suspect you are running into either a compiler bug or perhaps the code is trying to use gcc or ld instead of g++ to link? 4.X used an older version of gcc Ted