Richard Scobie <r.sco...@clear.net.nz> wrote:
> Hi Gerald,
> 
> Gerald Dachs wrote:
> 
> > If you would take a deeper look into your post you would have noticed 
> > that the mentioned file bitbuffer.o is not
> > build to this time. It must have been build in a former stage. So there 
> > is still no proof that it
> > has been build with -fPIC.
> > 
> 
> You are correct. It appears none of the object files in 
> dvbhddevice/libhdffcmd are being built without -fPIC, whereas all other 
> object files in all the other plugins are, so I will investigate further.


The attached patch should fix this problem.

CU
Oliver

-- 
----------------------------------------------------------------
VDR Remote Plugin 0.4.0: http://www.escape-edv.de/endriss/vdr/
4 MByte Mod: http://www.escape-edv.de/endriss/dvb-mem-mod/
Full-TS Mod: http://www.escape-edv.de/endriss/dvb-full-ts-mod/
----------------------------------------------------------------
diff -pur dvbhddevice.org/Makefile dvbhddevice/Makefile
--- dvbhddevice.org/Makefile	2012-03-11 16:34:00.000000000 +0100
+++ dvbhddevice/Makefile	2012-11-20 15:06:37.000000000 +0100
@@ -99,7 +99,7 @@ i18n: $(I18Nmsgs) $(I18Npot)
 ### Targets:
 
 libvdr-$(PLUGIN).so: $(OBJS) libhdffcmd
-	$(MAKE) -C libhdffcmd all
+	$(MAKE) -C libhdffcmd PLUGIN=$(PLUGIN) all
 	$(CXX) $(CXXFLAGS) -shared $(OBJS) libhdffcmd/libhdffcmd.a -o $@
 	@cp --remove-destination $@ $(LIBDIR)/$@.$(APIVERSION)
 
_______________________________________________
vdr mailing list
vdr@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr

Reply via email to