Commit c65d86a8 authored by mmu_man's avatar mmu_man

BeOS only: we don't have SA_RESTART. #define to 0 and emit a warning. I don't...

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.

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@8103 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 93785a49
...@@ -62,6 +62,10 @@ __declspec(dllimport) void __stdcall Sleep(unsigned long dwMilliseconds); ...@@ -62,6 +62,10 @@ __declspec(dllimport) void __stdcall Sleep(unsigned long dwMilliseconds);
/* doesn't set errno but that's enough */ /* doesn't set errno but that's enough */
# define usleep(t) snooze((bigtime_t)(t)) # define usleep(t) snooze((bigtime_t)(t))
# endif # endif
# ifndef SA_RESTART
# warning SA_RESTART not implemented; ffserver might misbehave.
# define SA_RESTART 0
# endif
#endif #endif
#if defined(CONFIG_OS2) #if defined(CONFIG_OS2)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment