Lennart,<br><br>Apparently I was debugging this at the same time as you. I can&#39;t figure out why my Fedora 11 install with glibc-2.10 has a glibc realpath that doesn&#39;t match the gnu documentation and returns null. But it does.<br>
<br>Your commit aa8ce5bb9b159abb2ffb0f43996340566fc2e9c6 almost fixed my problem, but it needs a tweak.<br><br>Thanks,<br>David Yoder<br><br>diff -rupN pulseaudio-git-latest/src/daemon/main.c pulseaudio-dmy-20091030/src/daemon/main.c<br>
--- pulseaudio-git-latest/src/daemon/main.c    2009-10-30 09:37:50.644334433 -0500<br>+++ pulseaudio-dmy-20091030/src/daemon/main.c    2009-10-30 09:40:44.135336003 -0500<br>@@ -425,7 +425,7 @@ int main(int argc, char *argv[]) {<br>
 <br>         pa_set_env(&quot;LD_BIND_NOW&quot;, &quot;1&quot;);<br> <br>-        if (!(canonical_rp = pa_realpath(PA_BINARY))) {<br>+        if ((canonical_rp = pa_realpath(PA_BINARY))) {<br> <br>             if ((rp = pa_readlink(&quot;/proc/self/exe&quot;))) {<br>
 <br>