$OpenBSD: patch-include_shmlog_h,v 1.3 2014/07/11 15:49:58 dcoppa Exp $

OpenBSD lacks pthread_condattr_setpshared()

--- include/shmlog.h.orig	Sun Jun 15 19:12:43 2014
+++ include/shmlog.h	Thu Jul  3 21:06:32 2014
@@ -11,7 +11,9 @@
 #pragma once
 
 #include <stdint.h>
+#if !defined(__OpenBSD__)
 #include <pthread.h>
+#endif
 
 /* Default shmlog size if not set by user. */
 extern const int default_shmlog_size;
@@ -37,8 +39,10 @@ typedef struct i3_shmlog_header {
      * and don’t matter — clients use an equality check (==). */
     uint32_t wrap_count;
 
+#if !defined(__OpenBSD__)
     /* pthread condvar which will be broadcasted whenever there is a new
      * message in the log. i3-dump-log uses this to implement -f (follow, like
      * tail -f) in an efficient way. */
     pthread_cond_t condvar;
+#endif
 } i3_shmlog_header;
