Commit Message
Thanks a ton Reinhard, appreciate the reply and the fix. For those that
want a patch till maybe they fix it, here ya go.
Thanks again!
Chad
Reinhard Nissl wrote:
> Hi,
>
> Chad Flynt wrote:
>
>> I tried compiling Xine last night albeit was the CVS from yesterday,
>> so maybe I need to grab the one from the 5th, but applied these
>> patches and when I compile it and try to do the install I get the
>> following: This is for XINE-LIB
>>
>> make install-data-hook
>> make[4]: Entering directory
>> `/usr/local/src/xine.cvs/xine-lib/src/xine-engine'
>> chcon system_u:object_r:texrel_shlib_t /usr/lib/libxine.so
>> chcon: /usr/lib/libxine.so: Operation not supported
>> make[4]: *** [install-data-hook] Error 1
>> make[4]: Leaving directory
>
>
> I've read about this issue on xine devel ML and I thought this should
> be fixed, but obviously this is not the case.
>
> As a workaround, just locate the following line below
> "install-data-hook:" in misc/Makefile.common:
>
> install-data-hook:
> .
> .
> .
> if test -x /usr/bin/chcon -a `id -u` -eq 0; then \
> .
> .
> .
>
> and change it for example to:
> .
> .
> .
> if false; then \
> .
> .
> .
>
> I had the same problem on my system and "solved" it temporarily by
> disabling the offending code.
>
> Bye.
Comments
Well thanks to Reinhard, I got Xine compiled, and got Xine working over
DFB, not quite sure if it is the proper way but it is running. My
question to anyone is if there is anyone else out there running Xine
over DFB for VDR. And do you have any recommendations on settings and
such. I am just trying not to reinvent the wheel if someone else has
already played with different options etc. I would also like to start
Xine when VDR starts, I read on the VDR Wiki in German that you can edit
the xine.c file but the page didn't come out right, so was hopeing
someone could shed some light there. Any tips or tricks to make the
best performance osd etc do let me know please. Also is there anything
in particular that can be done to DFB to properly support like YAEPG. I
can mod YAEPG no problem to fit properly but being as the video window
doesn't scale like it should, was wondering if anyone knew the trick to
that. Or if it is an FFMPEG problem or what.
Thanks for any assistance. Very happy to get it going, running much
smoother and less cpu than Softdevice, and also allows me to do HD now!
Chad
@@ -10,7 +10,7 @@
$(top_srcdir)/post-install.sh ; \
fi; \
fi; \
- if test -x /usr/bin/chcon -a `id -u` -eq 0; then \
+ if false; then \
list='$(lib_LTLIBRARIES)'; \
if test -n "$$list" ; then \
for p in $$list; do \