diff options
author | Mike Buland <mike@xagasoft.com> | 2016-09-21 12:54:23 -0600 |
---|---|---|
committer | Mike Buland <mike@xagasoft.com> | 2016-09-21 12:54:23 -0600 |
commit | a612205584558c52ae2fedd616d7eb735d5ba84a (patch) | |
tree | c82e28a16d8e63dc69f604be64afd544b424e9a5 /src/stable/condition.cpp | |
parent | 4de5cbe4330bf65cf8157ab98b9c8cbc203dc1cb (diff) | |
download | libbu++-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.cpp | 4 |
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 | |||
12 | Bu::Condition::Condition() | 12 | Bu::Condition::Condition() |
13 | { | 13 | { |
14 | pthread_cond_init( &cond, NULL ); | 14 | pthread_cond_init( &cond, NULL ); |