# HG changeset patch # User Sebastien Jodogne # Date 1438451542 -7200 # Node ID 3b68924ffb24241cd197939830aab0f9368196e4 # Parent 0631b56c35eb35a7db6f4f9cf9258c5490eb742a fix path to sqlite diff -r 0631b56c35eb -r 3b68924ffb24 Core/SQLite/Connection.cpp --- a/Core/SQLite/Connection.cpp Fri Jul 31 11:10:27 2015 +0200 +++ b/Core/SQLite/Connection.cpp Sat Aug 01 19:52:22 2015 +0200 @@ -44,13 +44,14 @@ #include #include -#include #include #if ORTHANC_SQLITE_STANDALONE != 1 #include #endif +#include "sqlite3.h" + namespace Orthanc { diff -r 0631b56c35eb -r 3b68924ffb24 Core/SQLite/FunctionContext.cpp --- a/Core/SQLite/FunctionContext.cpp Fri Jul 31 11:10:27 2015 +0200 +++ b/Core/SQLite/FunctionContext.cpp Sat Aug 01 19:52:22 2015 +0200 @@ -39,9 +39,10 @@ #include "FunctionContext.h" #include "OrthancSQLiteException.h" -#include #include +#include "sqlite3.h" + namespace Orthanc { namespace SQLite diff -r 0631b56c35eb -r 3b68924ffb24 Core/SQLite/Statement.cpp --- a/Core/SQLite/Statement.cpp Fri Jul 31 11:10:27 2015 +0200 +++ b/Core/SQLite/Statement.cpp Sat Aug 01 19:52:22 2015 +0200 @@ -42,7 +42,6 @@ #include "Statement.h" #include "Connection.h" -#include #include #include #include @@ -51,6 +50,8 @@ #include #endif +#include "sqlite3.h" + #if defined(_MSC_VER) #define snprintf _snprintf #endif