Displaying 3 results from an estimated 3 matches for "d_posix_threads".
2004 Aug 06
0
building icecast2 on OpenBSD
...nBSD, -pthread is the way to go (it's a
wrapper saying "Do whatever you have to, just give me threads.")... most
likely on all platforms with gcc and a non-braindead specs file. Mike
wouldn't believe me, though, so this ain't fixed. :) On OBSD 3.2,
-pthread equals "-lc_r -D_POSIX_THREADS", on OBSD 3.3 it's "-lpthread
-D_POSIX_THREADS" (so this problem will probably go away by itself with
OBSD 3.3), and on my Gentoo Linux it does "-lpthread -D_REENTRANT" ...
Anyways, that's how you fix it for yourself easiest. Edit configure.in,
under
[...]
else...
2004 Aug 06
5
building icecast2 on OpenBSD
Is there anyone who has built icecast2 successfully for OpenBSD? I built it
from source with no problem on Linux, but on my OBSD system the configure bombs
while checking for a function in libxslt...
# ./configure
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking whether make sets ${MAKE}... yes
checking for working
2004 Aug 06
2
building icecast2 on OpenBSD
...e way to go (it's a
> wrapper saying "Do whatever you have to, just give me threads.")... most
> likely on all platforms with gcc and a non-braindead specs file. Mike
> wouldn't believe me, though, so this ain't fixed. :) On OBSD 3.2,
> -pthread equals "-lc_r -D_POSIX_THREADS", on OBSD 3.3 it's "-lpthread
> -D_POSIX_THREADS" (so this problem will probably go away by itself with
> OBSD 3.3), and on my Gentoo Linux it does "-lpthread -D_REENTRANT" ...
you were right, Moritz. i saw the error in config.log earlier and didnt really
know w...