aboutsummaryrefslogtreecommitdiff
path: root/lib/jsoncpp/json/UPDATING
diff options
context:
space:
mode:
authorLoïc Blot <nerzhul@users.noreply.github.com>2017-09-26 20:30:14 +0200
committerGitHub <noreply@github.com>2017-09-26 20:30:14 +0200
commit50423d8c729ee133035e3bb1e244bfbd1bdc0ef0 (patch)
tree4605bc80aed2d0f729047697b23e709ade2510e5 /lib/jsoncpp/json/UPDATING
parentf7e57a0d20879e1d1956e36d782a3ab98aa84e38 (diff)
downloadhax-minetest-server-50423d8c729ee133035e3bb1e244bfbd1bdc0ef0.tar.gz
hax-minetest-server-50423d8c729ee133035e3bb1e244bfbd1bdc0ef0.zip
Update JsonCPP to 1.8.3 (#6466)
* Update JsonCPP to 1.8.3 * Fix deprecated functions Json::FastWriter, Json::StyledWriter and Json::Reader are marked deprecated since 1.1 and are deprecated in 0.8 but not shown at compilation time. Use new methods to serialize/deserialize
Diffstat (limited to 'lib/jsoncpp/json/UPDATING')
-rw-r--r--lib/jsoncpp/json/UPDATING15
1 files changed, 3 insertions, 12 deletions
diff --git a/lib/jsoncpp/json/UPDATING b/lib/jsoncpp/json/UPDATING
index d00076601..f0226e8ee 100644
--- a/lib/jsoncpp/json/UPDATING
+++ b/lib/jsoncpp/json/UPDATING
@@ -1,16 +1,7 @@
#!/bin/sh
cd ..
-svn co https://jsoncpp.svn.sourceforge.net/svnroot/jsoncpp/trunk/jsoncpp jsoncpp
-svn up jsoncpp
+git clone https://github.com/open-source-parsers/jsoncpp -b 1.8.3 --depth 1
cd jsoncpp
python amalgamate.py
-cp -R dist/json ..
-cp dist/jsoncpp.cpp ../json
-
-# maybe you need to patch:
-# src/json/jsoncpp.cpp:
-# -#include <json/json.h>
-# +#include "json/json.h"
-
-#svn export --force https://jsoncpp.svn.sourceforge.net/svnroot/jsoncpp/trunk/jsoncpp/src/lib_json json
-#svn export --force https://jsoncpp.svn.sourceforge.net/svnroot/jsoncpp/trunk/jsoncpp/include/json json
+cp -R dist/json ../json
+cp dist/jsoncpp.cpp ..