1From 465d98dbcdcb72375c198010a50b80b953e7d5a6 Mon Sep 17 00:00:00 2001
2From: Yuri <yuri@tsoft.com>
3Date: Sat, 28 May 2016 13:20:10 -0700
4Subject: [PATCH] Fixed undefined ssize_t for clang-3.8.0 on FreeBSD.
5MIME-Version: 1.0
6Content-Type: text/plain; charset=UTF-8
7Content-Transfer-Encoding: 8bit
8
9---
10Upstream-Status: Backport [https://github.com/andreas-volz/dbus-cplusplus/commit/463f5a4400d494b831c3b3348c0a21f0faf14f39]
11Signed-off-by: André Draszik <adraszik@tycoint.com>
12 include/dbus-c++/pipe.h | 2 ++
13 1 file changed, 2 insertions(+)
14
15diff --git a/include/dbus-c++/pipe.h b/include/dbus-c++/pipe.h
16index 999f042..682646c 100644
17--- a/include/dbus-c++/pipe.h
18+++ b/include/dbus-c++/pipe.h
19@@ -30,6 +30,8 @@
20 /* STD */
21 #include <cstdlib>
22
23+#include <sys/types.h>
24+
25 namespace DBus
26 {
27
28--
292.10.2
30
31