forked from NixOS/nixpkgs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
collabora-online: fix build against poco-1.14
This adds some missing includes for collabora online to actually use the poco-json library. Upstream pull request at CollaboraOnline/online#11175
- Loading branch information
Showing
2 changed files
with
23 additions
and
1 deletion.
There are no files selected for viewing
17 changes: 17 additions & 0 deletions
17
pkgs/by-name/co/collabora-online/add-missing-poco-includes.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
diff --git a/common/JsonUtil.hpp b/common/JsonUtil.hpp | ||
index 564812e0e6..b7eb8fe0b4 100644 | ||
--- a/common/JsonUtil.hpp | ||
+++ b/common/JsonUtil.hpp | ||
@@ -23,6 +23,7 @@ | ||
#include <Poco/Dynamic/Var.h> | ||
#include <Poco/JSON/Object.h> | ||
#include <Poco/JSON/Parser.h> | ||
+#include <Poco/JSON/JSONException.h> | ||
|
||
namespace JsonUtil | ||
{ | ||
@@ -248,4 +249,3 @@ inline std::string escapeJSONValue(std::string val) | ||
} // end namespace JsonUtil | ||
|
||
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ | ||
- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters