$OpenBSD: patch-i3-dump-log_main_c,v 1.1 2013/06/02 11:24:06 dcoppa Exp $

OpenBSD lacks pthread_condattr_setpshared()

--- i3-dump-log/main.c.orig	Mon Mar 18 22:43:36 2013
+++ i3-dump-log/main.c	Sun Jun  2 12:28:54 2013
@@ -28,8 +28,12 @@
 #include "shmlog.h"
 #include <i3/ipc.h>
 
+#if !defined(__OpenBSD__)
 static uint32_t offset_next_write,
                 wrap_count;
+#else
+static uint32_t wrap_count;
+#endif
 
 static i3_shmlog_header *header;
 static char *logbuffer,
@@ -62,18 +66,28 @@ static void print_till_end(void) {
 
 int main(int argc, char *argv[]) {
     int o, option_index = 0;
+#if !defined(__OpenBSD__)
     bool verbose = false,
          follow = false;
+#else
+    bool verbose = false;
+#endif
 
     static struct option long_options[] = {
         {"version", no_argument, 0, 'v'},
         {"verbose", no_argument, 0, 'V'},
+#if !defined(__OpenBSD__)
         {"follow", no_argument, 0, 'f'},
+#endif
         {"help", no_argument, 0, 'h'},
         {0, 0, 0, 0}
     };
 
-    char *options_string = "s:vfVh";
+#if !defined(__OpenBSD__)
+    char *options_string = "vfVh";
+#else
+    char *options_string = "vVh";
+#endif
 
     while ((o = getopt_long(argc, argv, options_string, long_options, &option_index)) != -1) {
         if (o == 'v') {
@@ -81,11 +95,17 @@ int main(int argc, char *argv[]) {
             return 0;
         } else if (o == 'V') {
             verbose = true;
+#if !defined(__OpenBSD__)
         } else if (o == 'f') {
             follow = true;
+#endif
         } else if (o == 'h') {
             printf("i3-dump-log " I3_VERSION "\n");
-            printf("i3-dump-log [-f] [-s <socket>]\n");
+#if !defined(__OpenBSD__)
+            printf("i3-dump-log [-fhVv]\n");
+#else
+            printf("i3-dump-log [-hVv]\n");
+#endif
             return 0;
         }
     }
@@ -167,6 +187,7 @@ int main(int argc, char *argv[]) {
     walk = logbuffer + sizeof(i3_shmlog_header);
     print_till_end();
 
+#if !defined(__OpenBSD__)
     if (follow) {
         /* Since pthread_cond_wait() expects a mutex, we need to provide one.
          * To not lock i3 (that’s bad, mhkay?) we just define one outside of
@@ -182,6 +203,7 @@ int main(int argc, char *argv[]) {
             }
         }
     }
+#endif
 
     return 0;
 }
