tech-pkg archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

Re: FireFox 10.0.1 pkg for testing



From: John Marino <netbsd%marino.st@localhost>, Date: Sat, 03 Mar 2012 12:31:40 
+0100

> On 3/3/2012 09:26, Martin Husemann wrote:
>> Can you verify that the linker is involved with the intended -lkvm? It
>> should
>> be in the wrapper log file.
>>
>> Martin
> 
> I don't have the patch that includes libkvm.  It's not part of the
> 10.0.2 version, right?
> 
> I'm just going off the log file which indicates libkvm wasn't involved
> in the linking.

I'm not sure, but the attached patch add -lkvm to linking stage of libxul.
Please replace your patch-mm with it, and run "make mdi".

At least for me, this patch improve the situation.

-- 
Ryo ONODERA // ryo_on%yk.rim.or.jp@localhost
PGP fingerprint = 82A2 DC91 76E0 A10A 8ABB  FD1B F404 27FA C7D1 15F3
$NetBSD$

--- toolkit/library/Makefile.in.orig    2012-02-16 06:40:54.000000000 +0000
+++ toolkit/library/Makefile.in
@@ -209,6 +209,17 @@ EXTRA_DSO_LDOPTS += -lelf -ldemangle
 endif
 endif
 
+ifeq ($(OS_ARCH),DragonFly)
+OS_LIBS += $(call EXPAND_LIBNAME,kvm)
+endif
+
+ifeq ($(OS_ARCH),NetBSD)
+EXTRA_DSO_LDOPTS += -lossaudio
+endif
+ifdef PKGSRC_PULSEAUDIO
+EXTRA_DSO_LDOPTS += -lpulse
+endif
+
 ifeq ($(OS_ARCH),WINNT)
 OS_LIBS += $(call EXPAND_LIBNAME,shell32 ole32 uuid version winspool comdlg32 
imm32 winmm wsock32 msimg32 shlwapi psapi ws2_32 dbghelp)
 ifneq (,$(MOZ_DEBUG)$(NS_TRACE_MALLOC))


Home | Main Index | Thread Index | Old Index