diff options
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | src/qt/splashscreen.cpp | 1 | ||||
-rw-r--r-- | src/sync.cpp | 3 |
3 files changed, 6 insertions, 0 deletions
@@ -1,6 +1,8 @@ Bitcoin Core integration/staging tree ===================================== +[![Build Status](https://travis-ci.org/bitcoin/bitcoin.svg?branch=master)](https://travis-ci.org/bitcoin/bitcoin) + https://www.bitcoin.org Copyright (c) 2009-2014 Bitcoin Core Developers diff --git a/src/qt/splashscreen.cpp b/src/qt/splashscreen.cpp index 1162e2d87f..5dd110b36a 100644 --- a/src/qt/splashscreen.cpp +++ b/src/qt/splashscreen.cpp @@ -4,6 +4,7 @@ #include "splashscreen.h" +#include "version.h" #include "clientversion.h" #include "init.h" #include "ui_interface.h" diff --git a/src/sync.cpp b/src/sync.cpp index e624a9ee84..066c1ca744 100644 --- a/src/sync.cpp +++ b/src/sync.cpp @@ -5,8 +5,11 @@ #include "sync.h" #include "util.h" +#include "utilstrencodings.h" #include <boost/foreach.hpp> +#include <boost/thread.hpp> +#include <stdio.h> #ifdef DEBUG_LOCKCONTENTION void PrintLockContention(const char* pszName, const char* pszFile, int nLine) |