fizx-ordered_json 0.3.1 → 0.3.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (89) hide show
  1. data/.gitignore +29 -0
  2. data/CHANGELOG +22 -0
  3. data/README +4 -0
  4. data/Rakefile +35 -0
  5. data/ext/Makefile +149 -0
  6. data/ext/json-c-0.8/AUTHORS +2 -0
  7. data/ext/json-c-0.8/COPYING +19 -0
  8. data/ext/json-c-0.8/ChangeLog +73 -0
  9. data/ext/json-c-0.8/INSTALL +229 -0
  10. data/ext/json-c-0.8/Makefile.am +43 -0
  11. data/ext/json-c-0.8/Makefile.in +734 -0
  12. data/ext/json-c-0.8/NEWS +1 -0
  13. data/ext/json-c-0.8/README +20 -0
  14. data/ext/json-c-0.8/aclocal.m4 +8794 -0
  15. data/ext/json-c-0.8/arraylist.c +93 -0
  16. data/ext/json-c-0.8/arraylist.h +45 -0
  17. data/ext/json-c-0.8/bits.h +27 -0
  18. data/ext/json-c-0.8/config.guess +1526 -0
  19. data/ext/json-c-0.8/config.h.in +121 -0
  20. data/ext/json-c-0.8/config.sub +1658 -0
  21. data/ext/json-c-0.8/configure +14243 -0
  22. data/ext/json-c-0.8/configure.in +33 -0
  23. data/ext/json-c-0.8/debug.c +98 -0
  24. data/ext/json-c-0.8/debug.h +42 -0
  25. data/ext/json-c-0.8/depcomp +530 -0
  26. data/ext/json-c-0.8/doc/html/annotated.html +40 -0
  27. data/ext/json-c-0.8/doc/html/arraylist_8h.html +234 -0
  28. data/ext/json-c-0.8/doc/html/bits_8h.html +144 -0
  29. data/ext/json-c-0.8/doc/html/config_8h.html +606 -0
  30. data/ext/json-c-0.8/doc/html/debug_8h.html +386 -0
  31. data/ext/json-c-0.8/doc/html/doxygen.css +473 -0
  32. data/ext/json-c-0.8/doc/html/doxygen.png +0 -0
  33. data/ext/json-c-0.8/doc/html/files.html +42 -0
  34. data/ext/json-c-0.8/doc/html/functions.html +206 -0
  35. data/ext/json-c-0.8/doc/html/functions_vars.html +206 -0
  36. data/ext/json-c-0.8/doc/html/globals.html +445 -0
  37. data/ext/json-c-0.8/doc/html/globals_defs.html +200 -0
  38. data/ext/json-c-0.8/doc/html/globals_enum.html +50 -0
  39. data/ext/json-c-0.8/doc/html/globals_eval.html +135 -0
  40. data/ext/json-c-0.8/doc/html/globals_func.html +194 -0
  41. data/ext/json-c-0.8/doc/html/globals_type.html +58 -0
  42. data/ext/json-c-0.8/doc/html/globals_vars.html +50 -0
  43. data/ext/json-c-0.8/doc/html/index.html +25 -0
  44. data/ext/json-c-0.8/doc/html/json_8h.html +26 -0
  45. data/ext/json-c-0.8/doc/html/json__object_8h.html +1042 -0
  46. data/ext/json-c-0.8/doc/html/json__object__private_8h.html +69 -0
  47. data/ext/json-c-0.8/doc/html/json__tokener_8h.html +360 -0
  48. data/ext/json-c-0.8/doc/html/json__util_8h.html +100 -0
  49. data/ext/json-c-0.8/doc/html/linkhash_8h.html +734 -0
  50. data/ext/json-c-0.8/doc/html/printbuf_8h.html +171 -0
  51. data/ext/json-c-0.8/doc/html/structarray__list.html +104 -0
  52. data/ext/json-c-0.8/doc/html/structjson__object.html +141 -0
  53. data/ext/json-c-0.8/doc/html/structjson__object__iter.html +87 -0
  54. data/ext/json-c-0.8/doc/html/structjson__tokener.html +206 -0
  55. data/ext/json-c-0.8/doc/html/structjson__tokener__srec.html +104 -0
  56. data/ext/json-c-0.8/doc/html/structlh__entry.html +105 -0
  57. data/ext/json-c-0.8/doc/html/structlh__table.html +275 -0
  58. data/ext/json-c-0.8/doc/html/structprintbuf.html +87 -0
  59. data/ext/json-c-0.8/doc/html/tab_b.gif +0 -0
  60. data/ext/json-c-0.8/doc/html/tab_l.gif +0 -0
  61. data/ext/json-c-0.8/doc/html/tab_r.gif +0 -0
  62. data/ext/json-c-0.8/doc/html/tabs.css +102 -0
  63. data/ext/json-c-0.8/doc/html/unionjson__object_1_1data.html +140 -0
  64. data/ext/json-c-0.8/install-sh +519 -0
  65. data/ext/json-c-0.8/json.h +31 -0
  66. data/ext/json-c-0.8/json.pc.in +11 -0
  67. data/ext/json-c-0.8/json_object.c +511 -0
  68. data/ext/json-c-0.8/json_object.h +310 -0
  69. data/ext/json-c-0.8/json_object_private.h +44 -0
  70. data/ext/json-c-0.8/json_tokener.c +517 -0
  71. data/ext/json-c-0.8/json_tokener.h +90 -0
  72. data/ext/json-c-0.8/json_util.c +122 -0
  73. data/ext/json-c-0.8/json_util.h +23 -0
  74. data/ext/json-c-0.8/linkhash.c +218 -0
  75. data/ext/json-c-0.8/linkhash.h +264 -0
  76. data/ext/json-c-0.8/ltmain.sh +7880 -0
  77. data/ext/json-c-0.8/missing +360 -0
  78. data/ext/json-c-0.8/printbuf.c +145 -0
  79. data/ext/json-c-0.8/printbuf.h +38 -0
  80. data/ext/json-c-0.8/test1.c +164 -0
  81. data/ext/json-c-0.8/test2.c +20 -0
  82. data/ext/json-c-0.8/test3.c +22 -0
  83. data/ext/ordered_json_c.c +199 -0
  84. data/lib/ordered_json.rb +26 -0
  85. data/ordered_json.gemspec +102 -0
  86. data/test/crashing_example.rb +1 -0
  87. data/test/ordered_json_test.rb +86 -0
  88. data/test/pretty.json +11 -0
  89. metadata +91 -50
@@ -0,0 +1,121 @@
1
+ /* config.h.in. Generated from configure.in by autoheader. */
2
+
3
+ /* Define to 1 if you have the <dlfcn.h> header file. */
4
+ #undef HAVE_DLFCN_H
5
+
6
+ /* Define to 1 if you don't have `vprintf' but do have `_doprnt.' */
7
+ #undef HAVE_DOPRNT
8
+
9
+ /* Define to 1 if you have the <fcntl.h> header file. */
10
+ #undef HAVE_FCNTL_H
11
+
12
+ /* Define to 1 if you have the <inttypes.h> header file. */
13
+ #undef HAVE_INTTYPES_H
14
+
15
+ /* Define to 1 if you have the <limits.h> header file. */
16
+ #undef HAVE_LIMITS_H
17
+
18
+ /* Define to 1 if your system has a GNU libc compatible `malloc' function, and
19
+ to 0 otherwise. */
20
+ #undef HAVE_MALLOC
21
+
22
+ /* Define to 1 if you have the <memory.h> header file. */
23
+ #undef HAVE_MEMORY_H
24
+
25
+ /* Define to 1 if you have the `open' function. */
26
+ #undef HAVE_OPEN
27
+
28
+ /* Define to 1 if your system has a GNU libc compatible `realloc' function,
29
+ and to 0 otherwise. */
30
+ #undef HAVE_REALLOC
31
+
32
+ /* Define to 1 if you have the <stdarg.h> header file. */
33
+ #undef HAVE_STDARG_H
34
+
35
+ /* Define to 1 if you have the <stdint.h> header file. */
36
+ #undef HAVE_STDINT_H
37
+
38
+ /* Define to 1 if you have the <stdlib.h> header file. */
39
+ #undef HAVE_STDLIB_H
40
+
41
+ /* Define to 1 if you have the `strerror' function. */
42
+ #undef HAVE_STRERROR
43
+
44
+ /* Define to 1 if you have the <strings.h> header file. */
45
+ #undef HAVE_STRINGS_H
46
+
47
+ /* Define to 1 if you have the <string.h> header file. */
48
+ #undef HAVE_STRING_H
49
+
50
+ /* Define to 1 if you have the `strncasecmp' function. */
51
+ #undef HAVE_STRNCASECMP
52
+
53
+ /* Define to 1 if you have the `strndup' function. */
54
+ #undef HAVE_STRNDUP
55
+
56
+ /* Define to 1 if you have the <syslog.h> header file. */
57
+ #undef HAVE_SYSLOG_H
58
+
59
+ /* Define to 1 if you have the <sys/param.h> header file. */
60
+ #undef HAVE_SYS_PARAM_H
61
+
62
+ /* Define to 1 if you have the <sys/stat.h> header file. */
63
+ #undef HAVE_SYS_STAT_H
64
+
65
+ /* Define to 1 if you have the <sys/types.h> header file. */
66
+ #undef HAVE_SYS_TYPES_H
67
+
68
+ /* Define to 1 if you have the <unistd.h> header file. */
69
+ #undef HAVE_UNISTD_H
70
+
71
+ /* Define to 1 if you have the `vasprintf' function. */
72
+ #undef HAVE_VASPRINTF
73
+
74
+ /* Define to 1 if you have the `vprintf' function. */
75
+ #undef HAVE_VPRINTF
76
+
77
+ /* Define to 1 if you have the `vsnprintf' function. */
78
+ #undef HAVE_VSNPRINTF
79
+
80
+ /* Define to 1 if you have the `vsyslog' function. */
81
+ #undef HAVE_VSYSLOG
82
+
83
+ /* Define to the sub-directory in which libtool stores uninstalled libraries.
84
+ */
85
+ #undef LT_OBJDIR
86
+
87
+ /* Name of package */
88
+ #undef PACKAGE
89
+
90
+ /* Define to the address where bug reports for this package should be sent. */
91
+ #undef PACKAGE_BUGREPORT
92
+
93
+ /* Define to the full name of this package. */
94
+ #undef PACKAGE_NAME
95
+
96
+ /* Define to the full name and version of this package. */
97
+ #undef PACKAGE_STRING
98
+
99
+ /* Define to the one symbol short name of this package. */
100
+ #undef PACKAGE_TARNAME
101
+
102
+ /* Define to the version of this package. */
103
+ #undef PACKAGE_VERSION
104
+
105
+ /* Define to 1 if you have the ANSI C header files. */
106
+ #undef STDC_HEADERS
107
+
108
+ /* Version number of package */
109
+ #undef VERSION
110
+
111
+ /* Define to empty if `const' does not conform to ANSI C. */
112
+ #undef const
113
+
114
+ /* Define to rpl_malloc if the replacement function should be used. */
115
+ #undef malloc
116
+
117
+ /* Define to rpl_realloc if the replacement function should be used. */
118
+ #undef realloc
119
+
120
+ /* Define to `unsigned int' if <sys/types.h> does not define. */
121
+ #undef size_t