diff options
| author | Daniel Mack <daniel@caiaq.de> | 2009-11-23 00:12:18 +0100 | 
|---|---|---|
| committer | Daniel Mack <daniel@caiaq.de> | 2009-12-16 16:11:36 +0800 | 
| commit | 17d34462eace417075efa2314999a77e41a3849b (patch) | |
| tree | 55bc1bbf154797026d7dcd42762b7b12eac16cf9 /src/modules/rtp/rtsp_client.c | |
| parent | 962164a3b7f17f8a981862d7913a420636241a41 (diff) | |
poll() is totally broken on Mac OS X
Even on 10.5.8, poll() does not do the right thing. Haven't checked on
newer versions. Hence, wrap all occurences of poll() to pa_poll and
emulate that call with select() on OSX. This is totally embarassing.
Diffstat (limited to 'src/modules/rtp/rtsp_client.c')
| -rw-r--r-- | src/modules/rtp/rtsp_client.c | 5 | 
1 files changed, 0 insertions, 5 deletions
| diff --git a/src/modules/rtp/rtsp_client.c b/src/modules/rtp/rtsp_client.c index 59618064..6094eb82 100644 --- a/src/modules/rtp/rtsp_client.c +++ b/src/modules/rtp/rtsp_client.c @@ -45,12 +45,7 @@  #include <pulsecore/macro.h>  #include <pulsecore/strbuf.h>  #include <pulsecore/ioline.h> - -#ifdef HAVE_POLL_H -#include <poll.h> -#else  #include <pulsecore/poll.h> -#endif  #include "rtsp_client.h" | 
