Mercurial > libavformat.hg
diff os_support.h @ 1813:040097642b13 libavformat
BeOS only: we don't have SA_RESTART. #define to 0 and emit a warning. I don't plan on hosting a streaming tv anyway but it gets ffserver building.
| author | mmu_man |
|---|---|
| date | Fri, 23 Feb 2007 23:35:42 +0000 |
| parents | 0dc3a767943d |
| children | d2d62fa7e7c9 |
line wrap: on
line diff
--- a/os_support.h Fri Feb 23 21:09:50 2007 +0000 +++ b/os_support.h Fri Feb 23 23:35:42 2007 +0000 @@ -62,6 +62,10 @@ /* doesn't set errno but that's enough */ # define usleep(t) snooze((bigtime_t)(t)) # endif +# ifndef SA_RESTART +# warning SA_RESTART not implemented; ffserver might misbehave. +# define SA_RESTART 0 +# endif #endif #if defined(CONFIG_OS2)
