Sfoglia il codice sorgente

Add preliminary Mac OS X support

tags/1.2
TomBoehm 10 anni fa
parent
commit
5b08179493
2 ha cambiato i file con 9 aggiunte e 1 eliminazioni
  1. 5
    1
      postsrsd.c
  2. 4
    0
      srs2.h

+ 5
- 1
postsrsd.c Vedi File

@@ -28,7 +28,11 @@
28 28
 #include <pwd.h>
29 29
 #include <string.h>
30 30
 #include <poll.h>
31
-#include <wait.h>
31
+#ifdef __APPLE__
32
+    #include <sys/wait.h>
33
+#else
34
+    #include <wait.h>
35
+#endif
32 36
 #include <syslog.h>
33 37
 
34 38
 #ifndef VERSION

+ 4
- 0
srs2.h Vedi File

@@ -20,6 +20,10 @@
20 20
 #include <stdio.h>
21 21
 #include <stdlib.h>
22 22
 #include <ctype.h>
23
+#ifdef __APPLE__
24
+    #include <sys/types.h>
25
+#endif
26
+
23 27
 
24 28
 #ifndef __BEGIN_DECLS
25 29
 #define __BEGIN_DECLS

Loading…
Annulla
Salva