summaryrefslogtreecommitdiff
path: root/src/OS
diff options
context:
space:
mode:
authorJeremy Harris <jgh146exb@wizmail.org>2017-10-14 19:16:59 +0100
committerJeremy Harris <jgh146exb@wizmail.org>2017-10-14 19:44:38 +0100
commitbb07bcd32250965a896b0856dd1b839b5795e2f4 (patch)
tree8aee1424e4b5cf6e81753cd69051da97c5fb57b9 /src/OS
parent8b6c571562bd646b858bf8058394e8cc9579ef99 (diff)
Tidy build for OpenBSD
Diffstat (limited to 'src/OS')
-rw-r--r--src/OS/os.h-OpenBSD25
1 files changed, 24 insertions, 1 deletions
diff --git a/src/OS/os.h-OpenBSD b/src/OS/os.h-OpenBSD
index 5d55a967e..9da2599c1 100644
--- a/src/OS/os.h-OpenBSD
+++ b/src/OS/os.h-OpenBSD
@@ -10,7 +10,7 @@
if the version released is past that point. */
#include <sys/param.h>
#if OpenBSD >= 201405
-#define NOT_HAVE_ARC4RANDOM_STIR
+# define NOT_HAVE_ARC4RANDOM_STIR
#endif
typedef struct flock flock_t;
@@ -27,4 +27,27 @@ typedef struct __res_state *res_state;
# define EPROTO 71
#endif
+/* We need to force this; the automatic in buildconfig.c gets %ld */
+#ifdef OFF_T_FMT
+# undef OFF_T_FMT
+# undef LONGLONG_T
+#endif
+#define OFF_T_FMT "%lld"
+#define LONGLONG_T long long int
+
+#ifdef PID_T_FMT
+# undef PID_T_FMT
+#endif
+#define PID_T_FMT "%d"
+
+#ifdef INO_T_FMT
+# undef INO_T_FMT
+#endif
+#define INO_T_FMT "%llu"
+
+#ifdef TIME_T_FMT
+# undef TIME_T_FMT
+#endif
+#define TIME_T_FMT "%lld"
+
/* End */