Index: head/science/orthanc/files/patch-Core_SQLite_FunctionContext.cpp =================================================================== --- head/science/orthanc/files/patch-Core_SQLite_FunctionContext.cpp (nonexistent) +++ head/science/orthanc/files/patch-Core_SQLite_FunctionContext.cpp (revision 442773) @@ -0,0 +1,11 @@ +--- Core/SQLite/FunctionContext.cpp.orig 2016-06-27 11:02:35 UTC ++++ Core/SQLite/FunctionContext.cpp +@@ -49,7 +49,7 @@ namespace Orthanc + { + FunctionContext::FunctionContext(struct sqlite3_context* context, + int argc, +- struct ::Mem** argv) ++ struct sqlite3_value** argv) + { + assert(context != NULL); + assert(argc >= 0); Property changes on: head/science/orthanc/files/patch-Core_SQLite_FunctionContext.cpp ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/science/orthanc/files/patch-Core_SQLite_FunctionContext.h =================================================================== --- head/science/orthanc/files/patch-Core_SQLite_FunctionContext.h (nonexistent) +++ head/science/orthanc/files/patch-Core_SQLite_FunctionContext.h (revision 442773) @@ -0,0 +1,28 @@ +--- Core/SQLite/FunctionContext.h.orig 2016-06-27 11:02:35 UTC ++++ Core/SQLite/FunctionContext.h +@@ -37,7 +37,7 @@ + #include "Statement.h" + + struct sqlite3_context; +-struct Mem; // This corresponds to the opaque type "sqlite3_value" ++struct sqlite3_value; // This corresponds to the opaque type "sqlite3_value" + + namespace Orthanc + { +@@ -50,14 +50,14 @@ namespace Orthanc + private: + struct sqlite3_context* context_; + unsigned int argc_; +- struct ::Mem** argv_; ++ struct sqlite3_value** argv_; + + void CheckIndex(unsigned int index) const; + + public: + FunctionContext(struct sqlite3_context* context, + int argc, +- struct ::Mem** argv); ++ struct sqlite3_value** argv); + + ColumnType GetColumnType(unsigned int index) const; + Property changes on: head/science/orthanc/files/patch-Core_SQLite_FunctionContext.h ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property