aboutsummaryrefslogtreecommitdiff
path: root/src/stable/condition.cpp
diff options
context:
space:
mode:
authorMike Buland <mike@xagasoft.com>2016-09-21 12:54:23 -0600
committerMike Buland <mike@xagasoft.com>2016-09-21 12:54:23 -0600
commita612205584558c52ae2fedd616d7eb735d5ba84a (patch)
treec82e28a16d8e63dc69f604be64afd544b424e9a5 /src/stable/condition.cpp
parent4de5cbe4330bf65cf8157ab98b9c8cbc203dc1cb (diff)
downloadlibbu++-a612205584558c52ae2fedd616d7eb735d5ba84a.tar.gz
libbu++-a612205584558c52ae2fedd616d7eb735d5ba84a.tar.bz2
libbu++-a612205584558c52ae2fedd616d7eb735d5ba84a.tar.xz
libbu++-a612205584558c52ae2fedd616d7eb735d5ba84a.zip
Tweaks to make building on windows easier.
Also, just building without bzip2 or lzma easier.
Diffstat (limited to 'src/stable/condition.cpp')
-rw-r--r--src/stable/condition.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/stable/condition.cpp b/src/stable/condition.cpp
index 7719d7b..b82626d 100644
--- a/src/stable/condition.cpp
+++ b/src/stable/condition.cpp
@@ -5,10 +5,10 @@
5 * terms of the license contained in the file LICENSE. 5 * terms of the license contained in the file LICENSE.
6 */ 6 */
7 7
8#include <sys/time.h>
9
10#include "bu/condition.h" 8#include "bu/condition.h"
11 9
10#include <sys/time.h>
11
12Bu::Condition::Condition() 12Bu::Condition::Condition()
13{ 13{
14 pthread_cond_init( &cond, NULL ); 14 pthread_cond_init( &cond, NULL );