Import buildroot 2016.02.01

This commit is contained in:
2016-02-24 22:35:39 +01:00
parent a6ee09dea4
commit 828befcf3c
7393 changed files with 390887 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
From 4dd7cad8c95484a882eaa2aeaa74595a3dd93a07 Mon Sep 17 00:00:00 2001
From: Stephan Hoffmann <sho@relinux.de>
Date: Sun, 2 Dec 2012 13:36:41 +0100
Subject: [PATCH] TuioServer.cpp: add missing include
If usleep() is used the header <unistd.h> has to be included
Signed-off-by: Stephan Hoffmann <sho@relinux.de>
---
src/3rdparty/tuio/TuioServer.cpp | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/src/3rdparty/tuio/TuioServer.cpp b/src/3rdparty/tuio/TuioServer.cpp
index f17bef9..851144c 100644
--- a/src/3rdparty/tuio/TuioServer.cpp
+++ b/src/3rdparty/tuio/TuioServer.cpp
@@ -25,6 +25,8 @@ using namespace TUIO;
using namespace osc;
#ifndef WIN32
+#include <unistd.h>
+
static void* ThreadFunc( void* obj )
#else
static DWORD WINAPI ThreadFunc( LPVOID obj )
--
1.7.0.4