On 5/11/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
Out of the box HEAD compiles cleanly on OSX. However, executing any command results in a hang. I traced this back to OSX's buggy pthread implementation.
Thanks for this report. Patch will be applied in the next few hours :)
The configure.in file doesn't properly detect the platform and set the BROKEN_PTHREADS variable for osx/darwin. There's a case statement looking to match the $target_os against linux, bsd and darwin. However, the bsd statement matches before darwin so these variables never get set.
(side note) That's more likely most of transcode threading code that is (almost) broken, not threading library (at least on linux/NPTL, I don't know about darwin/osx). Bests, -- Francesco Romani
