From c0daafaf990f014b811bad103e9b9b205bd7e378 Mon Sep 17 00:00:00 2001 From: Nathanael Noblet Date: Thu, 5 Jan 2012 18:25:59 -0500 Subject: [PATCH] lib: added unistd.h includes for gcc 4.7 Fedora 17 will include gcc-4.7 and as such the packages have all been rebuilt. Barry failed because of a change in gcc. The following patch fixes the issue. --- src/j_jdwp.cc | 2 +- src/packet.h | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/j_jdwp.cc b/src/j_jdwp.cc index 875f2263..279e61c8 100644 --- a/src/j_jdwp.cc +++ b/src/j_jdwp.cc @@ -24,7 +24,7 @@ #include #include #include - +#include namespace Barry { namespace JDWP { diff --git a/src/packet.h b/src/packet.h index a89cf1d6..52f16f28 100644 --- a/src/packet.h +++ b/src/packet.h @@ -26,6 +26,7 @@ #include #include +#include #include "protocol.h" #include "data.h" -- 2.11.4.GIT