Files
haikuports/sys-devel/libuuid/patches/libuuid-1.0.3.patchset
2014-10-22 21:53:16 +02:00

25 lines
482 B
Plaintext

From dccd4cbf2192dd45611fc121b9e70178e616212a Mon Sep 17 00:00:00 2001
From: Adrien Destugues <pulkomandy@gmail.com>
Date: Wed, 22 Oct 2014 21:18:47 +0200
Subject: Fix build on Haiku.
It sems this include is useless.
diff --git a/randutils.c b/randutils.c
index 80893d3..e7fa7c3 100644
--- a/randutils.c
+++ b/randutils.c
@@ -13,7 +13,9 @@
#include <string.h>
#include <sys/time.h>
+#ifndef __HAIKU__
#include <sys/syscall.h>
+#endif
#include "randutils.h"
--
1.8.3.4