jansson.bmx 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. ' Copyright (c) 2014-2022 Bruce A Henderson
  2. '
  3. ' Permission is hereby granted, free of charge, to any person obtaining a copy
  4. ' of this software and associated documentation files (the "Software"), to deal
  5. ' in the Software without restriction, including without limitation the rights
  6. ' to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  7. ' copies of the Software, and to permit persons to whom the Software is
  8. ' furnished to do so, subject to the following conditions:
  9. '
  10. ' The above copyright notice and this permission notice shall be included in
  11. ' all copies or substantial portions of the Software.
  12. '
  13. ' THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  14. ' IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  15. ' FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  16. ' AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  17. ' LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  18. ' OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  19. ' THE SOFTWARE.
  20. '
  21. SuperStrict
  22. Module Text.Jansson
  23. ModuleInfo "Version: 1.07"
  24. ModuleInfo "Author: Bruce A Henderson"
  25. ModuleInfo "License: MIT"
  26. ModuleInfo "Copyright: 2014-2022 Bruce A Henderson"
  27. ModuleInfo "History: 1.07"
  28. ModuleInfo "History: Updated to Jansson 2.14.e23f558"
  29. ModuleInfo "History: 1.06"
  30. ModuleInfo "History: Updated to Jansson 2.13.1."
  31. ModuleInfo "History: 1.05"
  32. ModuleInfo "History: Updated to Jansson with fractional precision support."
  33. ModuleInfo "History: 1.04"
  34. ModuleInfo "History: Fix for NX"
  35. ModuleInfo "History: 1.03"
  36. ModuleInfo "History: Updated to Jansson 2.12"
  37. ModuleInfo "History: 1.02"
  38. ModuleInfo "History: Updated to Jansson 2.10.009ffa3"
  39. ModuleInfo "History: Added errorCode field to TJSONError."
  40. ModuleInfo "History: 1.01"
  41. ModuleInfo "History: Updated to Jansson 2.10"
  42. ModuleInfo "History: 1.00"
  43. ModuleInfo "History: Initial Release"
  44. ModuleInfo "CC_OPTS: -DHAVE_CONFIG_H"
  45. ?linux
  46. Import "include/linux/*.h"
  47. ?macos
  48. Import "include/macos/*.h"
  49. ?win32
  50. Import "include/win32/*.h"
  51. ?nx
  52. Import "include/nx/*.h"
  53. ?haiku
  54. Import "include/haiku/*.h"
  55. ?
  56. ?android
  57. Import "config/android/*.h"
  58. ?Not android
  59. Import "config/all/*.h"
  60. ?
  61. Import "jansson/src/*.h"
  62. Import "jansson/src/dump.c"
  63. Import "jansson/src/error.c"
  64. Import "jansson/src/hashtable.c"
  65. Import "jansson/src/hashtable_seed.c"
  66. Import "jansson/src/load.c"
  67. Import "jansson/src/memory.c"
  68. Import "jansson/src/pack_unpack.c"
  69. Import "jansson/src/strbuffer.c"
  70. Import "jansson/src/strconv.c"
  71. Import "jansson/src/utf.c"
  72. Import "jansson/src/value.c"
  73. Import "jansson/src/version.c"