Re: [Freevo-devel] Re: record_daemon.py lib error (Fixed)

2003-03-30 Thread Wan Tat Chee
Hi Guys, IMHO, this should be categorized under brown paper bag bugs (cf. Linus). Someone needs to scan thru the code for all os.system() calls in freevo. The GLIBC issue will crop up with high probability if we reference any executables *outside* of the freevo runtime tree, and Krister's

[Freevo-devel] Re: record_daemon.py lib error (Fixed)

2003-03-29 Thread Alex Brown
I had the same problem (Redhat8 with latest CVS freevo). I tracked it down and fixed it by adding the following to src/tv/record_daemon.py import os os.environ['LD_PRELOAD'] = '' # Add this line to stop GLIBC_2.X preload errors I don't know if this is needed for all setups (which is why this

RE: [Freevo-devel] Re: record_daemon.py lib error (Fixed)

2003-03-29 Thread K. Creason
To: [EMAIL PROTECTED] Subject: [Freevo-devel] Re: record_daemon.py lib error (Fixed) I had the same problem (Redhat8 with latest CVS freevo). I tracked it down and fixed it by adding the following to src/tv/record_daemon.py import os os.environ['LD_PRELOAD'] = '' # Add this line to stop GLIBC_2.X