summaryrefslogtreecommitdiff
path: root/json/README
diff options
context:
space:
mode:
authorAndrew Sidwell <andy@entai.co.uk>2008-07-31 15:02:18 +0000
committerAndrew Sidwell <andy@entai.co.uk>2008-07-31 15:02:18 +0000
commit41d22f924edf05a2356270f918580b720cc92e7a (patch)
tree472a7c263059e7b31cbf615f509fbfbea58a84f9 /json/README
parent599fb27f427c367331cad5b697010cf52d49eddd (diff)
downloadlibhubbub-41d22f924edf05a2356270f918580b720cc92e7a.tar.gz
libhubbub-41d22f924edf05a2356270f918580b720cc92e7a.tar.bz2
Remove the json/ directory, and update compilation instructions to mention Hubbub's modified version and also libparserutils.
svn path=/trunk/hubbub/; revision=4841
Diffstat (limited to 'json/README')
-rw-r--r--json/README26
1 files changed, 0 insertions, 26 deletions
diff --git a/json/README b/json/README
deleted file mode 100644
index 50dcf79..0000000
--- a/json/README
+++ /dev/null
@@ -1,26 +0,0 @@
-JSON-C patches
-==============
-
-This directory contains a couple of patches to JSON-C 0.7.
-Upstream sources may be found at http://oss.metaparadigm.com/json-c/
-
-hex-chars.jmb1.p:
-
- Fix handling of upper case hex digits.
- The previous behaviour resulted in the likes of \uFFFD causing a parse
- error.
-
-void-prototypes.jmb1.p:
-
- Fix compiler warnings about function prototypes in header files when
- compiling client code in standards mode with pedantic warnings switched
- on.
-
-Apply them as follows:
-
- $ cd json-c-0.7
- $ patch -p 1 -i ../hex-chars.jmb1.p
- $ patch -p 1 -i ../void-prototypes.jmb1.p
-
-They have been submitted upstream, so will probably disappear in due
-course.