changeset 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 d36d087e247f
children d431b26ff5ef
files os_support.h
diffstat 1 files changed, 4 insertions(+), 0 deletions(-) [+]
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)