mt-libuv 4.1.0 → 4.1.03

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2094) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +4 -4
  3. data/ext/Rakefile +1 -1
  4. data/ext/gyp/.gitignore +1 -0
  5. data/ext/gyp/AUTHORS +17 -0
  6. data/ext/gyp/DEPS +23 -0
  7. data/ext/gyp/LICENSE +27 -0
  8. data/ext/gyp/OWNERS +1 -0
  9. data/ext/gyp/PRESUBMIT.py +125 -0
  10. data/ext/gyp/README.md +5 -0
  11. data/ext/gyp/buildbot/buildbot_run.py +138 -0
  12. data/ext/gyp/buildbot/commit_queue/OWNERS +6 -0
  13. data/ext/gyp/buildbot/commit_queue/README +3 -0
  14. data/ext/gyp/buildbot/commit_queue/cq_config.json +15 -0
  15. data/ext/gyp/buildbot/travis-checkout.sh +27 -0
  16. data/ext/gyp/buildbot/travis-test.sh +12 -0
  17. data/ext/gyp/codereview.settings +6 -0
  18. data/ext/gyp/data/win/large-pdb-shim.cc +12 -0
  19. data/ext/gyp/gyp +8 -0
  20. data/ext/gyp/gyp.bat +5 -0
  21. data/ext/gyp/gyp_main.py +16 -0
  22. data/ext/gyp/gyptest.py +243 -0
  23. data/ext/gyp/pylib/gyp/MSVSNew.py +353 -0
  24. data/ext/gyp/pylib/gyp/MSVSProject.py +208 -0
  25. data/ext/gyp/pylib/gyp/MSVSSettings.py +1106 -0
  26. data/ext/gyp/pylib/gyp/MSVSSettings_test.py +1486 -0
  27. data/ext/gyp/pylib/gyp/MSVSToolFile.py +58 -0
  28. data/ext/gyp/pylib/gyp/MSVSUserFile.py +147 -0
  29. data/ext/gyp/pylib/gyp/MSVSUtil.py +271 -0
  30. data/ext/gyp/pylib/gyp/MSVSVersion.py +504 -0
  31. data/ext/gyp/pylib/gyp/__init__.py +555 -0
  32. data/ext/gyp/pylib/gyp/common.py +619 -0
  33. data/ext/gyp/pylib/gyp/common_test.py +73 -0
  34. data/ext/gyp/pylib/gyp/easy_xml.py +170 -0
  35. data/ext/gyp/pylib/gyp/easy_xml_test.py +106 -0
  36. data/ext/gyp/pylib/gyp/flock_tool.py +54 -0
  37. data/ext/gyp/pylib/gyp/generator/__init__.py +0 -0
  38. data/ext/gyp/pylib/gyp/generator/analyzer.py +744 -0
  39. data/ext/gyp/pylib/gyp/generator/cmake.py +1256 -0
  40. data/ext/gyp/pylib/gyp/generator/dump_dependency_json.py +101 -0
  41. data/ext/gyp/pylib/gyp/generator/eclipse.py +425 -0
  42. data/ext/gyp/pylib/gyp/generator/gypd.py +94 -0
  43. data/ext/gyp/pylib/gyp/generator/gypsh.py +56 -0
  44. data/ext/gyp/pylib/gyp/generator/make.py +2260 -0
  45. data/ext/gyp/pylib/gyp/generator/msvs.py +3537 -0
  46. data/ext/gyp/pylib/gyp/generator/msvs_test.py +40 -0
  47. data/ext/gyp/pylib/gyp/generator/ninja.py +2500 -0
  48. data/ext/gyp/pylib/gyp/generator/ninja_test.py +46 -0
  49. data/ext/gyp/pylib/gyp/generator/xcode.py +1302 -0
  50. data/ext/gyp/pylib/gyp/generator/xcode_test.py +23 -0
  51. data/ext/gyp/pylib/gyp/input.py +2908 -0
  52. data/ext/gyp/pylib/gyp/input_test.py +90 -0
  53. data/ext/gyp/pylib/gyp/mac_tool.py +721 -0
  54. data/ext/gyp/pylib/gyp/msvs_emulation.py +1112 -0
  55. data/ext/gyp/pylib/gyp/ninja_syntax.py +168 -0
  56. data/ext/gyp/pylib/gyp/simple_copy.py +57 -0
  57. data/ext/gyp/pylib/gyp/win_tool.py +326 -0
  58. data/ext/gyp/pylib/gyp/xcode_emulation.py +1800 -0
  59. data/ext/gyp/pylib/gyp/xcode_ninja.py +289 -0
  60. data/ext/gyp/pylib/gyp/xcodeproj_file.py +2995 -0
  61. data/ext/gyp/pylib/gyp/xml_fix.py +68 -0
  62. data/ext/gyp/samples/samples +83 -0
  63. data/ext/gyp/samples/samples.bat +5 -0
  64. data/ext/gyp/setup.py +19 -0
  65. data/ext/gyp/test/actions/generated-header/action.py +11 -0
  66. data/ext/gyp/test/actions/generated-header/main.cc +7 -0
  67. data/ext/gyp/test/actions/generated-header/test.gyp +34 -0
  68. data/ext/gyp/test/actions/gyptest-all.py +101 -0
  69. data/ext/gyp/test/actions/gyptest-default.py +68 -0
  70. data/ext/gyp/test/actions/gyptest-errors.py +24 -0
  71. data/ext/gyp/test/actions/gyptest-generated-header.py +38 -0
  72. data/ext/gyp/test/actions/src/action_missing_name.gyp +24 -0
  73. data/ext/gyp/test/actions/src/actions.gyp +114 -0
  74. data/ext/gyp/test/actions/src/confirm-dep-files.py +21 -0
  75. data/ext/gyp/test/actions/src/subdir1/counter.py +44 -0
  76. data/ext/gyp/test/actions/src/subdir1/executable.gyp +74 -0
  77. data/ext/gyp/test/actions/src/subdir1/make-prog1.py +20 -0
  78. data/ext/gyp/test/actions/src/subdir1/make-prog2.py +20 -0
  79. data/ext/gyp/test/actions/src/subdir1/program.c +12 -0
  80. data/ext/gyp/test/actions/src/subdir2/make-file.py +11 -0
  81. data/ext/gyp/test/actions/src/subdir2/none.gyp +33 -0
  82. data/ext/gyp/test/actions/src/subdir3/generate_main.py +21 -0
  83. data/ext/gyp/test/actions/src/subdir3/null_input.gyp +29 -0
  84. data/ext/gyp/test/actions-bare/gyptest-bare.py +24 -0
  85. data/ext/gyp/test/actions-bare/src/bare.gyp +25 -0
  86. data/ext/gyp/test/actions-bare/src/bare.py +11 -0
  87. data/ext/gyp/test/actions-depfile/depfile.gyp +42 -0
  88. data/ext/gyp/test/actions-depfile/gyptest-all.py +30 -0
  89. data/ext/gyp/test/actions-depfile/input.txt +1 -0
  90. data/ext/gyp/test/actions-depfile/touch.py +18 -0
  91. data/ext/gyp/test/actions-multiple/gyptest-all.py +72 -0
  92. data/ext/gyp/test/actions-multiple/src/actions.gyp +226 -0
  93. data/ext/gyp/test/actions-multiple/src/copyfile.py +9 -0
  94. data/ext/gyp/test/actions-multiple/src/filter.py +12 -0
  95. data/ext/gyp/test/actions-multiple/src/foo.c +11 -0
  96. data/ext/gyp/test/actions-multiple/src/input.txt +1 -0
  97. data/ext/gyp/test/actions-multiple/src/main.c +22 -0
  98. data/ext/gyp/test/actions-multiple-outputs/gyptest-multiple-outputs.py +45 -0
  99. data/ext/gyp/test/actions-multiple-outputs/src/multiple-outputs.gyp +23 -0
  100. data/ext/gyp/test/actions-multiple-outputs/src/touch.py +16 -0
  101. data/ext/gyp/test/actions-multiple-outputs-with-dependencies/gyptest-action.py +45 -0
  102. data/ext/gyp/test/actions-multiple-outputs-with-dependencies/src/action.gyp +28 -0
  103. data/ext/gyp/test/actions-multiple-outputs-with-dependencies/src/rcopy.py +20 -0
  104. data/ext/gyp/test/actions-none/gyptest-none.py +24 -0
  105. data/ext/gyp/test/actions-none/src/fake_cross.py +12 -0
  106. data/ext/gyp/test/actions-none/src/foo.cc +1 -0
  107. data/ext/gyp/test/actions-none/src/none_with_source_files.gyp +35 -0
  108. data/ext/gyp/test/actions-subdir/gyptest-action.py +26 -0
  109. data/ext/gyp/test/actions-subdir/src/make-file.py +11 -0
  110. data/ext/gyp/test/actions-subdir/src/none.gyp +31 -0
  111. data/ext/gyp/test/actions-subdir/src/subdir/make-subdir-file.py +11 -0
  112. data/ext/gyp/test/actions-subdir/src/subdir/subdir.gyp +28 -0
  113. data/ext/gyp/test/additional-targets/gyptest-additional.py +63 -0
  114. data/ext/gyp/test/additional-targets/src/all.gyp +13 -0
  115. data/ext/gyp/test/additional-targets/src/dir1/actions.gyp +56 -0
  116. data/ext/gyp/test/additional-targets/src/dir1/emit.py +11 -0
  117. data/ext/gyp/test/additional-targets/src/dir1/lib1.c +6 -0
  118. data/ext/gyp/test/analyzer/common.gypi +6 -0
  119. data/ext/gyp/test/analyzer/gyptest-analyzer.py +427 -0
  120. data/ext/gyp/test/analyzer/static_library_test.gyp +34 -0
  121. data/ext/gyp/test/analyzer/subdir/subdir.gyp +36 -0
  122. data/ext/gyp/test/analyzer/subdir/subdir2/subdir2.gyp +15 -0
  123. data/ext/gyp/test/analyzer/subdir2/subdir.gyp +18 -0
  124. data/ext/gyp/test/analyzer/subdir2/subdir.includes.gypi +9 -0
  125. data/ext/gyp/test/analyzer/test.gyp +114 -0
  126. data/ext/gyp/test/analyzer/test2.gyp +25 -0
  127. data/ext/gyp/test/analyzer/test2.includes.gypi +13 -0
  128. data/ext/gyp/test/analyzer/test2.includes.includes.gypi +9 -0
  129. data/ext/gyp/test/analyzer/test2.toplevel_includes.gypi +15 -0
  130. data/ext/gyp/test/analyzer/test3.gyp +77 -0
  131. data/ext/gyp/test/analyzer/test4.gyp +80 -0
  132. data/ext/gyp/test/analyzer/test5.gyp +25 -0
  133. data/ext/gyp/test/arflags/gyptest-arflags.py +26 -0
  134. data/ext/gyp/test/arflags/lib.cc +0 -0
  135. data/ext/gyp/test/arflags/test.gyp +10 -0
  136. data/ext/gyp/test/assembly/gyptest-assembly.py +31 -0
  137. data/ext/gyp/test/assembly/gyptest-override.py +24 -0
  138. data/ext/gyp/test/assembly/src/as.bat +4 -0
  139. data/ext/gyp/test/assembly/src/assembly.gyp +62 -0
  140. data/ext/gyp/test/assembly/src/lib1.S +15 -0
  141. data/ext/gyp/test/assembly/src/lib1.c +3 -0
  142. data/ext/gyp/test/assembly/src/override.gyp +34 -0
  143. data/ext/gyp/test/assembly/src/override_asm.asm +8 -0
  144. data/ext/gyp/test/assembly/src/program.c +12 -0
  145. data/ext/gyp/test/build-option/gyptest-build.py +27 -0
  146. data/ext/gyp/test/build-option/hello.c +13 -0
  147. data/ext/gyp/test/build-option/hello.gyp +15 -0
  148. data/ext/gyp/test/builddir/gyptest-all.py +85 -0
  149. data/ext/gyp/test/builddir/gyptest-default.py +85 -0
  150. data/ext/gyp/test/builddir/src/builddir.gypi +18 -0
  151. data/ext/gyp/test/builddir/src/func1.c +6 -0
  152. data/ext/gyp/test/builddir/src/func2.c +6 -0
  153. data/ext/gyp/test/builddir/src/func3.c +6 -0
  154. data/ext/gyp/test/builddir/src/func4.c +6 -0
  155. data/ext/gyp/test/builddir/src/func5.c +6 -0
  156. data/ext/gyp/test/builddir/src/prog1.c +10 -0
  157. data/ext/gyp/test/builddir/src/prog1.gyp +30 -0
  158. data/ext/gyp/test/builddir/src/subdir2/prog2.c +10 -0
  159. data/ext/gyp/test/builddir/src/subdir2/prog2.gyp +19 -0
  160. data/ext/gyp/test/builddir/src/subdir2/subdir3/prog3.c +10 -0
  161. data/ext/gyp/test/builddir/src/subdir2/subdir3/prog3.gyp +19 -0
  162. data/ext/gyp/test/builddir/src/subdir2/subdir3/subdir4/prog4.c +10 -0
  163. data/ext/gyp/test/builddir/src/subdir2/subdir3/subdir4/prog4.gyp +19 -0
  164. data/ext/gyp/test/builddir/src/subdir2/subdir3/subdir4/subdir5/prog5.c +10 -0
  165. data/ext/gyp/test/builddir/src/subdir2/subdir3/subdir4/subdir5/prog5.gyp +19 -0
  166. data/ext/gyp/test/cflags/cflags.c +15 -0
  167. data/ext/gyp/test/cflags/cflags.gyp +23 -0
  168. data/ext/gyp/test/cflags/gyptest-cflags.py +75 -0
  169. data/ext/gyp/test/compilable/gyptest-headers.py +29 -0
  170. data/ext/gyp/test/compilable/src/headers.gyp +26 -0
  171. data/ext/gyp/test/compilable/src/lib1.cpp +7 -0
  172. data/ext/gyp/test/compilable/src/lib1.hpp +6 -0
  173. data/ext/gyp/test/compilable/src/program.cpp +9 -0
  174. data/ext/gyp/test/compiler-override/compiler-exe.gyp +16 -0
  175. data/ext/gyp/test/compiler-override/compiler-global-settings.gyp.in +34 -0
  176. data/ext/gyp/test/compiler-override/compiler-host.gyp +17 -0
  177. data/ext/gyp/test/compiler-override/compiler-shared-lib.gyp +16 -0
  178. data/ext/gyp/test/compiler-override/cxxtest.cc +7 -0
  179. data/ext/gyp/test/compiler-override/gyptest-compiler-env-toolchain.py +78 -0
  180. data/ext/gyp/test/compiler-override/gyptest-compiler-env.py +110 -0
  181. data/ext/gyp/test/compiler-override/gyptest-compiler-global-settings.py +82 -0
  182. data/ext/gyp/test/compiler-override/my_cc.py +7 -0
  183. data/ext/gyp/test/compiler-override/my_cxx.py +7 -0
  184. data/ext/gyp/test/compiler-override/my_ld.py +7 -0
  185. data/ext/gyp/test/compiler-override/my_nm.py +9 -0
  186. data/ext/gyp/test/compiler-override/my_readelf.py +9 -0
  187. data/ext/gyp/test/compiler-override/test.c +7 -0
  188. data/ext/gyp/test/conditions/elseif/elseif.gyp +43 -0
  189. data/ext/gyp/test/conditions/elseif/elseif_bad1.gyp +20 -0
  190. data/ext/gyp/test/conditions/elseif/elseif_bad2.gyp +22 -0
  191. data/ext/gyp/test/conditions/elseif/elseif_bad3.gyp +23 -0
  192. data/ext/gyp/test/conditions/elseif/elseif_conditions.gypi +15 -0
  193. data/ext/gyp/test/conditions/elseif/gyptest_elseif.py +33 -0
  194. data/ext/gyp/test/conditions/elseif/program.cc +10 -0
  195. data/ext/gyp/test/configurations/basics/configurations.c +15 -0
  196. data/ext/gyp/test/configurations/basics/configurations.gyp +32 -0
  197. data/ext/gyp/test/configurations/basics/gyptest-configurations.py +29 -0
  198. data/ext/gyp/test/configurations/inheritance/configurations.c +21 -0
  199. data/ext/gyp/test/configurations/inheritance/configurations.gyp +40 -0
  200. data/ext/gyp/test/configurations/inheritance/duplicates.gyp +27 -0
  201. data/ext/gyp/test/configurations/inheritance/duplicates.gypd.golden +12 -0
  202. data/ext/gyp/test/configurations/inheritance/gyptest-duplicates.py +36 -0
  203. data/ext/gyp/test/configurations/inheritance/gyptest-inheritance.py +33 -0
  204. data/ext/gyp/test/configurations/invalid/actions.gyp +18 -0
  205. data/ext/gyp/test/configurations/invalid/all_dependent_settings.gyp +18 -0
  206. data/ext/gyp/test/configurations/invalid/configurations.gyp +18 -0
  207. data/ext/gyp/test/configurations/invalid/dependencies.gyp +18 -0
  208. data/ext/gyp/test/configurations/invalid/direct_dependent_settings.gyp +18 -0
  209. data/ext/gyp/test/configurations/invalid/gyptest-configurations.py +36 -0
  210. data/ext/gyp/test/configurations/invalid/libraries.gyp +18 -0
  211. data/ext/gyp/test/configurations/invalid/link_settings.gyp +18 -0
  212. data/ext/gyp/test/configurations/invalid/sources.gyp +18 -0
  213. data/ext/gyp/test/configurations/invalid/standalone_static_library.gyp +17 -0
  214. data/ext/gyp/test/configurations/invalid/target_name.gyp +18 -0
  215. data/ext/gyp/test/configurations/invalid/type.gyp +18 -0
  216. data/ext/gyp/test/configurations/target_platform/configurations.gyp +58 -0
  217. data/ext/gyp/test/configurations/target_platform/front.c +8 -0
  218. data/ext/gyp/test/configurations/target_platform/gyptest-target_platform.py +40 -0
  219. data/ext/gyp/test/configurations/target_platform/left.c +3 -0
  220. data/ext/gyp/test/configurations/target_platform/right.c +3 -0
  221. data/ext/gyp/test/configurations/x64/configurations.c +12 -0
  222. data/ext/gyp/test/configurations/x64/configurations.gyp +38 -0
  223. data/ext/gyp/test/configurations/x64/gyptest-x86.py +31 -0
  224. data/ext/gyp/test/copies/gyptest-all.py +42 -0
  225. data/ext/gyp/test/copies/gyptest-attribs.py +41 -0
  226. data/ext/gyp/test/copies/gyptest-default.py +42 -0
  227. data/ext/gyp/test/copies/gyptest-samedir.py +28 -0
  228. data/ext/gyp/test/copies/gyptest-slash.py +39 -0
  229. data/ext/gyp/test/copies/gyptest-sourceless-shared-lib.py +20 -0
  230. data/ext/gyp/test/copies/gyptest-updir.py +32 -0
  231. data/ext/gyp/test/copies/src/copies-attribs.gyp +20 -0
  232. data/ext/gyp/test/copies/src/copies-samedir.gyp +37 -0
  233. data/ext/gyp/test/copies/src/copies-slash.gyp +36 -0
  234. data/ext/gyp/test/copies/src/copies-sourceless-shared-lib.gyp +27 -0
  235. data/ext/gyp/test/copies/src/copies-updir.gyp +21 -0
  236. data/ext/gyp/test/copies/src/copies.gyp +70 -0
  237. data/ext/gyp/test/copies/src/directory/file3 +1 -0
  238. data/ext/gyp/test/copies/src/directory/file4 +1 -0
  239. data/ext/gyp/test/copies/src/directory/subdir/file5 +1 -0
  240. data/ext/gyp/test/copies/src/executable-file.sh +3 -0
  241. data/ext/gyp/test/copies/src/file1 +1 -0
  242. data/ext/gyp/test/copies/src/file2 +1 -0
  243. data/ext/gyp/test/copies/src/foo.c +13 -0
  244. data/ext/gyp/test/copies/src/parentdir/subdir/file6 +1 -0
  245. data/ext/gyp/test/custom-generator/gyptest-custom-generator.py +18 -0
  246. data/ext/gyp/test/custom-generator/mygenerator.py +14 -0
  247. data/ext/gyp/test/custom-generator/test.gyp +15 -0
  248. data/ext/gyp/test/cxxflags/cxxflags.cc +15 -0
  249. data/ext/gyp/test/cxxflags/cxxflags.gyp +15 -0
  250. data/ext/gyp/test/cxxflags/gyptest-cxxflags.py +45 -0
  251. data/ext/gyp/test/defines/defines-env.gyp +22 -0
  252. data/ext/gyp/test/defines/defines.c +23 -0
  253. data/ext/gyp/test/defines/defines.gyp +38 -0
  254. data/ext/gyp/test/defines/gyptest-define-override.py +43 -0
  255. data/ext/gyp/test/defines/gyptest-defines-env-regyp.py +51 -0
  256. data/ext/gyp/test/defines/gyptest-defines-env.py +85 -0
  257. data/ext/gyp/test/defines/gyptest-defines.py +39 -0
  258. data/ext/gyp/test/defines-escaping/defines-escaping.c +11 -0
  259. data/ext/gyp/test/defines-escaping/defines-escaping.gyp +19 -0
  260. data/ext/gyp/test/defines-escaping/gyptest-defines-escaping.py +184 -0
  261. data/ext/gyp/test/dependencies/a.c +9 -0
  262. data/ext/gyp/test/dependencies/adso/all_dependent_settings_order.gyp +45 -0
  263. data/ext/gyp/test/dependencies/adso/write_args.py +11 -0
  264. data/ext/gyp/test/dependencies/b/b.c +3 -0
  265. data/ext/gyp/test/dependencies/b/b.gyp +22 -0
  266. data/ext/gyp/test/dependencies/b/b3.c +9 -0
  267. data/ext/gyp/test/dependencies/c/c.c +4 -0
  268. data/ext/gyp/test/dependencies/c/c.gyp +22 -0
  269. data/ext/gyp/test/dependencies/c/d.c +3 -0
  270. data/ext/gyp/test/dependencies/double_dependency.gyp +23 -0
  271. data/ext/gyp/test/dependencies/double_dependent.gyp +12 -0
  272. data/ext/gyp/test/dependencies/extra_targets.gyp +18 -0
  273. data/ext/gyp/test/dependencies/gyptest-all-dependent-settings-order.py +19 -0
  274. data/ext/gyp/test/dependencies/gyptest-double-dependency.py +19 -0
  275. data/ext/gyp/test/dependencies/gyptest-extra-targets.py +22 -0
  276. data/ext/gyp/test/dependencies/gyptest-indirect-module-dependency.py +22 -0
  277. data/ext/gyp/test/dependencies/gyptest-lib-only.py +39 -0
  278. data/ext/gyp/test/dependencies/gyptest-none-traversal.py +25 -0
  279. data/ext/gyp/test/dependencies/gyptest-sharedlib-linksettings.py +21 -0
  280. data/ext/gyp/test/dependencies/lib_only.gyp +16 -0
  281. data/ext/gyp/test/dependencies/main.c +14 -0
  282. data/ext/gyp/test/dependencies/module-dep/a.cc +7 -0
  283. data/ext/gyp/test/dependencies/module-dep/dll.cc +9 -0
  284. data/ext/gyp/test/dependencies/module-dep/exe.cc +7 -0
  285. data/ext/gyp/test/dependencies/module-dep/indirect-module-dependency.gyp +37 -0
  286. data/ext/gyp/test/dependencies/none_traversal.gyp +46 -0
  287. data/ext/gyp/test/dependencies/sharedlib-linksettings/program.c +25 -0
  288. data/ext/gyp/test/dependencies/sharedlib-linksettings/sharedlib.c +16 -0
  289. data/ext/gyp/test/dependencies/sharedlib-linksettings/staticlib.c +24 -0
  290. data/ext/gyp/test/dependencies/sharedlib-linksettings/test.gyp +37 -0
  291. data/ext/gyp/test/dependency-copy/gyptest-copy.py +26 -0
  292. data/ext/gyp/test/dependency-copy/src/copies.gyp +25 -0
  293. data/ext/gyp/test/dependency-copy/src/file1.c +7 -0
  294. data/ext/gyp/test/dependency-copy/src/file2.c +7 -0
  295. data/ext/gyp/test/dependent-settings/nested-dependent-settings/all-dependent-settings.gyp +19 -0
  296. data/ext/gyp/test/dependent-settings/nested-dependent-settings/direct-dependent-settings.gyp +19 -0
  297. data/ext/gyp/test/dependent-settings/nested-dependent-settings/gyptest-nested-dependent-settings.py +18 -0
  298. data/ext/gyp/test/determinism/determinism.gyp +59 -0
  299. data/ext/gyp/test/determinism/empty-targets.gyp +32 -0
  300. data/ext/gyp/test/determinism/gyptest-determinism.py +30 -0
  301. data/ext/gyp/test/determinism/gyptest-empty-target-names.py +30 -0
  302. data/ext/gyp/test/determinism/gyptest-needed-variables.py +30 -0
  303. data/ext/gyp/test/determinism/gyptest-solibs.py +37 -0
  304. data/ext/gyp/test/determinism/main.cc +5 -0
  305. data/ext/gyp/test/determinism/needed-variables.gyp +33 -0
  306. data/ext/gyp/test/determinism/rule.py +8 -0
  307. data/ext/gyp/test/determinism/solib.cc +8 -0
  308. data/ext/gyp/test/determinism/solibs.gyp +32 -0
  309. data/ext/gyp/test/empty-target/empty-target.gyp +12 -0
  310. data/ext/gyp/test/empty-target/gyptest-empty-target.py +18 -0
  311. data/ext/gyp/test/errors/dependency_cycle.gyp +23 -0
  312. data/ext/gyp/test/errors/duplicate_basenames.gyp +13 -0
  313. data/ext/gyp/test/errors/duplicate_node.gyp +12 -0
  314. data/ext/gyp/test/errors/duplicate_rule.gyp +22 -0
  315. data/ext/gyp/test/errors/duplicate_targets.gyp +14 -0
  316. data/ext/gyp/test/errors/error_command.gyp +12 -0
  317. data/ext/gyp/test/errors/file_cycle0.gyp +17 -0
  318. data/ext/gyp/test/errors/file_cycle1.gyp +13 -0
  319. data/ext/gyp/test/errors/gyptest-errors.py +80 -0
  320. data/ext/gyp/test/errors/missing_command.gyp +12 -0
  321. data/ext/gyp/test/errors/missing_dep.gyp +15 -0
  322. data/ext/gyp/test/errors/missing_targets.gyp +8 -0
  323. data/ext/gyp/test/escaping/colon/test.gyp +21 -0
  324. data/ext/gyp/test/escaping/gyptest-colon.py +51 -0
  325. data/ext/gyp/test/exclusion/exclusion.gyp +23 -0
  326. data/ext/gyp/test/exclusion/gyptest-exclusion.py +22 -0
  327. data/ext/gyp/test/exclusion/hello.c +15 -0
  328. data/ext/gyp/test/external-cross-compile/gyptest-cross.py +31 -0
  329. data/ext/gyp/test/external-cross-compile/src/bogus1.cc +1 -0
  330. data/ext/gyp/test/external-cross-compile/src/bogus2.c +1 -0
  331. data/ext/gyp/test/external-cross-compile/src/cross.gyp +83 -0
  332. data/ext/gyp/test/external-cross-compile/src/cross_compile.gypi +23 -0
  333. data/ext/gyp/test/external-cross-compile/src/fake_cross.py +18 -0
  334. data/ext/gyp/test/external-cross-compile/src/program.cc +16 -0
  335. data/ext/gyp/test/external-cross-compile/src/test1.cc +1 -0
  336. data/ext/gyp/test/external-cross-compile/src/test2.c +1 -0
  337. data/ext/gyp/test/external-cross-compile/src/test3.cc +1 -0
  338. data/ext/gyp/test/external-cross-compile/src/test4.c +1 -0
  339. data/ext/gyp/test/external-cross-compile/src/tochar.py +13 -0
  340. data/ext/gyp/test/generator-output/actions/actions.gyp +16 -0
  341. data/ext/gyp/test/generator-output/actions/build/README.txt +4 -0
  342. data/ext/gyp/test/generator-output/actions/subdir1/actions-out/README.txt +4 -0
  343. data/ext/gyp/test/generator-output/actions/subdir1/build/README.txt +4 -0
  344. data/ext/gyp/test/generator-output/actions/subdir1/executable.gyp +44 -0
  345. data/ext/gyp/test/generator-output/actions/subdir1/make-prog1.py +20 -0
  346. data/ext/gyp/test/generator-output/actions/subdir1/make-prog2.py +20 -0
  347. data/ext/gyp/test/generator-output/actions/subdir1/program.c +12 -0
  348. data/ext/gyp/test/generator-output/actions/subdir2/actions-out/README.txt +4 -0
  349. data/ext/gyp/test/generator-output/actions/subdir2/build/README.txt +4 -0
  350. data/ext/gyp/test/generator-output/actions/subdir2/make-file.py +11 -0
  351. data/ext/gyp/test/generator-output/actions/subdir2/none.gyp +31 -0
  352. data/ext/gyp/test/generator-output/copies/build/README.txt +4 -0
  353. data/ext/gyp/test/generator-output/copies/copies-out/README.txt +4 -0
  354. data/ext/gyp/test/generator-output/copies/copies.gyp +50 -0
  355. data/ext/gyp/test/generator-output/copies/file1 +1 -0
  356. data/ext/gyp/test/generator-output/copies/file2 +1 -0
  357. data/ext/gyp/test/generator-output/copies/subdir/build/README.txt +4 -0
  358. data/ext/gyp/test/generator-output/copies/subdir/copies-out/README.txt +4 -0
  359. data/ext/gyp/test/generator-output/copies/subdir/file3 +1 -0
  360. data/ext/gyp/test/generator-output/copies/subdir/file4 +1 -0
  361. data/ext/gyp/test/generator-output/copies/subdir/subdir.gyp +32 -0
  362. data/ext/gyp/test/generator-output/gyptest-actions.py +57 -0
  363. data/ext/gyp/test/generator-output/gyptest-copies.py +59 -0
  364. data/ext/gyp/test/generator-output/gyptest-depth.py +58 -0
  365. data/ext/gyp/test/generator-output/gyptest-mac-bundle.py +33 -0
  366. data/ext/gyp/test/generator-output/gyptest-relocate.py +59 -0
  367. data/ext/gyp/test/generator-output/gyptest-rules.py +58 -0
  368. data/ext/gyp/test/generator-output/gyptest-subdir2-deep.py +36 -0
  369. data/ext/gyp/test/generator-output/gyptest-symlink.py +44 -0
  370. data/ext/gyp/test/generator-output/gyptest-top-all.py +53 -0
  371. data/ext/gyp/test/generator-output/mac-bundle/Info.plist +32 -0
  372. data/ext/gyp/test/generator-output/mac-bundle/app.order +1 -0
  373. data/ext/gyp/test/generator-output/mac-bundle/header.h +1 -0
  374. data/ext/gyp/test/generator-output/mac-bundle/main.c +1 -0
  375. data/ext/gyp/test/generator-output/mac-bundle/resource.sb +1 -0
  376. data/ext/gyp/test/generator-output/mac-bundle/test.gyp +25 -0
  377. data/ext/gyp/test/generator-output/rules/build/README.txt +4 -0
  378. data/ext/gyp/test/generator-output/rules/copy-file.py +12 -0
  379. data/ext/gyp/test/generator-output/rules/rules.gyp +16 -0
  380. data/ext/gyp/test/generator-output/rules/subdir1/build/README.txt +4 -0
  381. data/ext/gyp/test/generator-output/rules/subdir1/define3.in0 +1 -0
  382. data/ext/gyp/test/generator-output/rules/subdir1/define4.in0 +1 -0
  383. data/ext/gyp/test/generator-output/rules/subdir1/executable.gyp +59 -0
  384. data/ext/gyp/test/generator-output/rules/subdir1/function1.in1 +6 -0
  385. data/ext/gyp/test/generator-output/rules/subdir1/function2.in1 +6 -0
  386. data/ext/gyp/test/generator-output/rules/subdir1/program.c +18 -0
  387. data/ext/gyp/test/generator-output/rules/subdir2/build/README.txt +4 -0
  388. data/ext/gyp/test/generator-output/rules/subdir2/file1.in0 +1 -0
  389. data/ext/gyp/test/generator-output/rules/subdir2/file2.in0 +1 -0
  390. data/ext/gyp/test/generator-output/rules/subdir2/file3.in1 +1 -0
  391. data/ext/gyp/test/generator-output/rules/subdir2/file4.in1 +1 -0
  392. data/ext/gyp/test/generator-output/rules/subdir2/none.gyp +49 -0
  393. data/ext/gyp/test/generator-output/rules/subdir2/rules-out/README.txt +4 -0
  394. data/ext/gyp/test/generator-output/src/build/README.txt +4 -0
  395. data/ext/gyp/test/generator-output/src/inc.h +1 -0
  396. data/ext/gyp/test/generator-output/src/inc1/include1.h +1 -0
  397. data/ext/gyp/test/generator-output/src/prog1.c +18 -0
  398. data/ext/gyp/test/generator-output/src/prog1.gyp +28 -0
  399. data/ext/gyp/test/generator-output/src/subdir2/build/README.txt +4 -0
  400. data/ext/gyp/test/generator-output/src/subdir2/deeper/build/README.txt +4 -0
  401. data/ext/gyp/test/generator-output/src/subdir2/deeper/deeper.c +7 -0
  402. data/ext/gyp/test/generator-output/src/subdir2/deeper/deeper.gyp +18 -0
  403. data/ext/gyp/test/generator-output/src/subdir2/deeper/deeper.h +1 -0
  404. data/ext/gyp/test/generator-output/src/subdir2/inc2/include2.h +1 -0
  405. data/ext/gyp/test/generator-output/src/subdir2/prog2.c +18 -0
  406. data/ext/gyp/test/generator-output/src/subdir2/prog2.gyp +28 -0
  407. data/ext/gyp/test/generator-output/src/subdir3/build/README.txt +4 -0
  408. data/ext/gyp/test/generator-output/src/subdir3/inc3/include3.h +1 -0
  409. data/ext/gyp/test/generator-output/src/subdir3/prog3.c +18 -0
  410. data/ext/gyp/test/generator-output/src/subdir3/prog3.gyp +25 -0
  411. data/ext/gyp/test/generator-output/src/symroot.gypi +16 -0
  412. data/ext/gyp/test/gyp-defines/defines.gyp +26 -0
  413. data/ext/gyp/test/gyp-defines/echo.py +11 -0
  414. data/ext/gyp/test/gyp-defines/gyptest-multiple-values.py +36 -0
  415. data/ext/gyp/test/gyp-defines/gyptest-regyp.py +40 -0
  416. data/ext/gyp/test/hard_dependency/gyptest-exported-hard-dependency.py +37 -0
  417. data/ext/gyp/test/hard_dependency/gyptest-no-exported-hard-dependency.py +36 -0
  418. data/ext/gyp/test/hard_dependency/src/a.c +9 -0
  419. data/ext/gyp/test/hard_dependency/src/a.h +12 -0
  420. data/ext/gyp/test/hard_dependency/src/b.c +9 -0
  421. data/ext/gyp/test/hard_dependency/src/b.h +12 -0
  422. data/ext/gyp/test/hard_dependency/src/c.c +10 -0
  423. data/ext/gyp/test/hard_dependency/src/c.h +10 -0
  424. data/ext/gyp/test/hard_dependency/src/d.c +9 -0
  425. data/ext/gyp/test/hard_dependency/src/emit.py +11 -0
  426. data/ext/gyp/test/hard_dependency/src/hard_dependency.gyp +78 -0
  427. data/ext/gyp/test/hello/gyptest-all.py +24 -0
  428. data/ext/gyp/test/hello/gyptest-default.py +24 -0
  429. data/ext/gyp/test/hello/gyptest-disable-regyp.py +32 -0
  430. data/ext/gyp/test/hello/gyptest-regyp-output.py +36 -0
  431. data/ext/gyp/test/hello/gyptest-regyp.py +32 -0
  432. data/ext/gyp/test/hello/gyptest-target.py +24 -0
  433. data/ext/gyp/test/hello/hello.c +11 -0
  434. data/ext/gyp/test/hello/hello.gyp +15 -0
  435. data/ext/gyp/test/hello/hello2.c +11 -0
  436. data/ext/gyp/test/hello/hello2.gyp +15 -0
  437. data/ext/gyp/test/home_dot_gyp/gyptest-home-includes-config-arg.py +31 -0
  438. data/ext/gyp/test/home_dot_gyp/gyptest-home-includes-config-env.py +33 -0
  439. data/ext/gyp/test/home_dot_gyp/gyptest-home-includes-regyp.py +44 -0
  440. data/ext/gyp/test/home_dot_gyp/gyptest-home-includes.py +30 -0
  441. data/ext/gyp/test/home_dot_gyp/home/.gyp/include.gypi +5 -0
  442. data/ext/gyp/test/home_dot_gyp/home2/.gyp/include.gypi +5 -0
  443. data/ext/gyp/test/home_dot_gyp/home2/.gyp_new/include.gypi +5 -0
  444. data/ext/gyp/test/home_dot_gyp/src/all.gyp +22 -0
  445. data/ext/gyp/test/home_dot_gyp/src/printfoo.c +7 -0
  446. data/ext/gyp/test/include_dirs/gyptest-all.py +43 -0
  447. data/ext/gyp/test/include_dirs/gyptest-default.py +43 -0
  448. data/ext/gyp/test/include_dirs/src/inc.h +1 -0
  449. data/ext/gyp/test/include_dirs/src/inc1/include1.h +1 -0
  450. data/ext/gyp/test/include_dirs/src/includes.c +19 -0
  451. data/ext/gyp/test/include_dirs/src/includes.gyp +27 -0
  452. data/ext/gyp/test/include_dirs/src/shadow1/shadow.h +1 -0
  453. data/ext/gyp/test/include_dirs/src/shadow2/shadow.h +1 -0
  454. data/ext/gyp/test/include_dirs/src/subdir/inc.h +1 -0
  455. data/ext/gyp/test/include_dirs/src/subdir/inc2/include2.h +1 -0
  456. data/ext/gyp/test/include_dirs/src/subdir/subdir_includes.c +14 -0
  457. data/ext/gyp/test/include_dirs/src/subdir/subdir_includes.gyp +20 -0
  458. data/ext/gyp/test/intermediate_dir/gyptest-intermediate-dir.py +44 -0
  459. data/ext/gyp/test/intermediate_dir/src/script.py +22 -0
  460. data/ext/gyp/test/intermediate_dir/src/shared_infile.txt +1 -0
  461. data/ext/gyp/test/intermediate_dir/src/test.gyp +42 -0
  462. data/ext/gyp/test/intermediate_dir/src/test2.gyp +42 -0
  463. data/ext/gyp/test/ios/app-bundle/TestApp/English.lproj/InfoPlist-error.strings +3 -0
  464. data/ext/gyp/test/ios/app-bundle/TestApp/English.lproj/InfoPlist.strings +3 -0
  465. data/ext/gyp/test/ios/app-bundle/TestApp/English.lproj/LanguageMap.plist +8 -0
  466. data/ext/gyp/test/ios/app-bundle/TestApp/English.lproj/MainMenu.xib +17 -0
  467. data/ext/gyp/test/ios/app-bundle/TestApp/English.lproj/Main_iPhone.storyboard +27 -0
  468. data/ext/gyp/test/ios/app-bundle/TestApp/Images.xcassets/AppIcon.appiconset/Contents.json +58 -0
  469. data/ext/gyp/test/ios/app-bundle/TestApp/Images.xcassets/image.imageset/Contents.json +23 -0
  470. data/ext/gyp/test/ios/app-bundle/TestApp/Images.xcassets/image.imageset/super_sylvain.png +0 -0
  471. data/ext/gyp/test/ios/app-bundle/TestApp/Images.xcassets/image.imageset/super_sylvain@2x.png +0 -0
  472. data/ext/gyp/test/ios/app-bundle/TestApp/Images.xcassets/image.imageset/super_sylvain@3x.png +0 -0
  473. data/ext/gyp/test/ios/app-bundle/TestApp/TestApp-Info.plist +28 -0
  474. data/ext/gyp/test/ios/app-bundle/TestApp/check_no_signature.py +13 -0
  475. data/ext/gyp/test/ios/app-bundle/TestApp/main.m +13 -0
  476. data/ext/gyp/test/ios/app-bundle/TestApp/only-compile-in-32-bits.m +7 -0
  477. data/ext/gyp/test/ios/app-bundle/TestApp/only-compile-in-64-bits.m +7 -0
  478. data/ext/gyp/test/ios/app-bundle/test-archs.gyp +109 -0
  479. data/ext/gyp/test/ios/app-bundle/test-assets-catalog.gyp +45 -0
  480. data/ext/gyp/test/ios/app-bundle/test-crosscompile.gyp +47 -0
  481. data/ext/gyp/test/ios/app-bundle/test-device.gyp +109 -0
  482. data/ext/gyp/test/ios/app-bundle/test.gyp +75 -0
  483. data/ext/gyp/test/ios/app-bundle/tool_main.cc +7 -0
  484. data/ext/gyp/test/ios/copies-with-xcode-envvars/Info.plist +24 -0
  485. data/ext/gyp/test/ios/copies-with-xcode-envvars/copies-with-xcode-envvars.gyp +97 -0
  486. data/ext/gyp/test/ios/copies-with-xcode-envvars/empty.c +1 -0
  487. data/ext/gyp/test/ios/copies-with-xcode-envvars/file0 +1 -0
  488. data/ext/gyp/test/ios/copies-with-xcode-envvars/file1 +1 -0
  489. data/ext/gyp/test/ios/copies-with-xcode-envvars/file10 +1 -0
  490. data/ext/gyp/test/ios/copies-with-xcode-envvars/file11 +1 -0
  491. data/ext/gyp/test/ios/copies-with-xcode-envvars/file2 +1 -0
  492. data/ext/gyp/test/ios/copies-with-xcode-envvars/file3 +1 -0
  493. data/ext/gyp/test/ios/copies-with-xcode-envvars/file4 +1 -0
  494. data/ext/gyp/test/ios/copies-with-xcode-envvars/file5 +1 -0
  495. data/ext/gyp/test/ios/copies-with-xcode-envvars/file6 +1 -0
  496. data/ext/gyp/test/ios/copies-with-xcode-envvars/file7 +1 -0
  497. data/ext/gyp/test/ios/copies-with-xcode-envvars/file8 +1 -0
  498. data/ext/gyp/test/ios/copies-with-xcode-envvars/file9 +1 -0
  499. data/ext/gyp/test/ios/deployment-target/check-version-min.c +33 -0
  500. data/ext/gyp/test/ios/deployment-target/deployment-target.gyp +34 -0
  501. data/ext/gyp/test/ios/extension/ActionExtension/ActionViewController.h +9 -0
  502. data/ext/gyp/test/ios/extension/ActionExtension/ActionViewController.m +31 -0
  503. data/ext/gyp/test/ios/extension/ActionExtension/Info.plist +42 -0
  504. data/ext/gyp/test/ios/extension/ActionExtension/MainInterface.storyboard +63 -0
  505. data/ext/gyp/test/ios/extension/ExtensionContainer/AppDelegate.h +12 -0
  506. data/ext/gyp/test/ios/extension/ExtensionContainer/AppDelegate.m +19 -0
  507. data/ext/gyp/test/ios/extension/ExtensionContainer/Base.lproj/Main.storyboard +25 -0
  508. data/ext/gyp/test/ios/extension/ExtensionContainer/Images.xcassets/AppIcon.appiconset/Contents.json +53 -0
  509. data/ext/gyp/test/ios/extension/ExtensionContainer/Images.xcassets/LaunchImage.launchimage/Contents.json +51 -0
  510. data/ext/gyp/test/ios/extension/ExtensionContainer/Info.plist +32 -0
  511. data/ext/gyp/test/ios/extension/ExtensionContainer/ViewController.h +11 -0
  512. data/ext/gyp/test/ios/extension/ExtensionContainer/ViewController.m +24 -0
  513. data/ext/gyp/test/ios/extension/ExtensionContainer/main.m +13 -0
  514. data/ext/gyp/test/ios/extension/extension.gyp +91 -0
  515. data/ext/gyp/test/ios/framework/framework.gyp +43 -0
  516. data/ext/gyp/test/ios/framework/iOSFramework/Info.plist +26 -0
  517. data/ext/gyp/test/ios/framework/iOSFramework/Thing.h +10 -0
  518. data/ext/gyp/test/ios/framework/iOSFramework/Thing.m +22 -0
  519. data/ext/gyp/test/ios/framework/iOSFramework/iOSFramework.h +9 -0
  520. data/ext/gyp/test/ios/gyptest-app-ios-assets-catalog.py +57 -0
  521. data/ext/gyp/test/ios/gyptest-app-ios.py +76 -0
  522. data/ext/gyp/test/ios/gyptest-archs.py +62 -0
  523. data/ext/gyp/test/ios/gyptest-copies-with-xcode-envvars.py +65 -0
  524. data/ext/gyp/test/ios/gyptest-crosscompile.py +34 -0
  525. data/ext/gyp/test/ios/gyptest-deployment-target.py +23 -0
  526. data/ext/gyp/test/ios/gyptest-extension.py +51 -0
  527. data/ext/gyp/test/ios/gyptest-framework.py +37 -0
  528. data/ext/gyp/test/ios/gyptest-per-config-settings.py +190 -0
  529. data/ext/gyp/test/ios/gyptest-watch.py +44 -0
  530. data/ext/gyp/test/ios/gyptest-xcode-ninja.py +25 -0
  531. data/ext/gyp/test/ios/watch/WatchApp/Images.xcassets/AppIcon.appiconset/Contents.json +62 -0
  532. data/ext/gyp/test/ios/watch/WatchApp/Images.xcassets/LaunchImage.launchimage/Contents.json +24 -0
  533. data/ext/gyp/test/ios/watch/WatchApp/Info.plist +35 -0
  534. data/ext/gyp/test/ios/watch/WatchApp/Interface.storyboard +15 -0
  535. data/ext/gyp/test/ios/watch/WatchContainer/AppDelegate.h +12 -0
  536. data/ext/gyp/test/ios/watch/WatchContainer/AppDelegate.m +19 -0
  537. data/ext/gyp/test/ios/watch/WatchContainer/Base.lproj/Main.storyboard +25 -0
  538. data/ext/gyp/test/ios/watch/WatchContainer/Images.xcassets/AppIcon.appiconset/Contents.json +53 -0
  539. data/ext/gyp/test/ios/watch/WatchContainer/Images.xcassets/LaunchImage.launchimage/Contents.json +51 -0
  540. data/ext/gyp/test/ios/watch/WatchContainer/Info.plist +32 -0
  541. data/ext/gyp/test/ios/watch/WatchContainer/ViewController.h +11 -0
  542. data/ext/gyp/test/ios/watch/WatchContainer/ViewController.m +24 -0
  543. data/ext/gyp/test/ios/watch/WatchContainer/main.m +13 -0
  544. data/ext/gyp/test/ios/watch/WatchKitExtension/Images.xcassets/MyImage.imageset/Contents.json +20 -0
  545. data/ext/gyp/test/ios/watch/WatchKitExtension/Info.plist +38 -0
  546. data/ext/gyp/test/ios/watch/WatchKitExtension/InterfaceController.h +10 -0
  547. data/ext/gyp/test/ios/watch/WatchKitExtension/InterfaceController.m +25 -0
  548. data/ext/gyp/test/ios/watch/WatchKitExtension/MainInterface.storyboard +63 -0
  549. data/ext/gyp/test/ios/watch/watch.gyp +105 -0
  550. data/ext/gyp/test/ios/xctests/App/AppDelegate.h +11 -0
  551. data/ext/gyp/test/ios/xctests/App/AppDelegate.m +18 -0
  552. data/ext/gyp/test/ios/xctests/App/Base.lproj/LaunchScreen.xib +41 -0
  553. data/ext/gyp/test/ios/xctests/App/Base.lproj/Main.storyboard +25 -0
  554. data/ext/gyp/test/ios/xctests/App/Images.xcassets/AppIcon.appiconset/Contents.json +68 -0
  555. data/ext/gyp/test/ios/xctests/App/Info.plist +47 -0
  556. data/ext/gyp/test/ios/xctests/App/ViewController.h +9 -0
  557. data/ext/gyp/test/ios/xctests/App/ViewController.m +21 -0
  558. data/ext/gyp/test/ios/xctests/App/main.m +13 -0
  559. data/ext/gyp/test/ios/xctests/AppTests/AppTests.m +31 -0
  560. data/ext/gyp/test/ios/xctests/AppTests/Info.plist +24 -0
  561. data/ext/gyp/test/ios/xctests/gyptest-xctests.py +49 -0
  562. data/ext/gyp/test/ios/xctests/xctests.gyp +74 -0
  563. data/ext/gyp/test/lib/README.txt +17 -0
  564. data/ext/gyp/test/lib/TestCmd.py +1597 -0
  565. data/ext/gyp/test/lib/TestCommon.py +591 -0
  566. data/ext/gyp/test/lib/TestGyp.py +1259 -0
  567. data/ext/gyp/test/lib/TestMac.py +76 -0
  568. data/ext/gyp/test/lib/TestWin.py +101 -0
  569. data/ext/gyp/test/library/gyptest-shared-obj-install-path.py +39 -0
  570. data/ext/gyp/test/library/gyptest-shared.py +84 -0
  571. data/ext/gyp/test/library/gyptest-static.py +84 -0
  572. data/ext/gyp/test/library/src/lib1.c +10 -0
  573. data/ext/gyp/test/library/src/lib1_moveable.c +10 -0
  574. data/ext/gyp/test/library/src/lib2.c +10 -0
  575. data/ext/gyp/test/library/src/lib2_moveable.c +10 -0
  576. data/ext/gyp/test/library/src/library.gyp +58 -0
  577. data/ext/gyp/test/library/src/program.c +15 -0
  578. data/ext/gyp/test/library/src/shared_dependency.gyp +33 -0
  579. data/ext/gyp/test/library_dirs/gyptest-library-dirs.py +50 -0
  580. data/ext/gyp/test/library_dirs/subdir/README.txt +1 -0
  581. data/ext/gyp/test/library_dirs/subdir/hello.cc +11 -0
  582. data/ext/gyp/test/library_dirs/subdir/mylib.cc +9 -0
  583. data/ext/gyp/test/library_dirs/subdir/mylib.h +12 -0
  584. data/ext/gyp/test/library_dirs/subdir/test-win.gyp +60 -0
  585. data/ext/gyp/test/library_dirs/subdir/test.gyp +68 -0
  586. data/ext/gyp/test/link-dependency/gyptest-link-dependency.py +23 -0
  587. data/ext/gyp/test/link-dependency/main.c +7 -0
  588. data/ext/gyp/test/link-dependency/mymalloc.c +12 -0
  589. data/ext/gyp/test/link-dependency/test.gyp +37 -0
  590. data/ext/gyp/test/link-objects/base.c +6 -0
  591. data/ext/gyp/test/link-objects/extra.c +5 -0
  592. data/ext/gyp/test/link-objects/gyptest-all.py +28 -0
  593. data/ext/gyp/test/link-objects/link-objects.gyp +24 -0
  594. data/ext/gyp/test/linux/gyptest-implicit-rpath.py +48 -0
  595. data/ext/gyp/test/linux/gyptest-ldflags-duplicates.py +22 -0
  596. data/ext/gyp/test/linux/gyptest-ldflags-from-environment.py +45 -0
  597. data/ext/gyp/test/linux/gyptest-target-rpath.py +43 -0
  598. data/ext/gyp/test/linux/implicit-rpath/file.c +1 -0
  599. data/ext/gyp/test/linux/implicit-rpath/main.c +1 -0
  600. data/ext/gyp/test/linux/implicit-rpath/test.gyp +47 -0
  601. data/ext/gyp/test/linux/ldflags-duplicates/check-ldflags.py +28 -0
  602. data/ext/gyp/test/linux/ldflags-duplicates/lib1.c +6 -0
  603. data/ext/gyp/test/linux/ldflags-duplicates/lib2.c +6 -0
  604. data/ext/gyp/test/linux/ldflags-duplicates/main.c +7 -0
  605. data/ext/gyp/test/linux/ldflags-duplicates/test.gyp +45 -0
  606. data/ext/gyp/test/linux/ldflags-from-environment/main.c +7 -0
  607. data/ext/gyp/test/linux/ldflags-from-environment/test.gyp +23 -0
  608. data/ext/gyp/test/linux/target-rpath/file.c +1 -0
  609. data/ext/gyp/test/linux/target-rpath/main.c +1 -0
  610. data/ext/gyp/test/linux/target-rpath/test.gyp +47 -0
  611. data/ext/gyp/test/mac/action-envvars/action/action.gyp +34 -0
  612. data/ext/gyp/test/mac/action-envvars/action/action.sh +8 -0
  613. data/ext/gyp/test/mac/app-bundle/TestApp/English.lproj/InfoPlist-error.strings +3 -0
  614. data/ext/gyp/test/mac/app-bundle/TestApp/English.lproj/InfoPlist.strings +3 -0
  615. data/ext/gyp/test/mac/app-bundle/TestApp/English.lproj/MainMenu.xib +4119 -0
  616. data/ext/gyp/test/mac/app-bundle/TestApp/English.lproj/utf-16be.strings +0 -0
  617. data/ext/gyp/test/mac/app-bundle/TestApp/English.lproj/utf-16le.strings +0 -0
  618. data/ext/gyp/test/mac/app-bundle/TestApp/Images.xcassets/AppIcon.appiconset/Contents.json +58 -0
  619. data/ext/gyp/test/mac/app-bundle/TestApp/Images.xcassets/image.imageset/Contents.json +23 -0
  620. data/ext/gyp/test/mac/app-bundle/TestApp/Images.xcassets/image.imageset/super_sylvain.png +0 -0
  621. data/ext/gyp/test/mac/app-bundle/TestApp/Images.xcassets/image.imageset/super_sylvain@2x.png +0 -0
  622. data/ext/gyp/test/mac/app-bundle/TestApp/Images.xcassets/image.imageset/super_sylvain@3x.png +0 -0
  623. data/ext/gyp/test/mac/app-bundle/TestApp/TestApp-Info.plist +34 -0
  624. data/ext/gyp/test/mac/app-bundle/TestApp/TestAppAppDelegate.h +13 -0
  625. data/ext/gyp/test/mac/app-bundle/TestApp/TestAppAppDelegate.m +15 -0
  626. data/ext/gyp/test/mac/app-bundle/TestApp/main.m +10 -0
  627. data/ext/gyp/test/mac/app-bundle/empty.c +0 -0
  628. data/ext/gyp/test/mac/app-bundle/test-assets-catalog.gyp +43 -0
  629. data/ext/gyp/test/mac/app-bundle/test-error.gyp +31 -0
  630. data/ext/gyp/test/mac/app-bundle/test.gyp +41 -0
  631. data/ext/gyp/test/mac/archs/empty_main.cc +1 -0
  632. data/ext/gyp/test/mac/archs/file.mm +1 -0
  633. data/ext/gyp/test/mac/archs/file_a.cc +8 -0
  634. data/ext/gyp/test/mac/archs/file_a.h +10 -0
  635. data/ext/gyp/test/mac/archs/file_b.cc +8 -0
  636. data/ext/gyp/test/mac/archs/file_b.h +10 -0
  637. data/ext/gyp/test/mac/archs/file_c.cc +11 -0
  638. data/ext/gyp/test/mac/archs/file_d.cc +11 -0
  639. data/ext/gyp/test/mac/archs/header.h +1 -0
  640. data/ext/gyp/test/mac/archs/my_file.cc +4 -0
  641. data/ext/gyp/test/mac/archs/my_main_file.cc +9 -0
  642. data/ext/gyp/test/mac/archs/test-archs-multiarch.gyp +92 -0
  643. data/ext/gyp/test/mac/archs/test-archs-x86_64.gyp +27 -0
  644. data/ext/gyp/test/mac/archs/test-dependencies.gyp +92 -0
  645. data/ext/gyp/test/mac/archs/test-no-archs.gyp +21 -0
  646. data/ext/gyp/test/mac/archs/test-valid-archs.gyp +28 -0
  647. data/ext/gyp/test/mac/bundle-resources/change.sh +3 -0
  648. data/ext/gyp/test/mac/bundle-resources/executable-file.sh +3 -0
  649. data/ext/gyp/test/mac/bundle-resources/secret.txt +1 -0
  650. data/ext/gyp/test/mac/bundle-resources/test.gyp +59 -0
  651. data/ext/gyp/test/mac/cflags/ccfile.cc +7 -0
  652. data/ext/gyp/test/mac/cflags/ccfile_withcflags.cc +7 -0
  653. data/ext/gyp/test/mac/cflags/cfile.c +7 -0
  654. data/ext/gyp/test/mac/cflags/cppfile.cpp +7 -0
  655. data/ext/gyp/test/mac/cflags/cppfile_withcflags.cpp +7 -0
  656. data/ext/gyp/test/mac/cflags/cxxfile.cxx +7 -0
  657. data/ext/gyp/test/mac/cflags/cxxfile_withcflags.cxx +7 -0
  658. data/ext/gyp/test/mac/cflags/mfile.m +7 -0
  659. data/ext/gyp/test/mac/cflags/mmfile.mm +7 -0
  660. data/ext/gyp/test/mac/cflags/mmfile_withcflags.mm +7 -0
  661. data/ext/gyp/test/mac/cflags/test.gyp +132 -0
  662. data/ext/gyp/test/mac/clang-cxx-language-standard/c++11.cc +8 -0
  663. data/ext/gyp/test/mac/clang-cxx-language-standard/c++98.cc +24 -0
  664. data/ext/gyp/test/mac/clang-cxx-language-standard/clang-cxx-language-standard.gyp +30 -0
  665. data/ext/gyp/test/mac/clang-cxx-library/clang-cxx-library.gyp +32 -0
  666. data/ext/gyp/test/mac/clang-cxx-library/libc++.cc +11 -0
  667. data/ext/gyp/test/mac/clang-cxx-library/libstdc++.cc +11 -0
  668. data/ext/gyp/test/mac/copies-with-xcode-envvars/copies-with-xcode-envvars.gyp +87 -0
  669. data/ext/gyp/test/mac/copies-with-xcode-envvars/empty.c +1 -0
  670. data/ext/gyp/test/mac/copies-with-xcode-envvars/file0 +1 -0
  671. data/ext/gyp/test/mac/copies-with-xcode-envvars/file1 +1 -0
  672. data/ext/gyp/test/mac/copies-with-xcode-envvars/file10 +1 -0
  673. data/ext/gyp/test/mac/copies-with-xcode-envvars/file11 +1 -0
  674. data/ext/gyp/test/mac/copies-with-xcode-envvars/file2 +1 -0
  675. data/ext/gyp/test/mac/copies-with-xcode-envvars/file3 +1 -0
  676. data/ext/gyp/test/mac/copies-with-xcode-envvars/file4 +1 -0
  677. data/ext/gyp/test/mac/copies-with-xcode-envvars/file5 +1 -0
  678. data/ext/gyp/test/mac/copies-with-xcode-envvars/file6 +1 -0
  679. data/ext/gyp/test/mac/copies-with-xcode-envvars/file7 +1 -0
  680. data/ext/gyp/test/mac/copies-with-xcode-envvars/file8 +1 -0
  681. data/ext/gyp/test/mac/copies-with-xcode-envvars/file9 +1 -0
  682. data/ext/gyp/test/mac/copy-dylib/empty.c +1 -0
  683. data/ext/gyp/test/mac/copy-dylib/test.gyp +31 -0
  684. data/ext/gyp/test/mac/debuginfo/file.c +6 -0
  685. data/ext/gyp/test/mac/debuginfo/test.gyp +82 -0
  686. data/ext/gyp/test/mac/depend-on-bundle/English.lproj/InfoPlist.strings +1 -0
  687. data/ext/gyp/test/mac/depend-on-bundle/Info.plist +28 -0
  688. data/ext/gyp/test/mac/depend-on-bundle/bundle.c +1 -0
  689. data/ext/gyp/test/mac/depend-on-bundle/executable.c +4 -0
  690. data/ext/gyp/test/mac/depend-on-bundle/test.gyp +28 -0
  691. data/ext/gyp/test/mac/deployment-target/check-version-min.c +33 -0
  692. data/ext/gyp/test/mac/deployment-target/deployment-target.gyp +28 -0
  693. data/ext/gyp/test/mac/framework/TestFramework/English.lproj/InfoPlist.strings +2 -0
  694. data/ext/gyp/test/mac/framework/TestFramework/Info.plist +28 -0
  695. data/ext/gyp/test/mac/framework/TestFramework/ObjCVector.h +28 -0
  696. data/ext/gyp/test/mac/framework/TestFramework/ObjCVector.mm +63 -0
  697. data/ext/gyp/test/mac/framework/TestFramework/ObjCVectorInternal.h +9 -0
  698. data/ext/gyp/test/mac/framework/TestFramework/TestFramework_Prefix.pch +7 -0
  699. data/ext/gyp/test/mac/framework/empty.c +0 -0
  700. data/ext/gyp/test/mac/framework/framework.gyp +108 -0
  701. data/ext/gyp/test/mac/framework-dirs/calculate.c +15 -0
  702. data/ext/gyp/test/mac/framework-dirs/framework-dirs.gyp +21 -0
  703. data/ext/gyp/test/mac/framework-headers/myframework.h +8 -0
  704. data/ext/gyp/test/mac/framework-headers/myframework.m +8 -0
  705. data/ext/gyp/test/mac/framework-headers/test.gyp +44 -0
  706. data/ext/gyp/test/mac/global-settings/src/dir1/dir1.gyp +11 -0
  707. data/ext/gyp/test/mac/global-settings/src/dir2/dir2.gyp +22 -0
  708. data/ext/gyp/test/mac/global-settings/src/dir2/file.txt +1 -0
  709. data/ext/gyp/test/mac/gyptest-action-envvars.py +36 -0
  710. data/ext/gyp/test/mac/gyptest-app-assets-catalog.py +125 -0
  711. data/ext/gyp/test/mac/gyptest-app-error.py +49 -0
  712. data/ext/gyp/test/mac/gyptest-app.py +122 -0
  713. data/ext/gyp/test/mac/gyptest-archs.py +96 -0
  714. data/ext/gyp/test/mac/gyptest-bundle-resources.py +64 -0
  715. data/ext/gyp/test/mac/gyptest-cflags.py +21 -0
  716. data/ext/gyp/test/mac/gyptest-clang-cxx-language-standard.py +25 -0
  717. data/ext/gyp/test/mac/gyptest-clang-cxx-library.py +32 -0
  718. data/ext/gyp/test/mac/gyptest-copies-with-xcode-envvars.py +65 -0
  719. data/ext/gyp/test/mac/gyptest-copies.py +62 -0
  720. data/ext/gyp/test/mac/gyptest-copy-dylib.py +25 -0
  721. data/ext/gyp/test/mac/gyptest-debuginfo.py +36 -0
  722. data/ext/gyp/test/mac/gyptest-depend-on-bundle.py +45 -0
  723. data/ext/gyp/test/mac/gyptest-deployment-target.py +27 -0
  724. data/ext/gyp/test/mac/gyptest-framework-dirs.py +23 -0
  725. data/ext/gyp/test/mac/gyptest-framework-headers.py +38 -0
  726. data/ext/gyp/test/mac/gyptest-framework.py +80 -0
  727. data/ext/gyp/test/mac/gyptest-global-settings.py +33 -0
  728. data/ext/gyp/test/mac/gyptest-identical-name.py +45 -0
  729. data/ext/gyp/test/mac/gyptest-infoplist-process.py +56 -0
  730. data/ext/gyp/test/mac/gyptest-installname.py +85 -0
  731. data/ext/gyp/test/mac/gyptest-kext.py +27 -0
  732. data/ext/gyp/test/mac/gyptest-ldflags-passed-to-libtool.py +37 -0
  733. data/ext/gyp/test/mac/gyptest-ldflags.py +74 -0
  734. data/ext/gyp/test/mac/gyptest-libraries.py +30 -0
  735. data/ext/gyp/test/mac/gyptest-libtool-zero.py +26 -0
  736. data/ext/gyp/test/mac/gyptest-loadable-module-bundle-product-extension.py +31 -0
  737. data/ext/gyp/test/mac/gyptest-loadable-module.py +54 -0
  738. data/ext/gyp/test/mac/gyptest-lto.py +66 -0
  739. data/ext/gyp/test/mac/gyptest-missing-cfbundlesignature.py +34 -0
  740. data/ext/gyp/test/mac/gyptest-non-strs-flattened-to-env.py +38 -0
  741. data/ext/gyp/test/mac/gyptest-objc-arc.py +27 -0
  742. data/ext/gyp/test/mac/gyptest-objc-gc.py +51 -0
  743. data/ext/gyp/test/mac/gyptest-postbuild-copy-bundle.py +75 -0
  744. data/ext/gyp/test/mac/gyptest-postbuild-defaults.py +34 -0
  745. data/ext/gyp/test/mac/gyptest-postbuild-fail.py +71 -0
  746. data/ext/gyp/test/mac/gyptest-postbuild-multiple-configurations.py +26 -0
  747. data/ext/gyp/test/mac/gyptest-postbuild-static-library.py +28 -0
  748. data/ext/gyp/test/mac/gyptest-postbuild.py +53 -0
  749. data/ext/gyp/test/mac/gyptest-prefixheader.py +20 -0
  750. data/ext/gyp/test/mac/gyptest-rebuild.py +46 -0
  751. data/ext/gyp/test/mac/gyptest-rpath.py +50 -0
  752. data/ext/gyp/test/mac/gyptest-sdkroot.py +56 -0
  753. data/ext/gyp/test/mac/gyptest-sourceless-module.py +77 -0
  754. data/ext/gyp/test/mac/gyptest-strip-default.py +97 -0
  755. data/ext/gyp/test/mac/gyptest-strip.py +66 -0
  756. data/ext/gyp/test/mac/gyptest-swift-library.py +67 -0
  757. data/ext/gyp/test/mac/gyptest-type-envvars.py +26 -0
  758. data/ext/gyp/test/mac/gyptest-unicode-settings.py +20 -0
  759. data/ext/gyp/test/mac/gyptest-xcode-env-order.py +95 -0
  760. data/ext/gyp/test/mac/gyptest-xcode-gcc-clang.py +40 -0
  761. data/ext/gyp/test/mac/gyptest-xcode-gcc.py +60 -0
  762. data/ext/gyp/test/mac/gyptest-xcode-support-actions.py +25 -0
  763. data/ext/gyp/test/mac/gyptest-xctest.py +41 -0
  764. data/ext/gyp/test/mac/gyptest-xcuitest.py +39 -0
  765. data/ext/gyp/test/mac/identical-name/proxy/proxy.cc +2 -0
  766. data/ext/gyp/test/mac/identical-name/proxy/proxy.gyp +9 -0
  767. data/ext/gyp/test/mac/identical-name/proxy/testlib/testlib.cc +2 -0
  768. data/ext/gyp/test/mac/identical-name/proxy/testlib/testlib.gyp +8 -0
  769. data/ext/gyp/test/mac/identical-name/test-should-fail.gyp +10 -0
  770. data/ext/gyp/test/mac/identical-name/test.gyp +11 -0
  771. data/ext/gyp/test/mac/identical-name/test.gypi +7 -0
  772. data/ext/gyp/test/mac/identical-name/testlib/main.cc +3 -0
  773. data/ext/gyp/test/mac/identical-name/testlib/testlib.gyp +14 -0
  774. data/ext/gyp/test/mac/identical-name/testlib/void.cc +2 -0
  775. data/ext/gyp/test/mac/infoplist-process/Info.plist +36 -0
  776. data/ext/gyp/test/mac/infoplist-process/main.c +7 -0
  777. data/ext/gyp/test/mac/infoplist-process/test1.gyp +25 -0
  778. data/ext/gyp/test/mac/infoplist-process/test2.gyp +25 -0
  779. data/ext/gyp/test/mac/infoplist-process/test3.gyp +25 -0
  780. data/ext/gyp/test/mac/installname/Info.plist +28 -0
  781. data/ext/gyp/test/mac/installname/file.c +1 -0
  782. data/ext/gyp/test/mac/installname/main.c +1 -0
  783. data/ext/gyp/test/mac/installname/test.gyp +93 -0
  784. data/ext/gyp/test/mac/kext/GypKext/GypKext-Info.plist +35 -0
  785. data/ext/gyp/test/mac/kext/GypKext/GypKext.c +16 -0
  786. data/ext/gyp/test/mac/kext/kext.gyp +18 -0
  787. data/ext/gyp/test/mac/ldflags/subdirectory/Info.plist +8 -0
  788. data/ext/gyp/test/mac/ldflags/subdirectory/file.c +2 -0
  789. data/ext/gyp/test/mac/ldflags/subdirectory/symbol_list.def +1 -0
  790. data/ext/gyp/test/mac/ldflags/subdirectory/test.gyp +66 -0
  791. data/ext/gyp/test/mac/ldflags-libtool/file.c +1 -0
  792. data/ext/gyp/test/mac/ldflags-libtool/test.gyp +17 -0
  793. data/ext/gyp/test/mac/libraries/subdir/README.txt +1 -0
  794. data/ext/gyp/test/mac/libraries/subdir/hello.cc +10 -0
  795. data/ext/gyp/test/mac/libraries/subdir/mylib.c +7 -0
  796. data/ext/gyp/test/mac/libraries/subdir/test.gyp +65 -0
  797. data/ext/gyp/test/mac/libtool-zero/mylib.c +7 -0
  798. data/ext/gyp/test/mac/libtool-zero/test.gyp +18 -0
  799. data/ext/gyp/test/mac/loadable-module/Info.plist +26 -0
  800. data/ext/gyp/test/mac/loadable-module/module.c +11 -0
  801. data/ext/gyp/test/mac/loadable-module/test.gyp +18 -0
  802. data/ext/gyp/test/mac/loadable-module-bundle-product-extension/src.cc +7 -0
  803. data/ext/gyp/test/mac/loadable-module-bundle-product-extension/test.gyp +24 -0
  804. data/ext/gyp/test/mac/lto/asmfile.S +2 -0
  805. data/ext/gyp/test/mac/lto/ccfile.cc +1 -0
  806. data/ext/gyp/test/mac/lto/cfile.c +1 -0
  807. data/ext/gyp/test/mac/lto/mfile.m +1 -0
  808. data/ext/gyp/test/mac/lto/mmfile.mm +1 -0
  809. data/ext/gyp/test/mac/lto/test.gyp +35 -0
  810. data/ext/gyp/test/mac/missing-cfbundlesignature/Info.plist +10 -0
  811. data/ext/gyp/test/mac/missing-cfbundlesignature/Other-Info.plist +12 -0
  812. data/ext/gyp/test/mac/missing-cfbundlesignature/Third-Info.plist +12 -0
  813. data/ext/gyp/test/mac/missing-cfbundlesignature/file.c +1 -0
  814. data/ext/gyp/test/mac/missing-cfbundlesignature/test.gyp +34 -0
  815. data/ext/gyp/test/mac/non-strs-flattened-to-env/Info.plist +15 -0
  816. data/ext/gyp/test/mac/non-strs-flattened-to-env/main.c +7 -0
  817. data/ext/gyp/test/mac/non-strs-flattened-to-env/test.gyp +27 -0
  818. data/ext/gyp/test/mac/objc-arc/c-file.c +5 -0
  819. data/ext/gyp/test/mac/objc-arc/cc-file.cc +5 -0
  820. data/ext/gyp/test/mac/objc-arc/m-file-arc-weak.m +9 -0
  821. data/ext/gyp/test/mac/objc-arc/m-file-no-arc.m +9 -0
  822. data/ext/gyp/test/mac/objc-arc/m-file.m +9 -0
  823. data/ext/gyp/test/mac/objc-arc/mm-file-arc-weak.mm +9 -0
  824. data/ext/gyp/test/mac/objc-arc/mm-file-no-arc.mm +9 -0
  825. data/ext/gyp/test/mac/objc-arc/mm-file.mm +9 -0
  826. data/ext/gyp/test/mac/objc-arc/test.gyp +53 -0
  827. data/ext/gyp/test/mac/objc-gc/c-file.c +1 -0
  828. data/ext/gyp/test/mac/objc-gc/cc-file.cc +1 -0
  829. data/ext/gyp/test/mac/objc-gc/main.m +6 -0
  830. data/ext/gyp/test/mac/objc-gc/needs-gc-mm.mm +1 -0
  831. data/ext/gyp/test/mac/objc-gc/needs-gc.m +1 -0
  832. data/ext/gyp/test/mac/objc-gc/test.gyp +102 -0
  833. data/ext/gyp/test/mac/postbuild-copy-bundle/Framework-Info.plist +30 -0
  834. data/ext/gyp/test/mac/postbuild-copy-bundle/TestApp-Info.plist +32 -0
  835. data/ext/gyp/test/mac/postbuild-copy-bundle/copied.txt +1 -0
  836. data/ext/gyp/test/mac/postbuild-copy-bundle/empty.c +0 -0
  837. data/ext/gyp/test/mac/postbuild-copy-bundle/main.c +4 -0
  838. data/ext/gyp/test/mac/postbuild-copy-bundle/postbuild-copy-framework.sh +9 -0
  839. data/ext/gyp/test/mac/postbuild-copy-bundle/resource_file.sb +1 -0
  840. data/ext/gyp/test/mac/postbuild-copy-bundle/test.gyp +49 -0
  841. data/ext/gyp/test/mac/postbuild-defaults/Info.plist +13 -0
  842. data/ext/gyp/test/mac/postbuild-defaults/main.c +7 -0
  843. data/ext/gyp/test/mac/postbuild-defaults/postbuild-defaults.sh +15 -0
  844. data/ext/gyp/test/mac/postbuild-defaults/test.gyp +26 -0
  845. data/ext/gyp/test/mac/postbuild-fail/file.c +6 -0
  846. data/ext/gyp/test/mac/postbuild-fail/postbuild-fail.sh +6 -0
  847. data/ext/gyp/test/mac/postbuild-fail/test.gyp +38 -0
  848. data/ext/gyp/test/mac/postbuild-fail/touch-dynamic.sh +7 -0
  849. data/ext/gyp/test/mac/postbuild-fail/touch-static.sh +7 -0
  850. data/ext/gyp/test/mac/postbuild-multiple-configurations/main.c +4 -0
  851. data/ext/gyp/test/mac/postbuild-multiple-configurations/postbuild-touch-file.sh +7 -0
  852. data/ext/gyp/test/mac/postbuild-multiple-configurations/test.gyp +26 -0
  853. data/ext/gyp/test/mac/postbuild-static-library/empty.c +4 -0
  854. data/ext/gyp/test/mac/postbuild-static-library/postbuild-touch-file.sh +7 -0
  855. data/ext/gyp/test/mac/postbuild-static-library/test.gyp +34 -0
  856. data/ext/gyp/test/mac/postbuilds/copy.sh +3 -0
  857. data/ext/gyp/test/mac/postbuilds/file.c +4 -0
  858. data/ext/gyp/test/mac/postbuilds/file_g.c +4 -0
  859. data/ext/gyp/test/mac/postbuilds/file_h.c +4 -0
  860. data/ext/gyp/test/mac/postbuilds/script/shared_library_postbuild.sh +23 -0
  861. data/ext/gyp/test/mac/postbuilds/script/static_library_postbuild.sh +23 -0
  862. data/ext/gyp/test/mac/postbuilds/subdirectory/copied_file.txt +1 -0
  863. data/ext/gyp/test/mac/postbuilds/subdirectory/nested_target.gyp +53 -0
  864. data/ext/gyp/test/mac/postbuilds/test.gyp +93 -0
  865. data/ext/gyp/test/mac/prefixheader/file.c +1 -0
  866. data/ext/gyp/test/mac/prefixheader/file.cc +1 -0
  867. data/ext/gyp/test/mac/prefixheader/file.m +1 -0
  868. data/ext/gyp/test/mac/prefixheader/file.mm +1 -0
  869. data/ext/gyp/test/mac/prefixheader/header.h +1 -0
  870. data/ext/gyp/test/mac/prefixheader/test.gyp +82 -0
  871. data/ext/gyp/test/mac/rebuild/TestApp-Info.plist +32 -0
  872. data/ext/gyp/test/mac/rebuild/delay-touch.sh +6 -0
  873. data/ext/gyp/test/mac/rebuild/empty.c +0 -0
  874. data/ext/gyp/test/mac/rebuild/main.c +1 -0
  875. data/ext/gyp/test/mac/rebuild/test.gyp +56 -0
  876. data/ext/gyp/test/mac/rpath/file.c +1 -0
  877. data/ext/gyp/test/mac/rpath/main.c +1 -0
  878. data/ext/gyp/test/mac/rpath/test.gyp +48 -0
  879. data/ext/gyp/test/mac/sdkroot/file.cc +5 -0
  880. data/ext/gyp/test/mac/sdkroot/test.gyp +35 -0
  881. data/ext/gyp/test/mac/sdkroot/test_shorthand.sh +20 -0
  882. data/ext/gyp/test/mac/sourceless-module/empty.c +1 -0
  883. data/ext/gyp/test/mac/sourceless-module/empty.txt +2 -0
  884. data/ext/gyp/test/mac/sourceless-module/fun.c +1 -0
  885. data/ext/gyp/test/mac/sourceless-module/test.gyp +96 -0
  886. data/ext/gyp/test/mac/strip/file.c +22 -0
  887. data/ext/gyp/test/mac/strip/main.c +25 -0
  888. data/ext/gyp/test/mac/strip/strip.saves +5 -0
  889. data/ext/gyp/test/mac/strip/subdirectory/nested_file.c +1 -0
  890. data/ext/gyp/test/mac/strip/subdirectory/nested_strip.saves +5 -0
  891. data/ext/gyp/test/mac/strip/subdirectory/subdirectory.gyp +38 -0
  892. data/ext/gyp/test/mac/strip/subdirectory/test_reading_save_file_from_postbuild.sh +5 -0
  893. data/ext/gyp/test/mac/strip/test-defaults.gyp +51 -0
  894. data/ext/gyp/test/mac/strip/test.gyp +119 -0
  895. data/ext/gyp/test/mac/swift-library/Info.plist +28 -0
  896. data/ext/gyp/test/mac/swift-library/file.swift +9 -0
  897. data/ext/gyp/test/mac/swift-library/test.gyp +21 -0
  898. data/ext/gyp/test/mac/type_envvars/file.c +6 -0
  899. data/ext/gyp/test/mac/type_envvars/test.gyp +100 -0
  900. data/ext/gyp/test/mac/type_envvars/test_bundle_executable.sh +30 -0
  901. data/ext/gyp/test/mac/type_envvars/test_bundle_loadable_module.sh +35 -0
  902. data/ext/gyp/test/mac/type_envvars/test_bundle_shared_library.sh +38 -0
  903. data/ext/gyp/test/mac/type_envvars/test_check_sdkroot.sh +47 -0
  904. data/ext/gyp/test/mac/type_envvars/test_nonbundle_executable.sh +33 -0
  905. data/ext/gyp/test/mac/type_envvars/test_nonbundle_loadable_module.sh +31 -0
  906. data/ext/gyp/test/mac/type_envvars/test_nonbundle_none.sh +32 -0
  907. data/ext/gyp/test/mac/type_envvars/test_nonbundle_shared_library.sh +31 -0
  908. data/ext/gyp/test/mac/type_envvars/test_nonbundle_static_library.sh +31 -0
  909. data/ext/gyp/test/mac/unicode-settings/file.cc +2 -0
  910. data/ext/gyp/test/mac/unicode-settings/test.gyp +23 -0
  911. data/ext/gyp/test/mac/unicode-settings/test_bundle_display_name.sh +7 -0
  912. data/ext/gyp/test/mac/xcode-env-order/Info.plist +56 -0
  913. data/ext/gyp/test/mac/xcode-env-order/file.ext1 +0 -0
  914. data/ext/gyp/test/mac/xcode-env-order/file.ext2 +0 -0
  915. data/ext/gyp/test/mac/xcode-env-order/file.ext3 +0 -0
  916. data/ext/gyp/test/mac/xcode-env-order/main.c +7 -0
  917. data/ext/gyp/test/mac/xcode-env-order/test.gyp +121 -0
  918. data/ext/gyp/test/mac/xcode-gcc/aliasing.cc +13 -0
  919. data/ext/gyp/test/mac/xcode-gcc/test-clang.gyp +42 -0
  920. data/ext/gyp/test/mac/xcode-gcc/test.gyp +60 -0
  921. data/ext/gyp/test/mac/xcode-gcc/valid_c.c +8 -0
  922. data/ext/gyp/test/mac/xcode-gcc/valid_cc.cc +8 -0
  923. data/ext/gyp/test/mac/xcode-gcc/valid_m.m +8 -0
  924. data/ext/gyp/test/mac/xcode-gcc/valid_mm.mm +8 -0
  925. data/ext/gyp/test/mac/xcode-gcc/warn_about_invalid_offsetof_macro.cc +15 -0
  926. data/ext/gyp/test/mac/xcode-gcc/warn_about_missing_newline.c +8 -0
  927. data/ext/gyp/test/mac/xcode-support-actions/source.c +0 -0
  928. data/ext/gyp/test/mac/xcode-support-actions/test.gyp +26 -0
  929. data/ext/gyp/test/mac/xctest/MyClass.h +8 -0
  930. data/ext/gyp/test/mac/xctest/MyClass.m +8 -0
  931. data/ext/gyp/test/mac/xctest/TestCase.m +16 -0
  932. data/ext/gyp/test/mac/xctest/resource.txt +1 -0
  933. data/ext/gyp/test/mac/xctest/test.gyp +47 -0
  934. data/ext/gyp/test/mac/xctest/test.xcodeproj/xcshareddata/xcschemes/classes.xcscheme +69 -0
  935. data/ext/gyp/test/mac/xcuitest/Info.plist +28 -0
  936. data/ext/gyp/test/mac/xcuitest/MyAppDelegate.h +8 -0
  937. data/ext/gyp/test/mac/xcuitest/MyAppDelegate.m +19 -0
  938. data/ext/gyp/test/mac/xcuitest/TestCase.m +15 -0
  939. data/ext/gyp/test/mac/xcuitest/main.m +15 -0
  940. data/ext/gyp/test/mac/xcuitest/resource.txt +1 -0
  941. data/ext/gyp/test/mac/xcuitest/test.gyp +69 -0
  942. data/ext/gyp/test/make/dependencies.gyp +15 -0
  943. data/ext/gyp/test/make/gyptest-dependencies.py +26 -0
  944. data/ext/gyp/test/make/gyptest-noload.py +57 -0
  945. data/ext/gyp/test/make/main.cc +12 -0
  946. data/ext/gyp/test/make/main.h +0 -0
  947. data/ext/gyp/test/make/noload/all.gyp +18 -0
  948. data/ext/gyp/test/make/noload/lib/shared.c +3 -0
  949. data/ext/gyp/test/make/noload/lib/shared.gyp +16 -0
  950. data/ext/gyp/test/make/noload/lib/shared.h +1 -0
  951. data/ext/gyp/test/make/noload/main.c +9 -0
  952. data/ext/gyp/test/make_global_settings/ar/gyptest-make_global_settings_ar.py +126 -0
  953. data/ext/gyp/test/make_global_settings/ar/make_global_settings_ar.gyp +29 -0
  954. data/ext/gyp/test/make_global_settings/basics/gyptest-make_global_settings.py +51 -0
  955. data/ext/gyp/test/make_global_settings/basics/make_global_settings.gyp +17 -0
  956. data/ext/gyp/test/make_global_settings/env-wrapper/gyptest-wrapper.py +51 -0
  957. data/ext/gyp/test/make_global_settings/env-wrapper/wrapper.gyp +17 -0
  958. data/ext/gyp/test/make_global_settings/full-toolchain/bar.cc +1 -0
  959. data/ext/gyp/test/make_global_settings/full-toolchain/foo.c +1 -0
  960. data/ext/gyp/test/make_global_settings/full-toolchain/gyptest-make_global_settings.py +53 -0
  961. data/ext/gyp/test/make_global_settings/full-toolchain/make_global_settings.gyp +22 -0
  962. data/ext/gyp/test/make_global_settings/full-toolchain/my_nm.py +9 -0
  963. data/ext/gyp/test/make_global_settings/full-toolchain/my_readelf.py +9 -0
  964. data/ext/gyp/test/make_global_settings/ld/gyptest-make_global_settings_ld.py +130 -0
  965. data/ext/gyp/test/make_global_settings/ld/make_global_settings_ld.gyp +29 -0
  966. data/ext/gyp/test/make_global_settings/wrapper/gyptest-wrapper.py +52 -0
  967. data/ext/gyp/test/make_global_settings/wrapper/wrapper.gyp +21 -0
  968. data/ext/gyp/test/many-actions/file0 +0 -0
  969. data/ext/gyp/test/many-actions/file1 +0 -0
  970. data/ext/gyp/test/many-actions/file2 +0 -0
  971. data/ext/gyp/test/many-actions/file3 +0 -0
  972. data/ext/gyp/test/many-actions/file4 +0 -0
  973. data/ext/gyp/test/many-actions/gyptest-many-actions-unsorted.py +43 -0
  974. data/ext/gyp/test/many-actions/gyptest-many-actions.py +29 -0
  975. data/ext/gyp/test/many-actions/many-actions-unsorted.gyp +154 -0
  976. data/ext/gyp/test/many-actions/many-actions.gyp +1817 -0
  977. data/ext/gyp/test/module/gyptest-default.py +28 -0
  978. data/ext/gyp/test/module/src/lib1.c +10 -0
  979. data/ext/gyp/test/module/src/lib2.c +10 -0
  980. data/ext/gyp/test/module/src/module.gyp +53 -0
  981. data/ext/gyp/test/module/src/program.c +111 -0
  982. data/ext/gyp/test/msvs/buildevents/buildevents.gyp +14 -0
  983. data/ext/gyp/test/msvs/buildevents/gyptest-msbuild-supports-prepostbuild.py +24 -0
  984. data/ext/gyp/test/msvs/buildevents/gyptest-ninja-warnings.py +29 -0
  985. data/ext/gyp/test/msvs/buildevents/main.cc +5 -0
  986. data/ext/gyp/test/msvs/config_attrs/gyptest-config_attrs.py +41 -0
  987. data/ext/gyp/test/msvs/config_attrs/hello.c +11 -0
  988. data/ext/gyp/test/msvs/config_attrs/hello.gyp +21 -0
  989. data/ext/gyp/test/msvs/express/base/base.gyp +22 -0
  990. data/ext/gyp/test/msvs/express/express.gyp +19 -0
  991. data/ext/gyp/test/msvs/express/gyptest-express.py +29 -0
  992. data/ext/gyp/test/msvs/external_builder/external.gyp +68 -0
  993. data/ext/gyp/test/msvs/external_builder/external_builder.py +9 -0
  994. data/ext/gyp/test/msvs/external_builder/gyptest-all.py +59 -0
  995. data/ext/gyp/test/msvs/external_builder/hello.cpp +10 -0
  996. data/ext/gyp/test/msvs/external_builder/hello.z +6 -0
  997. data/ext/gyp/test/msvs/external_builder/msbuild_action.py +9 -0
  998. data/ext/gyp/test/msvs/external_builder/msbuild_rule.py +11 -0
  999. data/ext/gyp/test/msvs/filters/filters.gyp +47 -0
  1000. data/ext/gyp/test/msvs/filters/gyptest-filters-2008.py +68 -0
  1001. data/ext/gyp/test/msvs/filters/gyptest-filters-2010.py +57 -0
  1002. data/ext/gyp/test/msvs/list_excluded/gyptest-all.py +51 -0
  1003. data/ext/gyp/test/msvs/list_excluded/hello.cpp +10 -0
  1004. data/ext/gyp/test/msvs/list_excluded/hello_exclude.gyp +19 -0
  1005. data/ext/gyp/test/msvs/list_excluded/hello_mac.cpp +10 -0
  1006. data/ext/gyp/test/msvs/missing_sources/gyptest-missing.py +43 -0
  1007. data/ext/gyp/test/msvs/missing_sources/hello_missing.gyp +15 -0
  1008. data/ext/gyp/test/msvs/multiple_actions_error_handling/action_fail.py +7 -0
  1009. data/ext/gyp/test/msvs/multiple_actions_error_handling/action_succeed.py +7 -0
  1010. data/ext/gyp/test/msvs/multiple_actions_error_handling/actions.gyp +40 -0
  1011. data/ext/gyp/test/msvs/multiple_actions_error_handling/gyptest.py +26 -0
  1012. data/ext/gyp/test/msvs/props/AppName.props +14 -0
  1013. data/ext/gyp/test/msvs/props/AppName.vsprops +11 -0
  1014. data/ext/gyp/test/msvs/props/gyptest-props.py +22 -0
  1015. data/ext/gyp/test/msvs/props/hello.c +11 -0
  1016. data/ext/gyp/test/msvs/props/hello.gyp +22 -0
  1017. data/ext/gyp/test/msvs/rules_stdout_stderr/dummy.bar +5 -0
  1018. data/ext/gyp/test/msvs/rules_stdout_stderr/dummy.foo +5 -0
  1019. data/ext/gyp/test/msvs/rules_stdout_stderr/gyptest-rules-stdout-stderr.py +29 -0
  1020. data/ext/gyp/test/msvs/rules_stdout_stderr/rule_stderr.py +8 -0
  1021. data/ext/gyp/test/msvs/rules_stdout_stderr/rule_stdout.py +7 -0
  1022. data/ext/gyp/test/msvs/rules_stdout_stderr/rules-stdout-stderr.gyp +52 -0
  1023. data/ext/gyp/test/msvs/shared_output/common.gypi +17 -0
  1024. data/ext/gyp/test/msvs/shared_output/gyptest-shared_output.py +41 -0
  1025. data/ext/gyp/test/msvs/shared_output/hello.c +12 -0
  1026. data/ext/gyp/test/msvs/shared_output/hello.gyp +21 -0
  1027. data/ext/gyp/test/msvs/shared_output/there/there.c +12 -0
  1028. data/ext/gyp/test/msvs/shared_output/there/there.gyp +16 -0
  1029. data/ext/gyp/test/msvs/uldi2010/gyptest-all.py +20 -0
  1030. data/ext/gyp/test/msvs/uldi2010/hello.c +13 -0
  1031. data/ext/gyp/test/msvs/uldi2010/hello.gyp +26 -0
  1032. data/ext/gyp/test/msvs/uldi2010/hello2.c +10 -0
  1033. data/ext/gyp/test/multiple-targets/gyptest-all.py +30 -0
  1034. data/ext/gyp/test/multiple-targets/gyptest-default.py +30 -0
  1035. data/ext/gyp/test/multiple-targets/src/common.c +7 -0
  1036. data/ext/gyp/test/multiple-targets/src/multiple.gyp +24 -0
  1037. data/ext/gyp/test/multiple-targets/src/prog1.c +10 -0
  1038. data/ext/gyp/test/multiple-targets/src/prog2.c +10 -0
  1039. data/ext/gyp/test/ninja/action-rule-hash/gyptest-action-rule-hash.py +32 -0
  1040. data/ext/gyp/test/ninja/action-rule-hash/subdir/action-rule-hash.gyp +29 -0
  1041. data/ext/gyp/test/ninja/action-rule-hash/subdir/emit.py +13 -0
  1042. data/ext/gyp/test/ninja/action_dependencies/gyptest-action-dependencies.py +64 -0
  1043. data/ext/gyp/test/ninja/action_dependencies/src/a.c +10 -0
  1044. data/ext/gyp/test/ninja/action_dependencies/src/a.h +13 -0
  1045. data/ext/gyp/test/ninja/action_dependencies/src/action_dependencies.gyp +88 -0
  1046. data/ext/gyp/test/ninja/action_dependencies/src/b.c +18 -0
  1047. data/ext/gyp/test/ninja/action_dependencies/src/b.h +13 -0
  1048. data/ext/gyp/test/ninja/action_dependencies/src/c.c +10 -0
  1049. data/ext/gyp/test/ninja/action_dependencies/src/c.h +13 -0
  1050. data/ext/gyp/test/ninja/action_dependencies/src/emit.py +11 -0
  1051. data/ext/gyp/test/ninja/chained-dependency/chained-dependency.gyp +53 -0
  1052. data/ext/gyp/test/ninja/chained-dependency/chained.c +5 -0
  1053. data/ext/gyp/test/ninja/chained-dependency/gyptest-chained-dependency.py +30 -0
  1054. data/ext/gyp/test/ninja/empty-and-non-empty-duplicate-name/gyptest-empty-and-non-empty-duplicate-name.py +23 -0
  1055. data/ext/gyp/test/ninja/empty-and-non-empty-duplicate-name/subdir/included.gyp +19 -0
  1056. data/ext/gyp/test/ninja/empty-and-non-empty-duplicate-name/test.gyp +19 -0
  1057. data/ext/gyp/test/ninja/normalize-paths-win/gyptest-normalize-paths.py +46 -0
  1058. data/ext/gyp/test/ninja/normalize-paths-win/hello.cc +7 -0
  1059. data/ext/gyp/test/ninja/normalize-paths-win/normalize-paths.gyp +68 -0
  1060. data/ext/gyp/test/ninja/s-needs-no-depfiles/empty.s +1 -0
  1061. data/ext/gyp/test/ninja/s-needs-no-depfiles/gyptest-s-needs-no-depfiles.py +42 -0
  1062. data/ext/gyp/test/ninja/s-needs-no-depfiles/s-needs-no-depfiles.gyp +13 -0
  1063. data/ext/gyp/test/ninja/solibs_avoid_relinking/gyptest-solibs-avoid-relinking.py +48 -0
  1064. data/ext/gyp/test/ninja/solibs_avoid_relinking/main.cc +5 -0
  1065. data/ext/gyp/test/ninja/solibs_avoid_relinking/solib.cc +8 -0
  1066. data/ext/gyp/test/ninja/solibs_avoid_relinking/solibs_avoid_relinking.gyp +38 -0
  1067. data/ext/gyp/test/ninja/use-console/foo.bar +5 -0
  1068. data/ext/gyp/test/ninja/use-console/gyptest-use-console.py +29 -0
  1069. data/ext/gyp/test/ninja/use-console/use-console.gyp +60 -0
  1070. data/ext/gyp/test/ninja/use-custom-environment-files/gyptest-use-custom-environment-files.py +28 -0
  1071. data/ext/gyp/test/ninja/use-custom-environment-files/use-custom-environment-files.cc +7 -0
  1072. data/ext/gyp/test/ninja/use-custom-environment-files/use-custom-environment-files.gyp +15 -0
  1073. data/ext/gyp/test/no-cpp/gyptest-no-cpp.py +53 -0
  1074. data/ext/gyp/test/no-cpp/src/call-f-main.c +2 -0
  1075. data/ext/gyp/test/no-cpp/src/empty-main.c +1 -0
  1076. data/ext/gyp/test/no-cpp/src/f.cc +3 -0
  1077. data/ext/gyp/test/no-cpp/src/test.gyp +25 -0
  1078. data/ext/gyp/test/no-output/gyptest-no-output.py +21 -0
  1079. data/ext/gyp/test/no-output/src/nooutput.gyp +17 -0
  1080. data/ext/gyp/test/product/gyptest-product.py +43 -0
  1081. data/ext/gyp/test/product/hello.c +15 -0
  1082. data/ext/gyp/test/product/product.gyp +128 -0
  1083. data/ext/gyp/test/prune_targets/gyptest-prune-targets.py +66 -0
  1084. data/ext/gyp/test/prune_targets/lib1.cc +6 -0
  1085. data/ext/gyp/test/prune_targets/lib2.cc +6 -0
  1086. data/ext/gyp/test/prune_targets/lib3.cc +6 -0
  1087. data/ext/gyp/test/prune_targets/lib_indirect.cc +6 -0
  1088. data/ext/gyp/test/prune_targets/program.cc +7 -0
  1089. data/ext/gyp/test/prune_targets/test1.gyp +26 -0
  1090. data/ext/gyp/test/prune_targets/test2.gyp +30 -0
  1091. data/ext/gyp/test/relative/foo/a/a.cc +9 -0
  1092. data/ext/gyp/test/relative/foo/a/a.gyp +13 -0
  1093. data/ext/gyp/test/relative/foo/a/c/c.cc +9 -0
  1094. data/ext/gyp/test/relative/foo/a/c/c.gyp +12 -0
  1095. data/ext/gyp/test/relative/foo/b/b.cc +9 -0
  1096. data/ext/gyp/test/relative/foo/b/b.gyp +9 -0
  1097. data/ext/gyp/test/relative/gyptest-default.py +25 -0
  1098. data/ext/gyp/test/rename/filecase/file.c +1 -0
  1099. data/ext/gyp/test/rename/filecase/test-casesensitive.gyp +15 -0
  1100. data/ext/gyp/test/rename/filecase/test.gyp +14 -0
  1101. data/ext/gyp/test/rename/gyptest-filecase.py +35 -0
  1102. data/ext/gyp/test/restat/gyptest-restat.py +31 -0
  1103. data/ext/gyp/test/restat/src/create_intermediate.py +17 -0
  1104. data/ext/gyp/test/restat/src/restat.gyp +50 -0
  1105. data/ext/gyp/test/restat/src/touch.py +16 -0
  1106. data/ext/gyp/test/rules/gyptest-all.py +84 -0
  1107. data/ext/gyp/test/rules/gyptest-default.py +70 -0
  1108. data/ext/gyp/test/rules/gyptest-input-root.py +26 -0
  1109. data/ext/gyp/test/rules/gyptest-special-variables.py +18 -0
  1110. data/ext/gyp/test/rules/src/actions.gyp +23 -0
  1111. data/ext/gyp/test/rules/src/an_asm.S +6 -0
  1112. data/ext/gyp/test/rules/src/as.bat +7 -0
  1113. data/ext/gyp/test/rules/src/copy-file.py +11 -0
  1114. data/ext/gyp/test/rules/src/external/external.gyp +66 -0
  1115. data/ext/gyp/test/rules/src/external/file1.in +1 -0
  1116. data/ext/gyp/test/rules/src/external/file2.in +1 -0
  1117. data/ext/gyp/test/rules/src/input-root.gyp +24 -0
  1118. data/ext/gyp/test/rules/src/noaction/file1.in +1 -0
  1119. data/ext/gyp/test/rules/src/noaction/no_action_with_rules_fails.gyp +37 -0
  1120. data/ext/gyp/test/rules/src/rule.py +17 -0
  1121. data/ext/gyp/test/rules/src/somefile.ext +0 -0
  1122. data/ext/gyp/test/rules/src/special-variables.gyp +34 -0
  1123. data/ext/gyp/test/rules/src/subdir1/executable.gyp +37 -0
  1124. data/ext/gyp/test/rules/src/subdir1/function1.in +6 -0
  1125. data/ext/gyp/test/rules/src/subdir1/function2.in +6 -0
  1126. data/ext/gyp/test/rules/src/subdir1/program.c +12 -0
  1127. data/ext/gyp/test/rules/src/subdir2/both_rule_and_action_input.gyp +50 -0
  1128. data/ext/gyp/test/rules/src/subdir2/file1.in +1 -0
  1129. data/ext/gyp/test/rules/src/subdir2/file2.in +1 -0
  1130. data/ext/gyp/test/rules/src/subdir2/never_used.gyp +31 -0
  1131. data/ext/gyp/test/rules/src/subdir2/no_action.gyp +38 -0
  1132. data/ext/gyp/test/rules/src/subdir2/no_inputs.gyp +32 -0
  1133. data/ext/gyp/test/rules/src/subdir2/none.gyp +33 -0
  1134. data/ext/gyp/test/rules/src/subdir2/program.c +12 -0
  1135. data/ext/gyp/test/rules/src/subdir3/executable2.gyp +37 -0
  1136. data/ext/gyp/test/rules/src/subdir3/function3.in +6 -0
  1137. data/ext/gyp/test/rules/src/subdir3/program.c +10 -0
  1138. data/ext/gyp/test/rules/src/subdir4/asm-function.assem +10 -0
  1139. data/ext/gyp/test/rules/src/subdir4/build-asm.gyp +49 -0
  1140. data/ext/gyp/test/rules/src/subdir4/program.c +19 -0
  1141. data/ext/gyp/test/rules-dirname/gyptest-dirname.py +57 -0
  1142. data/ext/gyp/test/rules-dirname/src/actions.gyp +15 -0
  1143. data/ext/gyp/test/rules-dirname/src/copy-file.py +11 -0
  1144. data/ext/gyp/test/rules-dirname/src/subdir/a/b/c.gencc +8 -0
  1145. data/ext/gyp/test/rules-dirname/src/subdir/a/b/c.printvars +1 -0
  1146. data/ext/gyp/test/rules-dirname/src/subdir/foo/bar/baz.gencc +8 -0
  1147. data/ext/gyp/test/rules-dirname/src/subdir/foo/bar/baz.printvars +1 -0
  1148. data/ext/gyp/test/rules-dirname/src/subdir/input-rule-dirname.gyp +140 -0
  1149. data/ext/gyp/test/rules-dirname/src/subdir/main.cc +14 -0
  1150. data/ext/gyp/test/rules-dirname/src/subdir/nodir.gencc +8 -0
  1151. data/ext/gyp/test/rules-dirname/src/subdir/printvars.py +14 -0
  1152. data/ext/gyp/test/rules-rebuild/gyptest-all.py +70 -0
  1153. data/ext/gyp/test/rules-rebuild/gyptest-default.py +91 -0
  1154. data/ext/gyp/test/rules-rebuild/src/main.c +12 -0
  1155. data/ext/gyp/test/rules-rebuild/src/make-sources.py +19 -0
  1156. data/ext/gyp/test/rules-rebuild/src/prog1.in +7 -0
  1157. data/ext/gyp/test/rules-rebuild/src/prog2.in +7 -0
  1158. data/ext/gyp/test/rules-rebuild/src/same_target.gyp +31 -0
  1159. data/ext/gyp/test/rules-use-built-dependencies/gyptest-use-built-dependencies.py +23 -0
  1160. data/ext/gyp/test/rules-use-built-dependencies/src/main.cc +17 -0
  1161. data/ext/gyp/test/rules-use-built-dependencies/src/use-built-dependencies-rule.gyp +42 -0
  1162. data/ext/gyp/test/rules-variables/gyptest-rules-variables.py +35 -0
  1163. data/ext/gyp/test/rules-variables/src/input_ext.c +9 -0
  1164. data/ext/gyp/test/rules-variables/src/input_name/test.c +9 -0
  1165. data/ext/gyp/test/rules-variables/src/input_path/subdir/test.c +9 -0
  1166. data/ext/gyp/test/rules-variables/src/subdir/input_dirname.c +9 -0
  1167. data/ext/gyp/test/rules-variables/src/subdir/test.c +18 -0
  1168. data/ext/gyp/test/rules-variables/src/test.input_root.c +9 -0
  1169. data/ext/gyp/test/rules-variables/src/variables.gyp +40 -0
  1170. data/ext/gyp/test/same-gyp-name/gyptest-all.py +38 -0
  1171. data/ext/gyp/test/same-gyp-name/gyptest-default.py +38 -0
  1172. data/ext/gyp/test/same-gyp-name/gyptest-library.py +20 -0
  1173. data/ext/gyp/test/same-gyp-name/library/one/sub.gyp +11 -0
  1174. data/ext/gyp/test/same-gyp-name/library/test.gyp +15 -0
  1175. data/ext/gyp/test/same-gyp-name/library/two/sub.gyp +11 -0
  1176. data/ext/gyp/test/same-gyp-name/src/all.gyp +16 -0
  1177. data/ext/gyp/test/same-gyp-name/src/subdir1/executable.gyp +15 -0
  1178. data/ext/gyp/test/same-gyp-name/src/subdir1/main1.cc +6 -0
  1179. data/ext/gyp/test/same-gyp-name/src/subdir2/executable.gyp +15 -0
  1180. data/ext/gyp/test/same-gyp-name/src/subdir2/main2.cc +6 -0
  1181. data/ext/gyp/test/same-rule-output-file-name/gyptest-all.py +23 -0
  1182. data/ext/gyp/test/same-rule-output-file-name/src/subdir1/subdir1.gyp +30 -0
  1183. data/ext/gyp/test/same-rule-output-file-name/src/subdir2/subdir2.gyp +30 -0
  1184. data/ext/gyp/test/same-rule-output-file-name/src/subdirs.gyp +16 -0
  1185. data/ext/gyp/test/same-rule-output-file-name/src/touch.py +11 -0
  1186. data/ext/gyp/test/same-source-file-name/gyptest-all.py +34 -0
  1187. data/ext/gyp/test/same-source-file-name/gyptest-default.py +34 -0
  1188. data/ext/gyp/test/same-source-file-name/gyptest-pass-executable.py +33 -0
  1189. data/ext/gyp/test/same-source-file-name/gyptest-pass-shared.py +18 -0
  1190. data/ext/gyp/test/same-source-file-name/gyptest-static.py +34 -0
  1191. data/ext/gyp/test/same-source-file-name/src/all.gyp +30 -0
  1192. data/ext/gyp/test/same-source-file-name/src/double-executable.gyp +21 -0
  1193. data/ext/gyp/test/same-source-file-name/src/double-shared.gyp +27 -0
  1194. data/ext/gyp/test/same-source-file-name/src/double-static.gyp +22 -0
  1195. data/ext/gyp/test/same-source-file-name/src/func.c +6 -0
  1196. data/ext/gyp/test/same-source-file-name/src/prog1.c +16 -0
  1197. data/ext/gyp/test/same-source-file-name/src/prog2.c +16 -0
  1198. data/ext/gyp/test/same-source-file-name/src/prog3.c +18 -0
  1199. data/ext/gyp/test/same-source-file-name/src/subdir1/func.c +6 -0
  1200. data/ext/gyp/test/same-source-file-name/src/subdir2/func.c +6 -0
  1201. data/ext/gyp/test/same-target-name/gyptest-same-target-name.py +18 -0
  1202. data/ext/gyp/test/same-target-name/src/all.gyp +16 -0
  1203. data/ext/gyp/test/same-target-name/src/executable1.gyp +15 -0
  1204. data/ext/gyp/test/same-target-name/src/executable2.gyp +15 -0
  1205. data/ext/gyp/test/same-target-name-different-directory/gyptest-all.py +41 -0
  1206. data/ext/gyp/test/same-target-name-different-directory/src/subdir1/subdir1.gyp +66 -0
  1207. data/ext/gyp/test/same-target-name-different-directory/src/subdir2/subdir2.gyp +66 -0
  1208. data/ext/gyp/test/same-target-name-different-directory/src/subdirs.gyp +16 -0
  1209. data/ext/gyp/test/same-target-name-different-directory/src/touch.py +11 -0
  1210. data/ext/gyp/test/sanitize-rule-names/blah.S +0 -0
  1211. data/ext/gyp/test/sanitize-rule-names/gyptest-sanitize-rule-names.py +17 -0
  1212. data/ext/gyp/test/sanitize-rule-names/hello.cc +7 -0
  1213. data/ext/gyp/test/sanitize-rule-names/sanitize-rule-names.gyp +27 -0
  1214. data/ext/gyp/test/sanitize-rule-names/script.py +10 -0
  1215. data/ext/gyp/test/self-dependency/common.gypi +13 -0
  1216. data/ext/gyp/test/self-dependency/dep.gyp +23 -0
  1217. data/ext/gyp/test/self-dependency/gyptest-self-dependency.py +19 -0
  1218. data/ext/gyp/test/self-dependency/self_dependency.gyp +15 -0
  1219. data/ext/gyp/test/sibling/gyptest-all.py +42 -0
  1220. data/ext/gyp/test/sibling/gyptest-relocate.py +44 -0
  1221. data/ext/gyp/test/sibling/src/build/all.gyp +16 -0
  1222. data/ext/gyp/test/sibling/src/prog1/prog1.c +7 -0
  1223. data/ext/gyp/test/sibling/src/prog1/prog1.gyp +15 -0
  1224. data/ext/gyp/test/sibling/src/prog2/prog2.c +7 -0
  1225. data/ext/gyp/test/sibling/src/prog2/prog2.gyp +15 -0
  1226. data/ext/gyp/test/small/gyptest-small.py +56 -0
  1227. data/ext/gyp/test/standalone/gyptest-standalone.py +35 -0
  1228. data/ext/gyp/test/standalone/standalone.gyp +12 -0
  1229. data/ext/gyp/test/standalone-static-library/gyptest-standalone-static-library.py +50 -0
  1230. data/ext/gyp/test/standalone-static-library/invalid.gyp +16 -0
  1231. data/ext/gyp/test/standalone-static-library/mylib.c +7 -0
  1232. data/ext/gyp/test/standalone-static-library/mylib.gyp +26 -0
  1233. data/ext/gyp/test/standalone-static-library/prog.c +7 -0
  1234. data/ext/gyp/test/subdirectory/gyptest-SYMROOT-all.py +36 -0
  1235. data/ext/gyp/test/subdirectory/gyptest-SYMROOT-default.py +37 -0
  1236. data/ext/gyp/test/subdirectory/gyptest-subdir-all.py +34 -0
  1237. data/ext/gyp/test/subdirectory/gyptest-subdir-default.py +34 -0
  1238. data/ext/gyp/test/subdirectory/gyptest-subdir2-deep.py +25 -0
  1239. data/ext/gyp/test/subdirectory/gyptest-top-all.py +43 -0
  1240. data/ext/gyp/test/subdirectory/gyptest-top-default.py +43 -0
  1241. data/ext/gyp/test/subdirectory/src/prog1.c +7 -0
  1242. data/ext/gyp/test/subdirectory/src/prog1.gyp +21 -0
  1243. data/ext/gyp/test/subdirectory/src/subdir/prog2.c +7 -0
  1244. data/ext/gyp/test/subdirectory/src/subdir/prog2.gyp +18 -0
  1245. data/ext/gyp/test/subdirectory/src/subdir/subdir2/prog3.c +7 -0
  1246. data/ext/gyp/test/subdirectory/src/subdir/subdir2/prog3.gyp +18 -0
  1247. data/ext/gyp/test/subdirectory/src/symroot.gypi +16 -0
  1248. data/ext/gyp/test/symlinks/gyptest-symlinks.py +66 -0
  1249. data/ext/gyp/test/symlinks/hello.c +12 -0
  1250. data/ext/gyp/test/symlinks/hello.gyp +15 -0
  1251. data/ext/gyp/test/target/gyptest-target.py +37 -0
  1252. data/ext/gyp/test/target/hello.c +7 -0
  1253. data/ext/gyp/test/target/target.gyp +24 -0
  1254. data/ext/gyp/test/toolsets/gyptest-toolsets.py +31 -0
  1255. data/ext/gyp/test/toolsets/main.cc +13 -0
  1256. data/ext/gyp/test/toolsets/toolsets.cc +11 -0
  1257. data/ext/gyp/test/toolsets/toolsets.gyp +62 -0
  1258. data/ext/gyp/test/toolsets/toolsets_shared.cc +11 -0
  1259. data/ext/gyp/test/toplevel-dir/gyptest-toplevel-dir.py +31 -0
  1260. data/ext/gyp/test/toplevel-dir/src/sub1/main.gyp +18 -0
  1261. data/ext/gyp/test/toplevel-dir/src/sub1/prog1.c +7 -0
  1262. data/ext/gyp/test/toplevel-dir/src/sub2/prog2.c +7 -0
  1263. data/ext/gyp/test/toplevel-dir/src/sub2/prog2.gyp +15 -0
  1264. data/ext/gyp/test/variables/commands/commands-repeated.gyp +128 -0
  1265. data/ext/gyp/test/variables/commands/commands-repeated.gyp.stdout +136 -0
  1266. data/ext/gyp/test/variables/commands/commands-repeated.gypd.golden +77 -0
  1267. data/ext/gyp/test/variables/commands/commands.gyp +91 -0
  1268. data/ext/gyp/test/variables/commands/commands.gyp.ignore-env.stdout +96 -0
  1269. data/ext/gyp/test/variables/commands/commands.gyp.stdout +96 -0
  1270. data/ext/gyp/test/variables/commands/commands.gypd.golden +66 -0
  1271. data/ext/gyp/test/variables/commands/commands.gypi +23 -0
  1272. data/ext/gyp/test/variables/commands/gyptest-commands-ignore-env.py +47 -0
  1273. data/ext/gyp/test/variables/commands/gyptest-commands-repeated-multidir.py +23 -0
  1274. data/ext/gyp/test/variables/commands/gyptest-commands-repeated.py +40 -0
  1275. data/ext/gyp/test/variables/commands/gyptest-commands.py +40 -0
  1276. data/ext/gyp/test/variables/commands/repeated_multidir/dir_1/test_1.gyp +13 -0
  1277. data/ext/gyp/test/variables/commands/repeated_multidir/dir_2/test_2.gyp +13 -0
  1278. data/ext/gyp/test/variables/commands/repeated_multidir/main.gyp +16 -0
  1279. data/ext/gyp/test/variables/commands/repeated_multidir/print_cwd_basename.py +11 -0
  1280. data/ext/gyp/test/variables/commands/repeated_multidir/repeated_command_common.gypi +25 -0
  1281. data/ext/gyp/test/variables/commands/test.py +7 -0
  1282. data/ext/gyp/test/variables/commands/update_golden +11 -0
  1283. data/ext/gyp/test/variables/empty/empty.gyp +13 -0
  1284. data/ext/gyp/test/variables/empty/empty.gypi +9 -0
  1285. data/ext/gyp/test/variables/empty/gyptest-empty.py +19 -0
  1286. data/ext/gyp/test/variables/filelist/filelist.gyp.stdout +26 -0
  1287. data/ext/gyp/test/variables/filelist/filelist.gypd.golden +43 -0
  1288. data/ext/gyp/test/variables/filelist/gyptest-filelist-golden.py +53 -0
  1289. data/ext/gyp/test/variables/filelist/gyptest-filelist.py +29 -0
  1290. data/ext/gyp/test/variables/filelist/src/dummy.py +5 -0
  1291. data/ext/gyp/test/variables/filelist/src/filelist.gyp +93 -0
  1292. data/ext/gyp/test/variables/filelist/src/filelist2.gyp +40 -0
  1293. data/ext/gyp/test/variables/filelist/update_golden +8 -0
  1294. data/ext/gyp/test/variables/latelate/gyptest-latelate.py +25 -0
  1295. data/ext/gyp/test/variables/latelate/src/latelate.gyp +34 -0
  1296. data/ext/gyp/test/variables/latelate/src/program.cc +13 -0
  1297. data/ext/gyp/test/variables/variable-in-path/C1/hello.cc +7 -0
  1298. data/ext/gyp/test/variables/variable-in-path/gyptest-variable-in-path.py +23 -0
  1299. data/ext/gyp/test/variables/variable-in-path/variable-in-path.gyp +31 -0
  1300. data/ext/gyp/test/win/asm-files/asm-files.gyp +17 -0
  1301. data/ext/gyp/test/win/asm-files/b.s +0 -0
  1302. data/ext/gyp/test/win/asm-files/c.S +0 -0
  1303. data/ext/gyp/test/win/asm-files/hello.cc +7 -0
  1304. data/ext/gyp/test/win/batch-file-action/batch-file-action.gyp +21 -0
  1305. data/ext/gyp/test/win/batch-file-action/infile +1 -0
  1306. data/ext/gyp/test/win/batch-file-action/somecmd.bat +5 -0
  1307. data/ext/gyp/test/win/command-quote/a.S +0 -0
  1308. data/ext/gyp/test/win/command-quote/bat with spaces.bat +7 -0
  1309. data/ext/gyp/test/win/command-quote/command-quote.gyp +79 -0
  1310. data/ext/gyp/test/win/command-quote/go.bat +7 -0
  1311. data/ext/gyp/test/win/command-quote/subdir/and/another/in-subdir.gyp +27 -0
  1312. data/ext/gyp/test/win/compiler-flags/additional-include-dirs.cc +10 -0
  1313. data/ext/gyp/test/win/compiler-flags/additional-include-dirs.gyp +20 -0
  1314. data/ext/gyp/test/win/compiler-flags/additional-options.cc +10 -0
  1315. data/ext/gyp/test/win/compiler-flags/additional-options.gyp +31 -0
  1316. data/ext/gyp/test/win/compiler-flags/analysis.gyp +40 -0
  1317. data/ext/gyp/test/win/compiler-flags/buffer-security-check.gyp +51 -0
  1318. data/ext/gyp/test/win/compiler-flags/buffer-security.cc +12 -0
  1319. data/ext/gyp/test/win/compiler-flags/calling-convention-cdecl.def +6 -0
  1320. data/ext/gyp/test/win/compiler-flags/calling-convention-fastcall.def +6 -0
  1321. data/ext/gyp/test/win/compiler-flags/calling-convention-stdcall.def +6 -0
  1322. data/ext/gyp/test/win/compiler-flags/calling-convention-vectorcall.def +6 -0
  1323. data/ext/gyp/test/win/compiler-flags/calling-convention.cc +6 -0
  1324. data/ext/gyp/test/win/compiler-flags/calling-convention.gyp +66 -0
  1325. data/ext/gyp/test/win/compiler-flags/character-set-mbcs.cc +11 -0
  1326. data/ext/gyp/test/win/compiler-flags/character-set-unicode.cc +15 -0
  1327. data/ext/gyp/test/win/compiler-flags/character-set.gyp +35 -0
  1328. data/ext/gyp/test/win/compiler-flags/compile-as-managed.cc +9 -0
  1329. data/ext/gyp/test/win/compiler-flags/compile-as-managed.gyp +29 -0
  1330. data/ext/gyp/test/win/compiler-flags/compile-as-winrt.cc +12 -0
  1331. data/ext/gyp/test/win/compiler-flags/compile-as-winrt.gyp +20 -0
  1332. data/ext/gyp/test/win/compiler-flags/debug-format.gyp +48 -0
  1333. data/ext/gyp/test/win/compiler-flags/default-char-is-unsigned.cc +15 -0
  1334. data/ext/gyp/test/win/compiler-flags/default-char-is-unsigned.gyp +20 -0
  1335. data/ext/gyp/test/win/compiler-flags/disable-specific-warnings.cc +9 -0
  1336. data/ext/gyp/test/win/compiler-flags/disable-specific-warnings.gyp +29 -0
  1337. data/ext/gyp/test/win/compiler-flags/enable-enhanced-instruction-set.cc +28 -0
  1338. data/ext/gyp/test/win/compiler-flags/enable-enhanced-instruction-set.gyp +68 -0
  1339. data/ext/gyp/test/win/compiler-flags/exception-handling-on.cc +24 -0
  1340. data/ext/gyp/test/win/compiler-flags/exception-handling.gyp +46 -0
  1341. data/ext/gyp/test/win/compiler-flags/floating-point-model-fast.cc +19 -0
  1342. data/ext/gyp/test/win/compiler-flags/floating-point-model-precise.cc +19 -0
  1343. data/ext/gyp/test/win/compiler-flags/floating-point-model-strict.cc +19 -0
  1344. data/ext/gyp/test/win/compiler-flags/floating-point-model.gyp +43 -0
  1345. data/ext/gyp/test/win/compiler-flags/force-include-files-with-precompiled.cc +10 -0
  1346. data/ext/gyp/test/win/compiler-flags/force-include-files.cc +8 -0
  1347. data/ext/gyp/test/win/compiler-flags/force-include-files.gyp +36 -0
  1348. data/ext/gyp/test/win/compiler-flags/function-level-linking.cc +11 -0
  1349. data/ext/gyp/test/win/compiler-flags/function-level-linking.gyp +28 -0
  1350. data/ext/gyp/test/win/compiler-flags/hello.cc +7 -0
  1351. data/ext/gyp/test/win/compiler-flags/optimizations.gyp +207 -0
  1352. data/ext/gyp/test/win/compiler-flags/pdbname-override.gyp +26 -0
  1353. data/ext/gyp/test/win/compiler-flags/pdbname.cc +7 -0
  1354. data/ext/gyp/test/win/compiler-flags/pdbname.gyp +24 -0
  1355. data/ext/gyp/test/win/compiler-flags/precomp.cc +6 -0
  1356. data/ext/gyp/test/win/compiler-flags/rtti-on.cc +11 -0
  1357. data/ext/gyp/test/win/compiler-flags/rtti.gyp +37 -0
  1358. data/ext/gyp/test/win/compiler-flags/runtime-checks.cc +11 -0
  1359. data/ext/gyp/test/win/compiler-flags/runtime-checks.gyp +29 -0
  1360. data/ext/gyp/test/win/compiler-flags/runtime-library-md.cc +19 -0
  1361. data/ext/gyp/test/win/compiler-flags/runtime-library-mdd.cc +19 -0
  1362. data/ext/gyp/test/win/compiler-flags/runtime-library-mt.cc +19 -0
  1363. data/ext/gyp/test/win/compiler-flags/runtime-library-mtd.cc +19 -0
  1364. data/ext/gyp/test/win/compiler-flags/runtime-library.gyp +48 -0
  1365. data/ext/gyp/test/win/compiler-flags/subdir/header.h +0 -0
  1366. data/ext/gyp/test/win/compiler-flags/treat-wchar-t-as-built-in-type.gyp +33 -0
  1367. data/ext/gyp/test/win/compiler-flags/treat-wchar-t-as-built-in-type1.cc +11 -0
  1368. data/ext/gyp/test/win/compiler-flags/treat-wchar-t-as-built-in-type2.cc +11 -0
  1369. data/ext/gyp/test/win/compiler-flags/uninit.cc +13 -0
  1370. data/ext/gyp/test/win/compiler-flags/warning-as-error.cc +9 -0
  1371. data/ext/gyp/test/win/compiler-flags/warning-as-error.gyp +37 -0
  1372. data/ext/gyp/test/win/compiler-flags/warning-level.gyp +115 -0
  1373. data/ext/gyp/test/win/compiler-flags/warning-level1.cc +8 -0
  1374. data/ext/gyp/test/win/compiler-flags/warning-level2.cc +14 -0
  1375. data/ext/gyp/test/win/compiler-flags/warning-level3.cc +11 -0
  1376. data/ext/gyp/test/win/compiler-flags/warning-level4.cc +10 -0
  1377. data/ext/gyp/test/win/enable-winrt/dllmain.cc +30 -0
  1378. data/ext/gyp/test/win/enable-winrt/enable-winrt.gyp +39 -0
  1379. data/ext/gyp/test/win/generator-output-different-drive/gyptest-generator-output-different-drive.py +44 -0
  1380. data/ext/gyp/test/win/generator-output-different-drive/prog.c +10 -0
  1381. data/ext/gyp/test/win/generator-output-different-drive/prog.gyp +15 -0
  1382. data/ext/gyp/test/win/gyptest-asm-files.py +26 -0
  1383. data/ext/gyp/test/win/gyptest-cl-additional-include-dirs.py +22 -0
  1384. data/ext/gyp/test/win/gyptest-cl-additional-options.py +28 -0
  1385. data/ext/gyp/test/win/gyptest-cl-analysis.py +30 -0
  1386. data/ext/gyp/test/win/gyptest-cl-buffer-security-check.py +53 -0
  1387. data/ext/gyp/test/win/gyptest-cl-calling-convention.py +22 -0
  1388. data/ext/gyp/test/win/gyptest-cl-character-set.py +22 -0
  1389. data/ext/gyp/test/win/gyptest-cl-compile-as-managed.py +24 -0
  1390. data/ext/gyp/test/win/gyptest-cl-compile-as-winrt.py +20 -0
  1391. data/ext/gyp/test/win/gyptest-cl-debug-format.py +43 -0
  1392. data/ext/gyp/test/win/gyptest-cl-default-char-is-unsigned.py +22 -0
  1393. data/ext/gyp/test/win/gyptest-cl-disable-specific-warnings.py +32 -0
  1394. data/ext/gyp/test/win/gyptest-cl-enable-enhanced-instruction-set.py +49 -0
  1395. data/ext/gyp/test/win/gyptest-cl-exception-handling.py +33 -0
  1396. data/ext/gyp/test/win/gyptest-cl-floating-point-model.py +22 -0
  1397. data/ext/gyp/test/win/gyptest-cl-force-include-files.py +22 -0
  1398. data/ext/gyp/test/win/gyptest-cl-function-level-linking.py +54 -0
  1399. data/ext/gyp/test/win/gyptest-cl-optimizations.py +105 -0
  1400. data/ext/gyp/test/win/gyptest-cl-pdbname-override.py +27 -0
  1401. data/ext/gyp/test/win/gyptest-cl-pdbname.py +30 -0
  1402. data/ext/gyp/test/win/gyptest-cl-rtti.py +30 -0
  1403. data/ext/gyp/test/win/gyptest-cl-runtime-checks.py +30 -0
  1404. data/ext/gyp/test/win/gyptest-cl-runtime-library.py +22 -0
  1405. data/ext/gyp/test/win/gyptest-cl-treat-wchar-t-as-built-in-type.py +22 -0
  1406. data/ext/gyp/test/win/gyptest-cl-warning-as-error.py +30 -0
  1407. data/ext/gyp/test/win/gyptest-cl-warning-level.py +41 -0
  1408. data/ext/gyp/test/win/gyptest-command-quote.py +42 -0
  1409. data/ext/gyp/test/win/gyptest-crosscompile-ar.py +29 -0
  1410. data/ext/gyp/test/win/gyptest-lib-ltcg.py +22 -0
  1411. data/ext/gyp/test/win/gyptest-link-additional-deps.py +22 -0
  1412. data/ext/gyp/test/win/gyptest-link-additional-options.py +22 -0
  1413. data/ext/gyp/test/win/gyptest-link-aslr.py +35 -0
  1414. data/ext/gyp/test/win/gyptest-link-base-address.py +62 -0
  1415. data/ext/gyp/test/win/gyptest-link-debug-info.py +26 -0
  1416. data/ext/gyp/test/win/gyptest-link-default-libs.py +22 -0
  1417. data/ext/gyp/test/win/gyptest-link-deffile.py +43 -0
  1418. data/ext/gyp/test/win/gyptest-link-defrelink.py +56 -0
  1419. data/ext/gyp/test/win/gyptest-link-delay-load-dlls.py +35 -0
  1420. data/ext/gyp/test/win/gyptest-link-embed-manifest.py +100 -0
  1421. data/ext/gyp/test/win/gyptest-link-enable-uac.py +104 -0
  1422. data/ext/gyp/test/win/gyptest-link-enable-winrt-app-revision.py +43 -0
  1423. data/ext/gyp/test/win/gyptest-link-enable-winrt-target-platform-version.py +47 -0
  1424. data/ext/gyp/test/win/gyptest-link-enable-winrt.py +37 -0
  1425. data/ext/gyp/test/win/gyptest-link-entrypointsymbol.py +24 -0
  1426. data/ext/gyp/test/win/gyptest-link-fixed-base.py +40 -0
  1427. data/ext/gyp/test/win/gyptest-link-force-symbol-reference.py +26 -0
  1428. data/ext/gyp/test/win/gyptest-link-generate-manifest.py +127 -0
  1429. data/ext/gyp/test/win/gyptest-link-incremental.py +37 -0
  1430. data/ext/gyp/test/win/gyptest-link-large-address-aware.py +35 -0
  1431. data/ext/gyp/test/win/gyptest-link-large-pdb.py +76 -0
  1432. data/ext/gyp/test/win/gyptest-link-library-adjust.py +21 -0
  1433. data/ext/gyp/test/win/gyptest-link-library-directories.py +35 -0
  1434. data/ext/gyp/test/win/gyptest-link-ltcg.py +44 -0
  1435. data/ext/gyp/test/win/gyptest-link-mapfile.py +44 -0
  1436. data/ext/gyp/test/win/gyptest-link-nodefaultlib.py +24 -0
  1437. data/ext/gyp/test/win/gyptest-link-noimportlib.py +30 -0
  1438. data/ext/gyp/test/win/gyptest-link-nxcompat.py +37 -0
  1439. data/ext/gyp/test/win/gyptest-link-opt-icf.py +41 -0
  1440. data/ext/gyp/test/win/gyptest-link-opt-ref.py +40 -0
  1441. data/ext/gyp/test/win/gyptest-link-ordering.py +103 -0
  1442. data/ext/gyp/test/win/gyptest-link-outputfile.py +28 -0
  1443. data/ext/gyp/test/win/gyptest-link-pdb-no-output.py +25 -0
  1444. data/ext/gyp/test/win/gyptest-link-pdb-output.py +33 -0
  1445. data/ext/gyp/test/win/gyptest-link-pdb.py +35 -0
  1446. data/ext/gyp/test/win/gyptest-link-pgo.py +75 -0
  1447. data/ext/gyp/test/win/gyptest-link-profile.py +37 -0
  1448. data/ext/gyp/test/win/gyptest-link-restat-importlib.py +47 -0
  1449. data/ext/gyp/test/win/gyptest-link-safeseh.py +46 -0
  1450. data/ext/gyp/test/win/gyptest-link-shard.py +30 -0
  1451. data/ext/gyp/test/win/gyptest-link-stacksize.py +62 -0
  1452. data/ext/gyp/test/win/gyptest-link-subsystem.py +38 -0
  1453. data/ext/gyp/test/win/gyptest-link-target-machine.py +28 -0
  1454. data/ext/gyp/test/win/gyptest-link-tsaware.py +33 -0
  1455. data/ext/gyp/test/win/gyptest-link-uldi-depending-on-module.py +24 -0
  1456. data/ext/gyp/test/win/gyptest-link-uldi.py +28 -0
  1457. data/ext/gyp/test/win/gyptest-link-unsupported-manifest.py +27 -0
  1458. data/ext/gyp/test/win/gyptest-link-update-manifest.py +104 -0
  1459. data/ext/gyp/test/win/gyptest-link-warnings-as-errors.py +24 -0
  1460. data/ext/gyp/test/win/gyptest-long-command-line.py +23 -0
  1461. data/ext/gyp/test/win/gyptest-macro-projectname.py +24 -0
  1462. data/ext/gyp/test/win/gyptest-macro-targetext.py +26 -0
  1463. data/ext/gyp/test/win/gyptest-macro-targetfilename.py +37 -0
  1464. data/ext/gyp/test/win/gyptest-macro-targetname.py +29 -0
  1465. data/ext/gyp/test/win/gyptest-macro-targetpath.py +30 -0
  1466. data/ext/gyp/test/win/gyptest-macro-vcinstalldir.py +24 -0
  1467. data/ext/gyp/test/win/gyptest-macros-containing-gyp.py +21 -0
  1468. data/ext/gyp/test/win/gyptest-macros-in-inputs-and-outputs.py +27 -0
  1469. data/ext/gyp/test/win/gyptest-midl-excluded.py +22 -0
  1470. data/ext/gyp/test/win/gyptest-midl-includedirs.py +21 -0
  1471. data/ext/gyp/test/win/gyptest-midl-rules.py +28 -0
  1472. data/ext/gyp/test/win/gyptest-ml-safeseh.py +22 -0
  1473. data/ext/gyp/test/win/gyptest-quoting-commands.py +25 -0
  1474. data/ext/gyp/test/win/gyptest-rc-build.py +29 -0
  1475. data/ext/gyp/test/win/gyptest-sys.py +27 -0
  1476. data/ext/gyp/test/win/gyptest-system-include.py +21 -0
  1477. data/ext/gyp/test/win/idl-excluded/bad.idl +6 -0
  1478. data/ext/gyp/test/win/idl-excluded/copy-file.py +11 -0
  1479. data/ext/gyp/test/win/idl-excluded/idl-excluded.gyp +58 -0
  1480. data/ext/gyp/test/win/idl-excluded/program.cc +7 -0
  1481. data/ext/gyp/test/win/idl-includedirs/hello.cc +7 -0
  1482. data/ext/gyp/test/win/idl-includedirs/idl-includedirs.gyp +26 -0
  1483. data/ext/gyp/test/win/idl-includedirs/subdir/bar.idl +13 -0
  1484. data/ext/gyp/test/win/idl-includedirs/subdir/foo.idl +14 -0
  1485. data/ext/gyp/test/win/idl-rules/Window.idl +9 -0
  1486. data/ext/gyp/test/win/idl-rules/basic-idl.gyp +67 -0
  1487. data/ext/gyp/test/win/idl-rules/history_indexer.idl +17 -0
  1488. data/ext/gyp/test/win/idl-rules/history_indexer_user.cc +15 -0
  1489. data/ext/gyp/test/win/idl-rules/idl_compiler.py +17 -0
  1490. data/ext/gyp/test/win/importlib/dll_no_exports.cc +9 -0
  1491. data/ext/gyp/test/win/importlib/has-exports.cc +10 -0
  1492. data/ext/gyp/test/win/importlib/hello.cc +9 -0
  1493. data/ext/gyp/test/win/importlib/importlib.gyp +30 -0
  1494. data/ext/gyp/test/win/importlib/noimplib.gyp +16 -0
  1495. data/ext/gyp/test/win/large-pdb/dllmain.cc +9 -0
  1496. data/ext/gyp/test/win/large-pdb/large-pdb.gyp +98 -0
  1497. data/ext/gyp/test/win/large-pdb/main.cc +7 -0
  1498. data/ext/gyp/test/win/lib-crosscompile/answer.cc +9 -0
  1499. data/ext/gyp/test/win/lib-crosscompile/answer.h +5 -0
  1500. data/ext/gyp/test/win/lib-crosscompile/use_host_ar.gyp +17 -0
  1501. data/ext/gyp/test/win/lib-flags/answer.cc +9 -0
  1502. data/ext/gyp/test/win/lib-flags/answer.h +5 -0
  1503. data/ext/gyp/test/win/lib-flags/ltcg.gyp +21 -0
  1504. data/ext/gyp/test/win/linker-flags/a/x.cc +7 -0
  1505. data/ext/gyp/test/win/linker-flags/a/z.cc +7 -0
  1506. data/ext/gyp/test/win/linker-flags/additional-deps.cc +10 -0
  1507. data/ext/gyp/test/win/linker-flags/additional-deps.gyp +30 -0
  1508. data/ext/gyp/test/win/linker-flags/additional-options.gyp +29 -0
  1509. data/ext/gyp/test/win/linker-flags/aslr.gyp +35 -0
  1510. data/ext/gyp/test/win/linker-flags/b/y.cc +7 -0
  1511. data/ext/gyp/test/win/linker-flags/base-address.gyp +38 -0
  1512. data/ext/gyp/test/win/linker-flags/debug-info.gyp +28 -0
  1513. data/ext/gyp/test/win/linker-flags/deffile-multiple.gyp +17 -0
  1514. data/ext/gyp/test/win/linker-flags/deffile.cc +13 -0
  1515. data/ext/gyp/test/win/linker-flags/deffile.def +8 -0
  1516. data/ext/gyp/test/win/linker-flags/deffile.gyp +38 -0
  1517. data/ext/gyp/test/win/linker-flags/delay-load-dlls.gyp +35 -0
  1518. data/ext/gyp/test/win/linker-flags/delay-load.cc +10 -0
  1519. data/ext/gyp/test/win/linker-flags/embed-manifest.gyp +109 -0
  1520. data/ext/gyp/test/win/linker-flags/enable-uac.gyp +45 -0
  1521. data/ext/gyp/test/win/linker-flags/entrypointsymbol.cc +13 -0
  1522. data/ext/gyp/test/win/linker-flags/entrypointsymbol.gyp +28 -0
  1523. data/ext/gyp/test/win/linker-flags/extra.manifest +11 -0
  1524. data/ext/gyp/test/win/linker-flags/extra2.manifest +11 -0
  1525. data/ext/gyp/test/win/linker-flags/fixed-base.gyp +52 -0
  1526. data/ext/gyp/test/win/linker-flags/force-symbol-reference.gyp +39 -0
  1527. data/ext/gyp/test/win/linker-flags/generate-manifest.gyp +166 -0
  1528. data/ext/gyp/test/win/linker-flags/hello.cc +7 -0
  1529. data/ext/gyp/test/win/linker-flags/incremental.gyp +65 -0
  1530. data/ext/gyp/test/win/linker-flags/inline_test.cc +12 -0
  1531. data/ext/gyp/test/win/linker-flags/inline_test.h +5 -0
  1532. data/ext/gyp/test/win/linker-flags/inline_test_main.cc +15 -0
  1533. data/ext/gyp/test/win/linker-flags/large-address-aware.gyp +28 -0
  1534. data/ext/gyp/test/win/linker-flags/library-adjust.cc +10 -0
  1535. data/ext/gyp/test/win/linker-flags/library-adjust.gyp +16 -0
  1536. data/ext/gyp/test/win/linker-flags/library-directories-define.cc +7 -0
  1537. data/ext/gyp/test/win/linker-flags/library-directories-reference.cc +10 -0
  1538. data/ext/gyp/test/win/linker-flags/library-directories.gyp +42 -0
  1539. data/ext/gyp/test/win/linker-flags/link-ordering.gyp +95 -0
  1540. data/ext/gyp/test/win/linker-flags/link-warning.cc +10 -0
  1541. data/ext/gyp/test/win/linker-flags/ltcg.gyp +42 -0
  1542. data/ext/gyp/test/win/linker-flags/main-crt.c +8 -0
  1543. data/ext/gyp/test/win/linker-flags/manifest-in-comment.cc +13 -0
  1544. data/ext/gyp/test/win/linker-flags/mapfile.cc +12 -0
  1545. data/ext/gyp/test/win/linker-flags/mapfile.gyp +45 -0
  1546. data/ext/gyp/test/win/linker-flags/no-default-libs.cc +18 -0
  1547. data/ext/gyp/test/win/linker-flags/no-default-libs.gyp +13 -0
  1548. data/ext/gyp/test/win/linker-flags/nodefaultlib.cc +13 -0
  1549. data/ext/gyp/test/win/linker-flags/nodefaultlib.gyp +30 -0
  1550. data/ext/gyp/test/win/linker-flags/nxcompat.gyp +35 -0
  1551. data/ext/gyp/test/win/linker-flags/opt-icf.cc +29 -0
  1552. data/ext/gyp/test/win/linker-flags/opt-icf.gyp +63 -0
  1553. data/ext/gyp/test/win/linker-flags/opt-ref.cc +11 -0
  1554. data/ext/gyp/test/win/linker-flags/opt-ref.gyp +56 -0
  1555. data/ext/gyp/test/win/linker-flags/outputfile.gyp +58 -0
  1556. data/ext/gyp/test/win/linker-flags/pdb-output.gyp +49 -0
  1557. data/ext/gyp/test/win/linker-flags/pgo.gyp +143 -0
  1558. data/ext/gyp/test/win/linker-flags/profile.gyp +50 -0
  1559. data/ext/gyp/test/win/linker-flags/program-database.gyp +40 -0
  1560. data/ext/gyp/test/win/linker-flags/safeseh.gyp +79 -0
  1561. data/ext/gyp/test/win/linker-flags/safeseh_hello.cc +11 -0
  1562. data/ext/gyp/test/win/linker-flags/safeseh_zero.asm +10 -0
  1563. data/ext/gyp/test/win/linker-flags/safeseh_zero64.asm +9 -0
  1564. data/ext/gyp/test/win/linker-flags/stacksize.gyp +44 -0
  1565. data/ext/gyp/test/win/linker-flags/subdir/library.gyp +13 -0
  1566. data/ext/gyp/test/win/linker-flags/subsystem-windows.cc +9 -0
  1567. data/ext/gyp/test/win/linker-flags/subsystem.gyp +70 -0
  1568. data/ext/gyp/test/win/linker-flags/target-machine.gyp +48 -0
  1569. data/ext/gyp/test/win/linker-flags/tsaware.gyp +28 -0
  1570. data/ext/gyp/test/win/linker-flags/unsupported-manifest.gyp +13 -0
  1571. data/ext/gyp/test/win/linker-flags/update_pgd.py +35 -0
  1572. data/ext/gyp/test/win/linker-flags/warn-as-error.gyp +33 -0
  1573. data/ext/gyp/test/win/linker-flags/x.cc +7 -0
  1574. data/ext/gyp/test/win/linker-flags/y.cc +7 -0
  1575. data/ext/gyp/test/win/linker-flags/z.cc +7 -0
  1576. data/ext/gyp/test/win/long-command-line/function.cc +7 -0
  1577. data/ext/gyp/test/win/long-command-line/hello.cc +7 -0
  1578. data/ext/gyp/test/win/long-command-line/long-command-line.gyp +54 -0
  1579. data/ext/gyp/test/win/ml-safeseh/a.asm +10 -0
  1580. data/ext/gyp/test/win/ml-safeseh/hello.cc +11 -0
  1581. data/ext/gyp/test/win/ml-safeseh/ml-safeseh.gyp +24 -0
  1582. data/ext/gyp/test/win/precompiled/gyptest-all.py +21 -0
  1583. data/ext/gyp/test/win/precompiled/hello.c +14 -0
  1584. data/ext/gyp/test/win/precompiled/hello.gyp +28 -0
  1585. data/ext/gyp/test/win/precompiled/hello2.c +13 -0
  1586. data/ext/gyp/test/win/precompiled/precomp.c +8 -0
  1587. data/ext/gyp/test/win/rc-build/Resource.h +26 -0
  1588. data/ext/gyp/test/win/rc-build/hello.cpp +30 -0
  1589. data/ext/gyp/test/win/rc-build/hello.gyp +92 -0
  1590. data/ext/gyp/test/win/rc-build/hello.h +3 -0
  1591. data/ext/gyp/test/win/rc-build/hello.ico +0 -0
  1592. data/ext/gyp/test/win/rc-build/hello.rc +86 -0
  1593. data/ext/gyp/test/win/rc-build/hello3.rc +87 -0
  1594. data/ext/gyp/test/win/rc-build/small.ico +0 -0
  1595. data/ext/gyp/test/win/rc-build/subdir/hello2.rc +87 -0
  1596. data/ext/gyp/test/win/rc-build/subdir/include.h +1 -0
  1597. data/ext/gyp/test/win/rc-build/targetver.h +24 -0
  1598. data/ext/gyp/test/win/shard/hello.cc +7 -0
  1599. data/ext/gyp/test/win/shard/hello1.cc +7 -0
  1600. data/ext/gyp/test/win/shard/hello2.cc +7 -0
  1601. data/ext/gyp/test/win/shard/hello3.cc +7 -0
  1602. data/ext/gyp/test/win/shard/hello4.cc +7 -0
  1603. data/ext/gyp/test/win/shard/shard.gyp +31 -0
  1604. data/ext/gyp/test/win/shard/shard_ref.gyp +41 -0
  1605. data/ext/gyp/test/win/system-include/bar/header.h +0 -0
  1606. data/ext/gyp/test/win/system-include/common/commonheader.h +0 -0
  1607. data/ext/gyp/test/win/system-include/foo/header.h +0 -0
  1608. data/ext/gyp/test/win/system-include/main.cc +4 -0
  1609. data/ext/gyp/test/win/system-include/test.gyp +26 -0
  1610. data/ext/gyp/test/win/uldi/a.cc +7 -0
  1611. data/ext/gyp/test/win/uldi/b.cc +7 -0
  1612. data/ext/gyp/test/win/uldi/dll.cc +6 -0
  1613. data/ext/gyp/test/win/uldi/exe.cc +7 -0
  1614. data/ext/gyp/test/win/uldi/main.cc +10 -0
  1615. data/ext/gyp/test/win/uldi/uldi-depending-on-module.gyp +42 -0
  1616. data/ext/gyp/test/win/uldi/uldi.gyp +45 -0
  1617. data/ext/gyp/test/win/vs-macros/as.py +20 -0
  1618. data/ext/gyp/test/win/vs-macros/containing-gyp.gyp +39 -0
  1619. data/ext/gyp/test/win/vs-macros/do_stuff.py +8 -0
  1620. data/ext/gyp/test/win/vs-macros/hello.cc +7 -0
  1621. data/ext/gyp/test/win/vs-macros/input-output-macros.gyp +32 -0
  1622. data/ext/gyp/test/win/vs-macros/input.S +0 -0
  1623. data/ext/gyp/test/win/vs-macros/projectname.gyp +29 -0
  1624. data/ext/gyp/test/win/vs-macros/stuff.blah +1 -0
  1625. data/ext/gyp/test/win/vs-macros/targetext.gyp +59 -0
  1626. data/ext/gyp/test/win/vs-macros/targetfilename.gyp +59 -0
  1627. data/ext/gyp/test/win/vs-macros/targetname.gyp +52 -0
  1628. data/ext/gyp/test/win/vs-macros/targetpath.gyp +59 -0
  1629. data/ext/gyp/test/win/vs-macros/test_exists.py +10 -0
  1630. data/ext/gyp/test/win/vs-macros/vcinstalldir.gyp +41 -0
  1631. data/ext/gyp/test/win/win-driver-target-type/win-driver-target-type.c +10 -0
  1632. data/ext/gyp/test/win/win-driver-target-type/win-driver-target-type.gyp +32 -0
  1633. data/ext/gyp/test/win/win-driver-target-type/win-driver-target-type.h +13 -0
  1634. data/ext/gyp/test/win/win-driver-target-type/win-driver-target-type.rc +14 -0
  1635. data/ext/gyp/test/win/win-tool/copies_readonly_files.gyp +29 -0
  1636. data/ext/gyp/test/win/win-tool/gyptest-win-tool-handles-readonly-files.py +55 -0
  1637. data/ext/gyp/test/win/winrt-app-type-revision/dllmain.cc +30 -0
  1638. data/ext/gyp/test/win/winrt-app-type-revision/winrt-app-type-revison.gyp +43 -0
  1639. data/ext/gyp/test/win/winrt-target-platform-version/dllmain.cc +30 -0
  1640. data/ext/gyp/test/win/winrt-target-platform-version/winrt-target-platform-version.gyp +49 -0
  1641. data/ext/gyp/test/xcode-ninja/list_excluded/gyptest-all.py +49 -0
  1642. data/ext/gyp/test/xcode-ninja/list_excluded/hello.cpp +7 -0
  1643. data/ext/gyp/test/xcode-ninja/list_excluded/hello_exclude.gyp +19 -0
  1644. data/ext/gyp/test/xcode-ninja/list_excluded/hello_excluded.cpp +7 -0
  1645. data/ext/gyp/tools/README +15 -0
  1646. data/ext/gyp/tools/Xcode/README +5 -0
  1647. data/ext/gyp/tools/Xcode/Specifications/gyp.pbfilespec +27 -0
  1648. data/ext/gyp/tools/Xcode/Specifications/gyp.xclangspec +226 -0
  1649. data/ext/gyp/tools/emacs/README +12 -0
  1650. data/ext/gyp/tools/emacs/gyp-tests.el +63 -0
  1651. data/ext/gyp/tools/emacs/gyp.el +275 -0
  1652. data/ext/gyp/tools/emacs/run-unit-tests.sh +7 -0
  1653. data/ext/gyp/tools/emacs/testdata/media.gyp +1105 -0
  1654. data/ext/gyp/tools/emacs/testdata/media.gyp.fontified +1107 -0
  1655. data/ext/gyp/tools/graphviz.py +102 -0
  1656. data/ext/gyp/tools/pretty_gyp.py +156 -0
  1657. data/ext/gyp/tools/pretty_sln.py +171 -0
  1658. data/ext/gyp/tools/pretty_vcproj.py +337 -0
  1659. data/ext/libuv/.gitattributes +1 -0
  1660. data/ext/libuv/.github/ISSUE_TEMPLATE.md +13 -0
  1661. data/ext/libuv/.github/stale.yml +22 -0
  1662. data/ext/libuv/.gitignore +80 -0
  1663. data/ext/libuv/.mailmap +50 -0
  1664. data/ext/libuv/AUTHORS +415 -0
  1665. data/ext/libuv/CMakeLists.txt +430 -0
  1666. data/ext/libuv/CONTRIBUTING.md +172 -0
  1667. data/ext/libuv/ChangeLog +4548 -0
  1668. data/ext/libuv/LICENSE +70 -0
  1669. data/ext/libuv/LICENSE-docs +396 -0
  1670. data/ext/libuv/MAINTAINERS.md +48 -0
  1671. data/ext/libuv/Makefile.am +548 -0
  1672. data/ext/libuv/README.md +431 -0
  1673. data/ext/libuv/SUPPORTED_PLATFORMS.md +68 -0
  1674. data/ext/libuv/android-configure-arm +23 -0
  1675. data/ext/libuv/android-configure-arm64 +23 -0
  1676. data/ext/libuv/android-configure-x86 +23 -0
  1677. data/ext/libuv/android-configure-x86_64 +25 -0
  1678. data/ext/libuv/appveyor.yml +32 -0
  1679. data/ext/libuv/autogen.sh +46 -0
  1680. data/ext/libuv/common.gypi +213 -0
  1681. data/ext/libuv/configure.ac +82 -0
  1682. data/ext/libuv/docs/Makefile +183 -0
  1683. data/ext/libuv/docs/code/cgi/main.c +81 -0
  1684. data/ext/libuv/docs/code/cgi/tick.c +13 -0
  1685. data/ext/libuv/docs/code/detach/main.c +31 -0
  1686. data/ext/libuv/docs/code/dns/main.c +80 -0
  1687. data/ext/libuv/docs/code/helloworld/main.c +15 -0
  1688. data/ext/libuv/docs/code/idle-basic/main.c +24 -0
  1689. data/ext/libuv/docs/code/idle-compute/main.c +43 -0
  1690. data/ext/libuv/docs/code/interfaces/main.c +33 -0
  1691. data/ext/libuv/docs/code/locks/main.c +57 -0
  1692. data/ext/libuv/docs/code/multi-echo-server/hammer.js +20 -0
  1693. data/ext/libuv/docs/code/multi-echo-server/main.c +114 -0
  1694. data/ext/libuv/docs/code/multi-echo-server/worker.c +88 -0
  1695. data/ext/libuv/docs/code/onchange/main.c +44 -0
  1696. data/ext/libuv/docs/code/pipe-echo-server/main.c +94 -0
  1697. data/ext/libuv/docs/code/plugin/hello.c +5 -0
  1698. data/ext/libuv/docs/code/plugin/main.c +39 -0
  1699. data/ext/libuv/docs/code/plugin/plugin.h +7 -0
  1700. data/ext/libuv/docs/code/proc-streams/main.c +49 -0
  1701. data/ext/libuv/docs/code/proc-streams/test.c +8 -0
  1702. data/ext/libuv/docs/code/progress/main.c +47 -0
  1703. data/ext/libuv/docs/code/queue-cancel/main.c +59 -0
  1704. data/ext/libuv/docs/code/queue-work/main.c +44 -0
  1705. data/ext/libuv/docs/code/ref-timer/main.c +29 -0
  1706. data/ext/libuv/docs/code/signal/main.c +66 -0
  1707. data/ext/libuv/docs/code/spawn/main.c +36 -0
  1708. data/ext/libuv/docs/code/tcp-echo-server/main.c +87 -0
  1709. data/ext/libuv/docs/code/thread-create/main.c +36 -0
  1710. data/ext/libuv/docs/code/tty/main.c +29 -0
  1711. data/ext/libuv/docs/code/tty-gravity/main.c +48 -0
  1712. data/ext/libuv/docs/code/udp-dhcp/main.c +127 -0
  1713. data/ext/libuv/docs/code/uvcat/main.c +63 -0
  1714. data/ext/libuv/docs/code/uvstop/main.c +33 -0
  1715. data/ext/libuv/docs/code/uvtee/main.c +80 -0
  1716. data/ext/libuv/docs/code/uvwget/main.c +166 -0
  1717. data/ext/libuv/docs/make.bat +243 -0
  1718. data/ext/libuv/docs/src/api.rst +35 -0
  1719. data/ext/libuv/docs/src/async.rst +65 -0
  1720. data/ext/libuv/docs/src/check.rst +46 -0
  1721. data/ext/libuv/docs/src/conf.py +348 -0
  1722. data/ext/libuv/docs/src/design.rst +140 -0
  1723. data/ext/libuv/docs/src/dll.rst +44 -0
  1724. data/ext/libuv/docs/src/dns.rst +108 -0
  1725. data/ext/libuv/docs/src/errors.rst +365 -0
  1726. data/ext/libuv/docs/src/fs.rst +689 -0
  1727. data/ext/libuv/docs/src/fs_event.rst +132 -0
  1728. data/ext/libuv/docs/src/fs_poll.rst +77 -0
  1729. data/ext/libuv/docs/src/guide/about.rst +22 -0
  1730. data/ext/libuv/docs/src/guide/basics.rst +219 -0
  1731. data/ext/libuv/docs/src/guide/eventloops.rst +48 -0
  1732. data/ext/libuv/docs/src/guide/filesystem.rst +330 -0
  1733. data/ext/libuv/docs/src/guide/introduction.rst +75 -0
  1734. data/ext/libuv/docs/src/guide/networking.rst +250 -0
  1735. data/ext/libuv/docs/src/guide/processes.rst +406 -0
  1736. data/ext/libuv/docs/src/guide/threads.rst +385 -0
  1737. data/ext/libuv/docs/src/guide/utilities.rst +437 -0
  1738. data/ext/libuv/docs/src/guide.rst +22 -0
  1739. data/ext/libuv/docs/src/handle.rst +283 -0
  1740. data/ext/libuv/docs/src/idle.rst +54 -0
  1741. data/ext/libuv/docs/src/index.rst +62 -0
  1742. data/ext/libuv/docs/src/loop.rst +238 -0
  1743. data/ext/libuv/docs/src/migration_010_100.rst +244 -0
  1744. data/ext/libuv/docs/src/misc.rst +702 -0
  1745. data/ext/libuv/docs/src/pipe.rst +116 -0
  1746. data/ext/libuv/docs/src/poll.rst +121 -0
  1747. data/ext/libuv/docs/src/prepare.rst +46 -0
  1748. data/ext/libuv/docs/src/process.rst +250 -0
  1749. data/ext/libuv/docs/src/request.rst +116 -0
  1750. data/ext/libuv/docs/src/signal.rst +101 -0
  1751. data/ext/libuv/docs/src/sphinx-plugins/manpage.py +45 -0
  1752. data/ext/libuv/docs/src/static/architecture.png +0 -0
  1753. data/ext/libuv/docs/src/static/diagrams.key/Data/st0-311.jpg +0 -0
  1754. data/ext/libuv/docs/src/static/diagrams.key/Data/st1-475.jpg +0 -0
  1755. data/ext/libuv/docs/src/static/diagrams.key/Index.zip +0 -0
  1756. data/ext/libuv/docs/src/static/diagrams.key/Metadata/BuildVersionHistory.plist +8 -0
  1757. data/ext/libuv/docs/src/static/diagrams.key/Metadata/DocumentIdentifier +1 -0
  1758. data/ext/libuv/docs/src/static/diagrams.key/Metadata/Properties.plist +0 -0
  1759. data/ext/libuv/docs/src/static/diagrams.key/preview-micro.jpg +0 -0
  1760. data/ext/libuv/docs/src/static/diagrams.key/preview-web.jpg +0 -0
  1761. data/ext/libuv/docs/src/static/diagrams.key/preview.jpg +0 -0
  1762. data/ext/libuv/docs/src/static/favicon.ico +0 -0
  1763. data/ext/libuv/docs/src/static/logo.png +0 -0
  1764. data/ext/libuv/docs/src/static/loop_iteration.png +0 -0
  1765. data/ext/libuv/docs/src/stream.rst +237 -0
  1766. data/ext/libuv/docs/src/tcp.rst +125 -0
  1767. data/ext/libuv/docs/src/threading.rst +197 -0
  1768. data/ext/libuv/docs/src/threadpool.rst +69 -0
  1769. data/ext/libuv/docs/src/timer.rst +81 -0
  1770. data/ext/libuv/docs/src/tty.rst +139 -0
  1771. data/ext/libuv/docs/src/udp.rst +390 -0
  1772. data/ext/libuv/docs/src/upgrading.rst +11 -0
  1773. data/ext/libuv/docs/src/version.rst +60 -0
  1774. data/ext/libuv/gyp_uv.py +73 -0
  1775. data/ext/libuv/img/banner.png +0 -0
  1776. data/ext/libuv/img/logos.svg +152 -0
  1777. data/ext/libuv/include/uv/aix.h +32 -0
  1778. data/ext/libuv/include/uv/android-ifaddrs.h +54 -0
  1779. data/ext/libuv/include/uv/bsd.h +34 -0
  1780. data/ext/libuv/include/uv/darwin.h +61 -0
  1781. data/ext/libuv/include/uv/errno.h +448 -0
  1782. data/ext/libuv/include/uv/linux.h +34 -0
  1783. data/ext/libuv/include/uv/os390.h +33 -0
  1784. data/ext/libuv/include/uv/posix.h +31 -0
  1785. data/ext/libuv/include/uv/stdint-msvc2008.h +247 -0
  1786. data/ext/libuv/include/uv/sunos.h +44 -0
  1787. data/ext/libuv/include/uv/threadpool.h +37 -0
  1788. data/ext/libuv/include/uv/tree.h +768 -0
  1789. data/ext/libuv/include/uv/unix.h +505 -0
  1790. data/ext/libuv/include/uv/version.h +43 -0
  1791. data/ext/libuv/include/uv/win.h +691 -0
  1792. data/ext/libuv/include/uv.h +1782 -0
  1793. data/ext/libuv/libuv.pc.in +12 -0
  1794. data/ext/libuv/m4/.gitignore +4 -0
  1795. data/ext/libuv/m4/as_case.m4 +21 -0
  1796. data/ext/libuv/m4/libuv-check-flags.m4 +319 -0
  1797. data/ext/libuv/src/fs-poll.c +287 -0
  1798. data/ext/libuv/src/heap-inl.h +245 -0
  1799. data/ext/libuv/src/idna.c +291 -0
  1800. data/ext/libuv/src/idna.h +31 -0
  1801. data/ext/libuv/src/inet.c +302 -0
  1802. data/ext/libuv/src/queue.h +108 -0
  1803. data/ext/libuv/src/random.c +123 -0
  1804. data/ext/libuv/src/strscpy.c +17 -0
  1805. data/ext/libuv/src/strscpy.h +18 -0
  1806. data/ext/libuv/src/threadpool.c +388 -0
  1807. data/ext/libuv/src/timer.c +181 -0
  1808. data/ext/libuv/src/unix/aix-common.c +337 -0
  1809. data/ext/libuv/src/unix/aix.c +1066 -0
  1810. data/ext/libuv/src/unix/android-ifaddrs.c +712 -0
  1811. data/ext/libuv/src/unix/async.c +298 -0
  1812. data/ext/libuv/src/unix/atomic-ops.h +59 -0
  1813. data/ext/libuv/src/unix/bsd-ifaddrs.c +161 -0
  1814. data/ext/libuv/src/unix/bsd-proctitle.c +93 -0
  1815. data/ext/libuv/src/unix/core.c +1571 -0
  1816. data/ext/libuv/src/unix/cygwin.c +53 -0
  1817. data/ext/libuv/src/unix/darwin-proctitle.c +202 -0
  1818. data/ext/libuv/src/unix/darwin.c +225 -0
  1819. data/ext/libuv/src/unix/dl.c +80 -0
  1820. data/ext/libuv/src/unix/freebsd.c +290 -0
  1821. data/ext/libuv/src/unix/fs.c +2044 -0
  1822. data/ext/libuv/src/unix/fsevents.c +924 -0
  1823. data/ext/libuv/src/unix/getaddrinfo.c +255 -0
  1824. data/ext/libuv/src/unix/getnameinfo.c +121 -0
  1825. data/ext/libuv/src/unix/haiku.c +167 -0
  1826. data/ext/libuv/src/unix/ibmi.c +249 -0
  1827. data/ext/libuv/src/unix/internal.h +331 -0
  1828. data/ext/libuv/src/unix/kqueue.c +544 -0
  1829. data/ext/libuv/src/unix/linux-core.c +1091 -0
  1830. data/ext/libuv/src/unix/linux-inotify.c +354 -0
  1831. data/ext/libuv/src/unix/linux-syscalls.c +394 -0
  1832. data/ext/libuv/src/unix/linux-syscalls.h +153 -0
  1833. data/ext/libuv/src/unix/loop-watcher.c +68 -0
  1834. data/ext/libuv/src/unix/loop.c +194 -0
  1835. data/ext/libuv/src/unix/netbsd.c +259 -0
  1836. data/ext/libuv/src/unix/no-fsevents.c +42 -0
  1837. data/ext/libuv/src/unix/no-proctitle.c +42 -0
  1838. data/ext/libuv/src/unix/openbsd.c +244 -0
  1839. data/ext/libuv/src/unix/os390-syscalls.c +519 -0
  1840. data/ext/libuv/src/unix/os390-syscalls.h +68 -0
  1841. data/ext/libuv/src/unix/os390.c +1003 -0
  1842. data/ext/libuv/src/unix/pipe.c +377 -0
  1843. data/ext/libuv/src/unix/poll.c +150 -0
  1844. data/ext/libuv/src/unix/posix-hrtime.c +35 -0
  1845. data/ext/libuv/src/unix/posix-poll.c +336 -0
  1846. data/ext/libuv/src/unix/process.c +603 -0
  1847. data/ext/libuv/src/unix/procfs-exepath.c +45 -0
  1848. data/ext/libuv/src/unix/proctitle.c +132 -0
  1849. data/ext/libuv/src/unix/pthread-fixes.c +56 -0
  1850. data/ext/libuv/src/unix/random-devurandom.c +93 -0
  1851. data/ext/libuv/src/unix/random-getentropy.c +57 -0
  1852. data/ext/libuv/src/unix/random-getrandom.c +88 -0
  1853. data/ext/libuv/src/unix/random-sysctl-linux.c +99 -0
  1854. data/ext/libuv/src/unix/signal.c +577 -0
  1855. data/ext/libuv/src/unix/spinlock.h +53 -0
  1856. data/ext/libuv/src/unix/stream.c +1697 -0
  1857. data/ext/libuv/src/unix/sunos.c +836 -0
  1858. data/ext/libuv/src/unix/sysinfo-loadavg.c +36 -0
  1859. data/ext/libuv/src/unix/sysinfo-memory.c +42 -0
  1860. data/ext/libuv/src/unix/tcp.c +450 -0
  1861. data/ext/libuv/src/unix/thread.c +852 -0
  1862. data/ext/libuv/src/unix/tty.c +381 -0
  1863. data/ext/libuv/src/unix/udp.c +1136 -0
  1864. data/ext/libuv/src/uv-common.c +812 -0
  1865. data/ext/libuv/src/uv-common.h +326 -0
  1866. data/ext/libuv/src/uv-data-getter-setters.c +98 -0
  1867. data/ext/libuv/src/version.c +45 -0
  1868. data/ext/libuv/src/win/async.c +98 -0
  1869. data/ext/libuv/src/win/atomicops-inl.h +57 -0
  1870. data/ext/libuv/src/win/core.c +657 -0
  1871. data/ext/libuv/src/win/detect-wakeup.c +35 -0
  1872. data/ext/libuv/src/win/dl.c +136 -0
  1873. data/ext/libuv/src/win/error.c +172 -0
  1874. data/ext/libuv/src/win/fs-event.c +589 -0
  1875. data/ext/libuv/src/win/fs-fd-hash-inl.h +178 -0
  1876. data/ext/libuv/src/win/fs.c +3238 -0
  1877. data/ext/libuv/src/win/getaddrinfo.c +463 -0
  1878. data/ext/libuv/src/win/getnameinfo.c +157 -0
  1879. data/ext/libuv/src/win/handle-inl.h +180 -0
  1880. data/ext/libuv/src/win/handle.c +162 -0
  1881. data/ext/libuv/src/win/internal.h +344 -0
  1882. data/ext/libuv/src/win/loop-watcher.c +122 -0
  1883. data/ext/libuv/src/win/pipe.c +2386 -0
  1884. data/ext/libuv/src/win/poll.c +643 -0
  1885. data/ext/libuv/src/win/process-stdio.c +512 -0
  1886. data/ext/libuv/src/win/process.c +1282 -0
  1887. data/ext/libuv/src/win/req-inl.h +221 -0
  1888. data/ext/libuv/src/win/signal.c +277 -0
  1889. data/ext/libuv/src/win/snprintf.c +42 -0
  1890. data/ext/libuv/src/win/stream-inl.h +54 -0
  1891. data/ext/libuv/src/win/stream.c +243 -0
  1892. data/ext/libuv/src/win/tcp.c +1520 -0
  1893. data/ext/libuv/src/win/thread.c +520 -0
  1894. data/ext/libuv/src/win/tty.c +2348 -0
  1895. data/ext/libuv/src/win/udp.c +1185 -0
  1896. data/ext/libuv/src/win/util.c +1879 -0
  1897. data/ext/libuv/src/win/winapi.c +149 -0
  1898. data/ext/libuv/src/win/winapi.h +4751 -0
  1899. data/ext/libuv/src/win/winsock.c +575 -0
  1900. data/ext/libuv/src/win/winsock.h +201 -0
  1901. data/ext/libuv/test/benchmark-async-pummel.c +119 -0
  1902. data/ext/libuv/test/benchmark-async.c +141 -0
  1903. data/ext/libuv/test/benchmark-fs-stat.c +136 -0
  1904. data/ext/libuv/test/benchmark-getaddrinfo.c +92 -0
  1905. data/ext/libuv/test/benchmark-list.h +163 -0
  1906. data/ext/libuv/test/benchmark-loop-count.c +92 -0
  1907. data/ext/libuv/test/benchmark-million-async.c +112 -0
  1908. data/ext/libuv/test/benchmark-million-timers.c +86 -0
  1909. data/ext/libuv/test/benchmark-multi-accept.c +447 -0
  1910. data/ext/libuv/test/benchmark-ping-pongs.c +221 -0
  1911. data/ext/libuv/test/benchmark-pound.c +351 -0
  1912. data/ext/libuv/test/benchmark-pump.c +476 -0
  1913. data/ext/libuv/test/benchmark-sizes.c +46 -0
  1914. data/ext/libuv/test/benchmark-spawn.c +164 -0
  1915. data/ext/libuv/test/benchmark-tcp-write-batch.c +144 -0
  1916. data/ext/libuv/test/benchmark-thread.c +64 -0
  1917. data/ext/libuv/test/benchmark-udp-pummel.c +243 -0
  1918. data/ext/libuv/test/blackhole-server.c +121 -0
  1919. data/ext/libuv/test/dns-server.c +340 -0
  1920. data/ext/libuv/test/echo-server.c +382 -0
  1921. data/ext/libuv/test/fixtures/empty_file +0 -0
  1922. data/ext/libuv/test/fixtures/load_error.node +1 -0
  1923. data/ext/libuv/test/fixtures/lorem_ipsum.txt +1 -0
  1924. data/ext/libuv/test/run-benchmarks.c +65 -0
  1925. data/ext/libuv/test/run-tests.c +239 -0
  1926. data/ext/libuv/test/runner-unix.c +450 -0
  1927. data/ext/libuv/test/runner-unix.h +36 -0
  1928. data/ext/libuv/test/runner-win.c +357 -0
  1929. data/ext/libuv/test/runner-win.h +41 -0
  1930. data/ext/libuv/test/runner.c +431 -0
  1931. data/ext/libuv/test/runner.h +176 -0
  1932. data/ext/libuv/test/task.h +238 -0
  1933. data/ext/libuv/test/test-active.c +84 -0
  1934. data/ext/libuv/test/test-async-null-cb.c +64 -0
  1935. data/ext/libuv/test/test-async.c +134 -0
  1936. data/ext/libuv/test/test-barrier.c +148 -0
  1937. data/ext/libuv/test/test-callback-order.c +77 -0
  1938. data/ext/libuv/test/test-callback-stack.c +204 -0
  1939. data/ext/libuv/test/test-close-fd.c +80 -0
  1940. data/ext/libuv/test/test-close-order.c +80 -0
  1941. data/ext/libuv/test/test-condvar.c +267 -0
  1942. data/ext/libuv/test/test-connect-unspecified.c +63 -0
  1943. data/ext/libuv/test/test-connection-fail.c +151 -0
  1944. data/ext/libuv/test/test-cwd-and-chdir.c +58 -0
  1945. data/ext/libuv/test/test-default-loop-close.c +59 -0
  1946. data/ext/libuv/test/test-delayed-accept.c +189 -0
  1947. data/ext/libuv/test/test-dlerror.c +61 -0
  1948. data/ext/libuv/test/test-eintr-handling.c +94 -0
  1949. data/ext/libuv/test/test-embed.c +139 -0
  1950. data/ext/libuv/test/test-emfile.c +121 -0
  1951. data/ext/libuv/test/test-env-vars.c +140 -0
  1952. data/ext/libuv/test/test-error.c +79 -0
  1953. data/ext/libuv/test/test-fail-always.c +29 -0
  1954. data/ext/libuv/test/test-fork.c +683 -0
  1955. data/ext/libuv/test/test-fs-copyfile.c +209 -0
  1956. data/ext/libuv/test/test-fs-event.c +1165 -0
  1957. data/ext/libuv/test/test-fs-fd-hash.c +133 -0
  1958. data/ext/libuv/test/test-fs-open-flags.c +435 -0
  1959. data/ext/libuv/test/test-fs-poll.c +300 -0
  1960. data/ext/libuv/test/test-fs-readdir.c +462 -0
  1961. data/ext/libuv/test/test-fs.c +4238 -0
  1962. data/ext/libuv/test/test-get-currentexe.c +86 -0
  1963. data/ext/libuv/test/test-get-loadavg.c +35 -0
  1964. data/ext/libuv/test/test-get-memory.c +40 -0
  1965. data/ext/libuv/test/test-get-passwd.c +86 -0
  1966. data/ext/libuv/test/test-getaddrinfo.c +191 -0
  1967. data/ext/libuv/test/test-gethostname.c +58 -0
  1968. data/ext/libuv/test/test-getnameinfo.c +101 -0
  1969. data/ext/libuv/test/test-getsockname.c +361 -0
  1970. data/ext/libuv/test/test-getters-setters.c +88 -0
  1971. data/ext/libuv/test/test-gettimeofday.c +39 -0
  1972. data/ext/libuv/test/test-handle-fileno.c +125 -0
  1973. data/ext/libuv/test/test-homedir.c +72 -0
  1974. data/ext/libuv/test/test-hrtime.c +52 -0
  1975. data/ext/libuv/test/test-idle.c +99 -0
  1976. data/ext/libuv/test/test-idna.c +195 -0
  1977. data/ext/libuv/test/test-ip4-addr.c +55 -0
  1978. data/ext/libuv/test/test-ip6-addr.c +171 -0
  1979. data/ext/libuv/test/test-ipc-heavy-traffic-deadlock-bug.c +159 -0
  1980. data/ext/libuv/test/test-ipc-send-recv.c +429 -0
  1981. data/ext/libuv/test/test-ipc.c +974 -0
  1982. data/ext/libuv/test/test-list.h +1064 -0
  1983. data/ext/libuv/test/test-loop-alive.c +67 -0
  1984. data/ext/libuv/test/test-loop-close.c +75 -0
  1985. data/ext/libuv/test/test-loop-configure.c +38 -0
  1986. data/ext/libuv/test/test-loop-handles.c +337 -0
  1987. data/ext/libuv/test/test-loop-stop.c +71 -0
  1988. data/ext/libuv/test/test-loop-time.c +63 -0
  1989. data/ext/libuv/test/test-multiple-listen.c +109 -0
  1990. data/ext/libuv/test/test-mutexes.c +182 -0
  1991. data/ext/libuv/test/test-osx-select.c +140 -0
  1992. data/ext/libuv/test/test-pass-always.c +28 -0
  1993. data/ext/libuv/test/test-ping-pong.c +301 -0
  1994. data/ext/libuv/test/test-pipe-bind-error.c +139 -0
  1995. data/ext/libuv/test/test-pipe-close-stdout-read-stdin.c +112 -0
  1996. data/ext/libuv/test/test-pipe-connect-error.c +95 -0
  1997. data/ext/libuv/test/test-pipe-connect-multiple.c +107 -0
  1998. data/ext/libuv/test/test-pipe-connect-prepare.c +83 -0
  1999. data/ext/libuv/test/test-pipe-getsockname.c +266 -0
  2000. data/ext/libuv/test/test-pipe-pending-instances.c +59 -0
  2001. data/ext/libuv/test/test-pipe-sendmsg.c +172 -0
  2002. data/ext/libuv/test/test-pipe-server-close.c +94 -0
  2003. data/ext/libuv/test/test-pipe-set-fchmod.c +90 -0
  2004. data/ext/libuv/test/test-pipe-set-non-blocking.c +99 -0
  2005. data/ext/libuv/test/test-platform-output.c +170 -0
  2006. data/ext/libuv/test/test-poll-close-doesnt-corrupt-stack.c +114 -0
  2007. data/ext/libuv/test/test-poll-close.c +73 -0
  2008. data/ext/libuv/test/test-poll-closesocket.c +92 -0
  2009. data/ext/libuv/test/test-poll-oob.c +210 -0
  2010. data/ext/libuv/test/test-poll.c +668 -0
  2011. data/ext/libuv/test/test-process-priority.c +83 -0
  2012. data/ext/libuv/test/test-process-title-threadsafe.c +89 -0
  2013. data/ext/libuv/test/test-process-title.c +76 -0
  2014. data/ext/libuv/test/test-queue-foreach-delete.c +204 -0
  2015. data/ext/libuv/test/test-random.c +94 -0
  2016. data/ext/libuv/test/test-ref.c +445 -0
  2017. data/ext/libuv/test/test-run-nowait.c +45 -0
  2018. data/ext/libuv/test/test-run-once.c +48 -0
  2019. data/ext/libuv/test/test-semaphore.c +111 -0
  2020. data/ext/libuv/test/test-shutdown-close.c +108 -0
  2021. data/ext/libuv/test/test-shutdown-eof.c +182 -0
  2022. data/ext/libuv/test/test-shutdown-twice.c +85 -0
  2023. data/ext/libuv/test/test-signal-multiple-loops.c +302 -0
  2024. data/ext/libuv/test/test-signal-pending-on-close.c +94 -0
  2025. data/ext/libuv/test/test-signal.c +325 -0
  2026. data/ext/libuv/test/test-socket-buffer-size.c +77 -0
  2027. data/ext/libuv/test/test-spawn.c +1924 -0
  2028. data/ext/libuv/test/test-stdio-over-pipes.c +256 -0
  2029. data/ext/libuv/test/test-strscpy.c +53 -0
  2030. data/ext/libuv/test/test-tcp-alloc-cb-fail.c +123 -0
  2031. data/ext/libuv/test/test-tcp-bind-error.c +254 -0
  2032. data/ext/libuv/test/test-tcp-bind6-error.c +176 -0
  2033. data/ext/libuv/test/test-tcp-close-accept.c +198 -0
  2034. data/ext/libuv/test/test-tcp-close-reset.c +290 -0
  2035. data/ext/libuv/test/test-tcp-close-while-connecting.c +97 -0
  2036. data/ext/libuv/test/test-tcp-close.c +136 -0
  2037. data/ext/libuv/test/test-tcp-connect-error-after-write.c +98 -0
  2038. data/ext/libuv/test/test-tcp-connect-error.c +73 -0
  2039. data/ext/libuv/test/test-tcp-connect-timeout.c +91 -0
  2040. data/ext/libuv/test/test-tcp-connect6-error.c +71 -0
  2041. data/ext/libuv/test/test-tcp-create-socket-early.c +209 -0
  2042. data/ext/libuv/test/test-tcp-flags.c +52 -0
  2043. data/ext/libuv/test/test-tcp-oob.c +146 -0
  2044. data/ext/libuv/test/test-tcp-open.c +400 -0
  2045. data/ext/libuv/test/test-tcp-read-stop.c +76 -0
  2046. data/ext/libuv/test/test-tcp-shutdown-after-write.c +138 -0
  2047. data/ext/libuv/test/test-tcp-try-write-error.c +109 -0
  2048. data/ext/libuv/test/test-tcp-try-write.c +135 -0
  2049. data/ext/libuv/test/test-tcp-unexpected-read.c +117 -0
  2050. data/ext/libuv/test/test-tcp-write-after-connect.c +72 -0
  2051. data/ext/libuv/test/test-tcp-write-fail.c +115 -0
  2052. data/ext/libuv/test/test-tcp-write-queue-order.c +139 -0
  2053. data/ext/libuv/test/test-tcp-write-to-half-open-connection.c +141 -0
  2054. data/ext/libuv/test/test-tcp-writealot.c +180 -0
  2055. data/ext/libuv/test/test-thread-equal.c +45 -0
  2056. data/ext/libuv/test/test-thread.c +286 -0
  2057. data/ext/libuv/test/test-threadpool-cancel.c +349 -0
  2058. data/ext/libuv/test/test-threadpool.c +76 -0
  2059. data/ext/libuv/test/test-timer-again.c +141 -0
  2060. data/ext/libuv/test/test-timer-from-check.c +80 -0
  2061. data/ext/libuv/test/test-timer.c +343 -0
  2062. data/ext/libuv/test/test-tmpdir.c +82 -0
  2063. data/ext/libuv/test/test-tty-duplicate-key.c +321 -0
  2064. data/ext/libuv/test/test-tty.c +464 -0
  2065. data/ext/libuv/test/test-udp-alloc-cb-fail.c +196 -0
  2066. data/ext/libuv/test/test-udp-bind.c +93 -0
  2067. data/ext/libuv/test/test-udp-connect.c +182 -0
  2068. data/ext/libuv/test/test-udp-create-socket-early.c +135 -0
  2069. data/ext/libuv/test/test-udp-dgram-too-big.c +91 -0
  2070. data/ext/libuv/test/test-udp-ipv6.c +200 -0
  2071. data/ext/libuv/test/test-udp-multicast-interface.c +99 -0
  2072. data/ext/libuv/test/test-udp-multicast-interface6.c +103 -0
  2073. data/ext/libuv/test/test-udp-multicast-join.c +181 -0
  2074. data/ext/libuv/test/test-udp-multicast-join6.c +215 -0
  2075. data/ext/libuv/test/test-udp-multicast-ttl.c +94 -0
  2076. data/ext/libuv/test/test-udp-open.c +350 -0
  2077. data/ext/libuv/test/test-udp-options.c +156 -0
  2078. data/ext/libuv/test/test-udp-send-and-recv.c +212 -0
  2079. data/ext/libuv/test/test-udp-send-hang-loop.c +99 -0
  2080. data/ext/libuv/test/test-udp-send-immediate.c +148 -0
  2081. data/ext/libuv/test/test-udp-send-unreachable.c +150 -0
  2082. data/ext/libuv/test/test-udp-try-send.c +121 -0
  2083. data/ext/libuv/test/test-uname.c +69 -0
  2084. data/ext/libuv/test/test-walk-handles.c +77 -0
  2085. data/ext/libuv/test/test-watcher-cross-stop.c +111 -0
  2086. data/ext/libuv/test/test.gyp +293 -0
  2087. data/ext/libuv/tools/make_dist_html.py +124 -0
  2088. data/ext/libuv/tools/vswhere_usability_wrapper.cmd +33 -0
  2089. data/ext/libuv/uv.gyp +368 -0
  2090. data/ext/libuv/vcbuild.bat +184 -0
  2091. data/lib/mt-libuv/tcp.rb +2 -2
  2092. data/lib/mt-libuv/version.rb +1 -1
  2093. data/mt-libuv.gemspec +26 -26
  2094. metadata +2089 -2
@@ -0,0 +1,152 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+ <svg
5
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
6
+ xmlns:cc="http://creativecommons.org/ns#"
7
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
8
+ xmlns:svg="http://www.w3.org/2000/svg"
9
+ xmlns="http://www.w3.org/2000/svg"
10
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
11
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
+ width="792pt"
13
+ height="612pt"
14
+ id="svg3069"
15
+ version="1.1"
16
+ inkscape:version="0.48.4 r9939"
17
+ sodipodi:docname="New document 3">
18
+ <defs
19
+ id="defs3071">
20
+ <clipPath
21
+ clipPathUnits="userSpaceOnUse"
22
+ id="clipPath70">
23
+ <path
24
+ inkscape:connector-curvature="0"
25
+ d="M 0,5952.81 0,0 l 8418.9,0 0,5952.81 -8418.9,0 z"
26
+ id="path72" />
27
+ </clipPath>
28
+ <clipPath
29
+ clipPathUnits="userSpaceOnUse"
30
+ id="clipPath70-6">
31
+ <path
32
+ inkscape:connector-curvature="0"
33
+ d="M 0,5952.81 0,0 l 8418.9,0 0,5952.81 -8418.9,0 z"
34
+ id="path72-5" />
35
+ </clipPath>
36
+ </defs>
37
+ <sodipodi:namedview
38
+ inkscape:document-units="in"
39
+ pagecolor="#ffffff"
40
+ bordercolor="#666666"
41
+ borderopacity="1.0"
42
+ inkscape:pageopacity="0.0"
43
+ inkscape:pageshadow="2"
44
+ inkscape:zoom="0.43415836"
45
+ inkscape:cx="508.42646"
46
+ inkscape:cy="359.27024"
47
+ inkscape:current-layer="layer1"
48
+ id="namedview3073"
49
+ showgrid="false"
50
+ inkscape:window-width="1010"
51
+ inkscape:window-height="702"
52
+ inkscape:window-x="441"
53
+ inkscape:window-y="267"
54
+ inkscape:window-maximized="0" />
55
+ <metadata
56
+ id="metadata3075">
57
+ <rdf:RDF>
58
+ <cc:Work
59
+ rdf:about="">
60
+ <dc:format>image/svg+xml</dc:format>
61
+ <dc:type
62
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
63
+ <dc:title></dc:title>
64
+ </cc:Work>
65
+ </rdf:RDF>
66
+ </metadata>
67
+ <g
68
+ inkscape:label="Layer 1"
69
+ inkscape:groupmode="layer"
70
+ id="layer1">
71
+ <g
72
+ transform="matrix(0.2288071,0,0,-0.2288071,130.84779,1169.4436)"
73
+ id="g66">
74
+ <g
75
+ id="g68"
76
+ clip-path="url(#clipPath70)">
77
+ <path
78
+ inkscape:connector-curvature="0"
79
+ d="m 3274.33,2372.2 c -42.27,-8.61 -87.28,-37.29 -122.12,-43.75 -77.01,-14.25 -122.4,-0.53 -81.76,16.27 59.03,24.45 253.75,30.55 274.1,175.05 20.36,144.5 6.1,209.66 -4.07,246.29 -4.87,17.57 -15.81,43.49 -25.9,65.76 -2.85,15.73 -6.59,29.07 -9.86,38.57 -1.82,4.29 -3.65,9.81 -5.46,16.78 0,0 -2.54,17.81 5.6,35.1 7.2,15.34 31.95,48.62 33.62,80.79 0.03,1.95 0.11,3.9 0.08,5.85 -0.1,2.18 -0.28,4.33 -0.63,6.48 l -0.18,1.9 c -3.17,18.05 -13.53,30.62 -27.6,39.98 -9.06,6.02 -21.4,7.92 -28.17,16.51 5.4,17.01 22.63,23.06 29.82,36.95 4.48,12.34 0.82,25.3 -5.99,37.08 -13.13,14.72 -38.92,27.49 -62.07,36.15 -28.97,10.87 -58.44,19.45 -78.35,35.06 -21.03,11.19 -35.17,32.83 -22.26,61.45 3.35,7.44 4.85,14.93 4.75,22.04 l -0.09,2.09 c -0.03,1.45 -0.23,2.76 -0.41,4.1 -0.15,1.04 -0.32,2.06 -0.55,3.08 l -0.47,1.77 -0.56,2.02 c -5.3,17.86 -33.44,22.88 -43.47,23.78 -22.72,2.04 -37.4,8.2 -49.46,12.01 9.7,-5.04 19.46,-11.78 31.9,-16.79 7.87,-3.21 19.17,-5.12 28.68,-8.29 l 0.09,0.02 c 0,0 17.55,-3.56 22.38,-15.78 4.84,-12.2 2.03,-22.9 0,-29.75 l -0.74,-1.99 c -1.75,-5.35 -3.72,-10.51 -4.13,-15.84 -1.65,-21.04 11.26,-32 18.12,-49.6 12.35,-11.73 29.93,-23.88 54.32,-34.88 21.92,-9.9 48.15,-15.89 64.4,-25.7 9.41,-5.68 26.55,-19.41 26.16,-29.4 -0.3,-7.65 -14.43,-18.09 -20.12,-25.7 -4.07,-5.42 -6.09,-12.62 -9.73,-17.74 -3.17,-5 -7.24,-8.22 -11.92,-8.22 -6.1,0 -20.01,-2.36 -10.86,-3.04 9.16,-0.68 32.91,-11.87 32.91,-11.87 l -0.02,-0.03 c 32.1,-13.28 53.67,-37.88 41.87,-72.96 -9.88,-29.39 -32.61,-53.97 -34.2,-86.3 -1.7,-34.4 14.07,-62.72 16.09,-90 3.41,-45.9 -3.18,-77.51 -12.06,-112.01 -4.17,-16.14 -6.39,-32.04 -10.06,-47.74 -15.68,-66.87 -56.09,-95.84 -110.68,-126.73 -23.67,-13.39 -49.07,-38.07 -74.45,-45.9 -4.09,-1.26 -10.39,0.66 -14.11,0 -23.38,-4.22 -44.42,-15.81 -68.41,-20.19 -22.59,-4.17 -46.27,-2.17 -73.08,-8.96 -13.6,-4.85 -31.03,-12.11 -41.21,-16.43 -15.74,-7.17 -31.16,-14.63 -46.55,-22.15 l -51.11,-29.2 c 0,0 -28.48,-16.49 3.06,-4.28 25.38,9.83 112.62,53.25 76.08,27.75 -25.2,-12.66 -38.87,-30.64 -61.16,-45.98 0,0 -74.99,-37.19 -86.24,-47.57 -12.37,-11.42 -27.49,-5.1 -37.41,-16.3 -11.65,-13.13 -25.94,-21.01 -36.13,-24.41 -10.17,-3.42 -21.7,-25.78 -37.31,-37.31 -15.61,-11.54 -49.52,-8.15 -79.38,-21.04 -29.85,-12.89 -60.79,-13.06 -60.79,-13.06 -2.96,-0.28 -5.83,-0.46 -8.58,-0.53 -1.18,-0.03 -2.27,-0.02 -3.4,-0.02 -17.46,-0.09 -30.81,3.32 -41.04,7.08 -12.47,4.58 -17.05,2.28 -14.25,0.76 2.8,-1.51 10.92,-9.11 10.92,-9.11 -34.83,0.04 -44.33,23.18 -60.37,40.37 7.29,1.04 28.08,-4.04 17.52,2.08 -20.85,9.97 -61.01,10.69 -61.8,34.67 -0.6,18.81 8.06,14.69 8.06,14.69 14.61,-25.44 59.69,-27.93 92.57,-27.57 61.24,0.74 102.68,34.32 142.82,53.32 13.01,7.82 28.21,18.1 28.21,18.1 l -0.08,-0.3 c 12.67,8.25 25.48,16.25 36.31,26.22 18.9,17.37 31.67,40.04 48.31,59.27 1.93,3.27 5.99,7.26 10.81,11.28 4.69,4.4 9.73,8.5 15.34,12.09 l 0.21,-0.45 2.18,1.46 -0.39,0.82 c 40.39,22.9 78.03,48.25 109.79,79.02 l 0.21,0.36 c 4.56,4.13 28.46,30.81 40,43.76 13.61,18.15 23.42,41.08 29.11,64.18 2.05,8.36 0.75,18.51 4.01,27.56 5.07,14.03 17.81,26.51 26.17,40.39 8.65,14.43 14.37,30.14 20.12,45.9 25.17,69.17 54.28,124.25 108.66,161.6 26.2,18.01 58.02,29.63 76.46,56.95 -13.39,-13.59 -30.82,-23.5 -51.87,-30.09 -59.79,-19.7 -98.68,-70.15 -118.23,-102.2 -15.01,-26.98 -26.61,-57.04 -35.14,-89.93 -2.83,40.54 -12.84,72.15 -26.17,102.84 -11.85,27.29 -22.33,56.15 -44.27,73.46 0,0 -0.84,-0.06 -4.25,1.99 -3.39,2.02 56.57,3.53 56.57,3.53 10.49,-0.38 21.17,-1.89 31.99,-3.29 2.03,0.22 4.51,0.1 7.56,-0.43 32.96,-5.82 67.21,6.45 88.55,21.98 11.08,8.06 30.34,14.52 46.32,18.89 0.26,0.69 1.82,1.47 5.81,2.23 0,0 24.42,7.63 50.37,14.76 17.58,4.81 30.38,8.5 39.27,12.89 5.15,3.28 10.05,7.22 13.85,11.91 7.61,9.39 7.76,20.66 14.1,36.73 6.31,16.03 15.96,28.49 16.1,42.24 0.45,45.08 -42.25,80.98 -88.54,56.95 45.58,11.75 77.9,-10.49 72.44,-53.28 -6.74,-52.87 -86.39,-92.05 -134.83,-112.01 -19.2,-7.91 -41.68,-17.9 -64.38,-20.19 -32.74,-3.32 -62.41,3.67 -90.56,1.84 -36.1,-2.38 -60.11,-21.47 -90.55,-23.89 -26.16,-2.07 -22.61,15.61 -45.31,17.62 -4.7,2.68 -18.98,0 -33.18,0.74 -39.25,-10.37 -64.5,7.57 -96.58,22.04 -23.14,10.45 -47.82,19.96 -72.44,22.04 -61.81,5.24 -99.39,-3.35 -149.91,2.01 -14.25,1.51 -43.81,3.31 -57.85,8.57 -43.71,16.35 -77.17,10.42 -124.65,11.1 -34.54,0.5 -66.59,2.31 -88.15,-1.47 -5.88,-1.06 -11.84,-2.57 -18.12,-3.67 -46.27,-8.09 -116.76,-12.28 -114.69,-53.26 3.44,2.35 2.48,8.74 8.04,9.18 -0.2,-7.53 -0.39,-15.05 2.01,-20.21 -26.91,0.7 -42.78,19.28 -42.25,40.41 0.9,35.93 58.71,50.95 98.59,60.61 39.98,9.64 81.5,20.94 110.69,25.7 -69.91,-10.27 -143.86,-16.88 -197.22,-42.25 -0.75,2.76 -1.23,5.42 -1.55,7.98 -4.22,19.4 -13.43,49.15 -19.91,78.07 -7.46,33.24 4.06,91.59 4.06,91.59 l 0.29,-0.34 c 4.81,29.66 10.94,42.88 16.88,60.61 12.65,37.82 53.52,49.69 82.13,53.28 -24.12,-17.04 -39.54,-38.17 -49.29,-66.46 -1.2,-10.04 -2.14,-19.46 -2.84,-27.77 21.65,67.41 82.07,92.64 82.07,92.64 l 19.34,20.86 -0.25,-0.95 c 33.36,32.26 77.42,57.26 133.43,58.83 28.22,0.79 62.32,-6.64 62.23,-34.32 -0.04,-15.65 -12.28,-28.93 -28.97,-36.27 4.91,-0.97 9.4,-0.29 13.47,1.39 l 17.34,19.41 c 5.74,14.18 5.23,32.1 -4.44,42.9 25.52,21.82 65.26,-2.65 62.36,-31.6 7.47,6.3 12.03,18.2 6.89,27.64 34.34,20.18 53.56,-28.74 88.11,-17.31 -3.25,9.79 -19.89,7.81 -24.95,15.97 45.17,6.46 84.78,-9.42 130.08,-5.82 2.84,-2.47 5.91,-4.93 9.19,-7.36 -84.73,-9.38 -15.9,-9.33 -15.9,-9.33 10.85,0.99 36.92,2.81 47.06,1.01 16.58,-3 27.29,1.04 41.95,6.77 0.35,-0.64 1.82,-0.58 2.71,1.08 7.6,3 16.35,6.31 27.47,9.31 4.31,0.61 8.64,1.72 12.84,3.09 l 1.81,0.37 0.26,0.29 c 5.8,2.02 11.27,4.44 15.96,6.71 42.69,20.52 78.1,68.84 114.56,94.19 60.42,41.99 117.63,-9.88 159.69,-43.54 l -0.27,-0.39 c 10.55,-7.2 24.46,-16.08 39.61,-25.35 39.58,-17.23 91.79,-32.28 119.67,-59.84 22.31,-22.04 29.9,-50.42 39.49,-79.88 8.96,-27.47 26.34,-51.77 36.12,-82.6 1.88,1.58 2.99,3.96 3.63,6.8 -0.27,2.63 -0.7,5.41 0.08,7.13 l 0.53,-0.48 c -0.11,5.38 -1.3,11.69 -3.14,18.33 -8.29,16.88 -22.78,36.11 -21,51.15 0,0 51.42,-26.57 109.76,-52.96 20.09,-9.09 38.48,-24.08 54.53,-41.21 l 4.69,0.1 c -0.55,-1.2 -0.5,-2.93 -0.33,-4.76 28.36,-31.78 48.46,-69.63 55.45,-91.51 1.44,-4.49 3.07,-9.04 4.83,-13.57 l 0.01,-0.05 c 2.2,-5.71 4.57,-11.35 7.02,-16.78 l 0.05,0.08 c 1.03,-1.85 1.68,-3.66 2.37,-5.49 8.42,-18.22 16.69,-33.01 18.99,-37.06 7.41,-9.21 13.39,-21.04 19.78,-31.05 2.22,-24.89 3.41,-50.09 3.41,-75.56 0,-199.46 -69.36,-382.69 -185.2,-527 -6.7,-0.78 -15.83,-2.33 -27.9,-4.8 z m -52.92,-82.53 c -40.52,-13.23 -81.83,-38.11 -108.21,-40.61 -79.4,-7.5 -93.63,27.79 -30.19,33.61 23.94,2.2 59.29,4.91 87.52,18.29 41.64,19.78 84.29,38.98 112.76,53.23 -19.47,-22.6 -40.15,-44.11 -61.88,-64.52 z m -865.53,-3.85 c -6.73,-2.26 -6.73,1.07 -6.73,1.07 0,0 -12.2,17.42 -14.09,33.64 -1.91,16.07 2.23,30.38 6.26,32.5 4.07,2.2 4.95,-7.16 8.26,-18.88 3.33,-11.84 19.78,-36.13 19.78,-36.13 2.34,-5 -6.65,-9.95 -13.48,-12.2 z m 42.43,-7.43 c -7.73,-2.57 -7.72,1.26 -7.72,1.26 0,0 -13.94,19.78 -16.06,38.24 -2.14,18.26 2.66,34.52 7.3,36.95 4.67,2.51 5.67,-8.16 9.42,-21.52 3.76,-13.43 22.6,-41.09 22.6,-41.09 2.67,-5.68 -7.71,-11.25 -15.54,-13.84 z m 14.34,51.42 c -2.66,23.12 3.53,43.78 9.47,46.91 5.98,3.19 7.21,-10.35 11.96,-27.27 4.76,-17.04 28.77,-52.08 28.77,-52.08 3.4,-7.18 -9.92,-14.29 -19.94,-17.55 -9.92,-3.24 -9.89,1.54 -9.89,1.54 0,0 -17.72,25.08 -20.37,48.45 z m 344.3,264.59 c 4.16,3.72 8.54,-4.1 16.65,-12.97 8.18,-8.98 36.92,-23.11 36.92,-23.11 4.63,-3.42 -4.59,-11.97 -12.08,-17.13 -7.47,-5.16 -8.66,-2.13 -8.66,-2.13 0,0 -21.16,9.99 -29.17,23.65 -7.97,13.46 -7.84,27.91 -3.66,31.69 z m -68.15,-36.32 c 5.11,4.79 10.57,-5.35 20.77,-16.86 10.31,-11.78 46.52,-30.52 46.52,-30.52 5.9,-4.44 -5.63,-15.55 -14.96,-22.21 -9.36,-6.66 -10.92,-2.72 -10.92,-2.72 0,0 -26.46,13.4 -36.55,31.17 -9.99,17.53 -10,36.37 -4.86,41.14 z m -60.8,-81.74 c -9,18.83 -8.22,38.34 -3.02,43.06 5.25,4.73 10.2,-6.14 19.69,-18.82 9.63,-12.88 44.35,-34.41 44.35,-34.41 5.56,-5 -6.19,-15.86 -15.65,-22.26 -9.41,-6.35 -10.8,-2.21 -10.8,-2.21 0,0 -25.38,15.51 -34.57,34.64 z m -55.66,-46.52 c -7.53,19.87 -5.51,39.81 -0.21,44.23 5.4,4.43 9.44,-7.08 17.74,-20.66 8.43,-13.86 40.51,-38.43 40.51,-38.43 5.09,-5.51 -6.92,-15.77 -16.52,-21.57 -9.48,-5.72 -10.46,-1.32 -10.46,-1.32 0,0 -23.45,17.66 -31.06,37.75 z m -75.01,-121.98 c -9.98,-3.02 -9.89,1.61 -9.89,1.61 0,0 -16.92,24.38 -18.9,46.94 -1.96,22.39 4.85,42.34 10.86,45.31 6.07,3.02 6.94,-10.05 11.14,-26.43 4.3,-16.56 27.21,-50.59 27.21,-50.59 3.18,-6.96 -10.3,-13.73 -20.42,-16.84 z m 20.3,78.13 c -4.88,22.44 -0.13,43.46 5.88,47.35 6.06,3.95 8.61,-9.17 15.12,-25.14 6.57,-16.04 35.41,-47.57 35.41,-47.57 4.31,-6.67 -9.23,-15.5 -19.66,-20.14 -10.27,-4.55 -10.72,0.28 -10.72,0.28 0,0 -21.1,22.52 -26.03,45.22 z m 271.98,527.71 c 0,0 5.87,-0.99 3.22,-9.29 -2.64,-8.28 -3.15,-33.94 4.88,-45 8.07,-11.09 -5.53,-6.88 -16.15,4.32 -10.63,11.15 -18.15,31.7 -15.86,45.66 0,0 -0.61,5.87 23.91,4.31 z m -37.52,-67.96 c 12.88,-14.37 -6.84,-10.53 -23.34,3.63 -16.48,14.11 -29.99,41.66 -28.75,61.54 0,0 -1.69,8.15 32.94,9.54 0,0 8.42,-0.53 5.81,-12.53 -2.47,-11.98 0.45,-47.93 13.34,-62.18 z m -87.89,-74.93 c 75.07,-4.92 128.89,21.11 167.01,47.73 10.04,7 23.31,24.05 40.27,12.85 -7.23,-14.98 -26.39,-24.85 -42.26,-33.04 -27.81,-14.37 -52.47,-26.94 -84.52,-34.9 54.02,8.26 92.4,30.76 132.81,51.42 4.95,-10.38 10.51,-31.21 14.16,-48.84 l 0.52,0.05 c 0,0 3.67,-9.88 2.58,-19.53 0.15,-4.6 -0.78,-8.56 -4.07,-10.74 -1.11,-1.42 -2.44,-2.73 -4.11,-3.82 -14.75,-9.67 -58.52,-31.04 -93.63,-33.58 -1.16,-0.07 -2.27,-0.22 -3.42,-0.33 l -2.59,-0.73 -0.07,0.48 c -31.84,-3.69 -52.44,-16.81 -11.72,-10.12 40.74,6.72 128,21.57 96.21,9.62 l 0.11,0.02 c -39.69,-15.51 -91.77,-30.69 -142.89,-25.71 -33.03,3.2 -67.2,19.4 -96.58,34.89 -29.34,15.45 -57.18,35.77 -88.54,42.22 -23.87,4.94 -43.59,-1.94 -64.39,-5.5 -13.85,-2.34 -33.15,-7.95 -41.54,0.7 -3.54,4.19 -0.72,8.49 -0.72,8.49 7.94,19.62 31.07,31.19 50.3,36.72 60.36,17.37 118.83,-14.55 177.08,-18.35 z m 17.01,65.76 c 12.62,-18.31 -9.29,-10.98 -26.04,7.72 -16.76,18.69 -28.07,52.35 -23.77,75.03 0,0 -0.73,9.53 38.96,5.89 0,0 9.52,-1.89 4.9,-15.19 -4.73,-13.42 -6.64,-55.1 5.95,-73.45 z m -79.92,8.72 c 12.44,-20.82 -10.82,-11.69 -27.75,9.78 -16.94,21.37 -27.09,59.1 -20.93,83.8 0,0 -0.14,10.62 42.73,4.68 0,0 10.14,-2.56 4.23,-17.09 -5.93,-14.48 -10.72,-60.33 1.72,-81.17 z m -82.62,11.5 c 12.72,-21.08 -10.85,-12.08 -28.06,9.58 -17.23,21.59 -27.69,59.9 -21.58,85.21 0,0 -0.23,10.74 43.13,5.29 0,0 10.28,-2.5 4.37,-17.35 -5.89,-14.84 -10.51,-61.7 2.14,-82.73 z m -75.72,-23.8 c 15.61,-27.27 -11.73,-15.72 -32.57,12.24 -20.82,27.97 -34.79,77.68 -29.28,110.62 0,0 -0.8,14.07 48.83,7.3 0,0 11.92,-3.09 6.02,-22.58 -5.92,-19.36 -8.62,-80.28 7,-107.58 z m -80.38,20.29 c 15.56,-23.8 -11.82,-14.71 -32.58,9.48 -20.74,24.17 -34.4,68.31 -28.65,98.18 0,0 -0.78,12.63 49.05,8.82 0,0 11.91,-2.29 5.83,-19.98 -6.03,-17.69 -9.15,-72.64 6.35,-96.5 z m -85.14,27.74 c 10.98,-20.46 -10.36,-11.36 -25.48,9.78 -15.12,21.03 -23.44,58.05 -17.05,82.25 0,0 0.14,10.39 39.73,4.3 0,0 9.4,-2.58 3.46,-16.71 -5.88,-14.2 -11.63,-59.14 -0.66,-79.62 z m -64.93,17.69 c 10.31,-16.32 -8.4,-9.23 -22.34,7.51 -13.92,16.76 -22.72,46.32 -18.28,65.79 0,0 -0.36,8.33 33.87,3.93 0,0 8.22,-1.94 3.71,-13.4 -4.32,-11.4 -7.32,-47.51 3.04,-63.83 z m -68.19,-11.78 c 12.6,-18.31 -9.3,-10.98 -26.05,7.74 -16.75,18.69 -28.06,52.34 -23.76,75.03 0,0 -0.74,9.51 38.95,5.89 0,0 9.52,-1.89 4.9,-15.21 -4.74,-13.41 -6.63,-55.07 5.96,-73.45 z m -55.02,4.85 c 12.88,-14.35 -6.83,-10.55 -23.32,3.6 -16.5,14.13 -30.01,41.69 -28.77,61.56 0,0 -1.68,8.15 32.94,9.54 0,0 8.42,-0.53 5.83,-12.55 -2.48,-11.98 0.43,-47.93 13.32,-62.15 z m 755.27,-755.37 c -38.14,-13.18 -105.91,-46.26 -160.35,-73.94 -13.01,-0.6 -26.11,-0.94 -39.29,-0.94 -465.3,0 -842.48,377.19 -842.48,842.49 0,360.48 226.45,668 544.82,788.29 1.61,-1.49 3.31,-2.93 5.11,-4.33 3.61,-2.81 9.58,-4.3 12.67,-8 4.11,-4.94 2.4,-14.97 4.19,-21.16 5.55,-19.11 17.35,-36.65 37,-50.99 2.87,-2.12 8.35,-3.14 10.85,-5.95 5.47,-6.21 3.88,-16.65 8.01,-23.83 4.35,-7.55 11.76,-16.67 20.9,-23.69 5.01,-3.86 12.5,-5.92 17.18,-10.52 3.79,-3.71 4.84,-10.39 7.55,-15.95 7.34,-15.01 26.73,-32.41 36.04,-48.12 1.23,-2.07 2.19,-4.27 3,-6.51 3.88,-7.99 13.26,-24.92 26.05,-32.75 0,0 1.33,-23.51 24.78,-50.31 -47.5,2.56 -93.32,29.42 -128.56,2.74 -10.17,11.1 -42.79,19.8 -56.75,4.23 -10.31,17.92 -64.99,29.36 -75.62,1.04 -77.73,34.87 -171.54,-14.85 -201.69,-64.76 -5.6,-2.67 -10.83,-5.48 -15.77,-8.37 -21.28,6.4 -50.1,8.67 -81.29,-13.82 -30.74,-22.18 -62.88,-121.66 -57.35,-190.53 0.6,-7.38 14.59,-24.8 19.62,-59.7 5,-34.62 8.81,-45.99 8.81,-45.99 -6.84,-11.93 -15,-17.26 -16.11,-31.22 -2.41,-30.21 23.42,-46.63 47.62,-62.1 8.61,-4.01 18.36,-6.89 28.94,-7.27 6.39,-10.12 31.01,-44.33 71.72,-44.33 1,0 2.03,0.07 3.03,0.13 15.54,-13.07 31.75,-16.58 20.56,-0.47 -0.92,1.33 -1.71,2.82 -2.45,4.35 7.48,-4.43 16.54,-8.77 24.61,-9.56 0.16,-0.01 3.96,-0.97 7.13,-0.97 1.12,0 4.46,0 5.64,2.57 1.17,2.58 -1.21,5.35 -1.99,6.23 -3.26,3.76 -6.93,13.54 -9.69,22.65 2.98,-5.46 6.23,-10.66 9.87,-15.13 19.37,-23.78 46.47,-35.02 31.34,-11.36 -4.86,7.58 -7.63,17.91 -8.98,28.88 7.5,-9.25 20.42,-19.99 41.43,-24.29 17.36,-16.51 38.94,-23.26 26.01,-5.71 -3.3,4.49 -5.46,10.27 -6.75,16.59 10.47,-12.55 28.17,-28.68 49.88,-28.68 l 1.58,0.04 0.44,0.02 c 14.89,-10.07 27.36,-11.75 16.22,2.77 -4.83,6.32 -7.46,15.08 -8.64,24.34 9.84,-20.08 28.82,-47.69 61.49,-56.57 0.24,-0.09 5.87,-1.65 10.52,-1.65 3.63,0 5.91,0.93 7,2.92 1.58,2.85 -0.5,6.17 -1.18,7.26 -2.11,3.38 -4.07,7.59 -5.77,11.74 14.67,-8.6 25.51,-9.33 14.1,4.68 -5.9,7.22 -9.05,17.42 -10.34,27.95 7.97,-21.31 24.22,-51.23 56.3,-70.83 0.24,-0.11 6.01,-2.84 12.42,-2.84 3.09,0 5.84,0.65 8.23,1.85 2.04,1.05 3.38,2.77 3.93,4.98 1.67,6.68 -4.67,16.16 -5.24,16.93 -2.64,5.2 -7.48,16.18 -9.86,25.78 l 0.24,-0.19 c 23.19,-18.71 53.29,-27.37 34.72,-8.72 -11.27,11.35 -15.62,30.79 -16,46.67 6.77,-19.01 23.24,-51.94 57.35,-58.45 0.23,-0.02 5.52,-1.04 9.42,-1.04 2.17,0 4.78,0.25 5.69,2.33 0.4,0.88 0.56,2.3 -0.99,4.04 -2.55,2.86 -6.18,11.52 -8.1,18.52 1.62,-1.24 3.19,-2.55 4.89,-3.63 16.54,-10.85 36.06,-16.54 38.61,-13.02 5.29,-4.34 13.57,-10.03 24.82,-14.99 1.05,-2.39 2.09,-4.82 2.93,-7.24 0,0 5.25,-14.59 7.27,-22.48 -26.76,6.93 -72.56,20.35 -106.65,12.83 -26.92,-5.92 -97.1,-44.72 -80.12,-71.99 1.13,-1.82 2.58,-3.09 4.24,-4.11 l 1.05,-0.4 c 6.7,-3.57 18.52,-5.67 30.95,-5.57 l 4.52,0.13 c 7.22,0.39 26.15,3.12 32.56,5.2 18.77,6.1 35.53,2.43 35.53,2.43 l -0.24,-0.17 c 13.34,-1.55 27.41,-6.24 41.94,-13.66 15.61,-7.94 36.85,-21.06 42.26,-27.53 9.76,-11.73 -5.19,-39.21 -10.76,-56.13 -0.27,-1 -0.61,-2.04 -0.93,-3.08 l -0.4,-1.4 -0.05,0.03 c -0.79,-2.37 -1.76,-4.86 -2.8,-7.4 -0.95,1.19 -1.79,2.34 -2.43,3.42 -5.34,8.98 -8.21,16.84 -10.97,13.23 -2.76,-3.62 -2.89,-17.96 2.36,-31.49 0.54,-1.4 1.2,-2.73 1.91,-4.06 -6.05,-11.06 -13.38,-22.64 -21.11,-33.75 -6.02,5.7 -12.11,12.11 -15.05,17.23 -6.87,11.76 -10.53,22.09 -14.04,17.35 -3.54,-4.72 -3.64,-23.77 3.09,-41.67 2.2,-5.83 5.55,-11.11 9.07,-15.73 -5.34,-6.74 -10.55,-12.95 -15.3,-18.23 -2.13,-2.34 -4.65,-4.99 -7.32,-7.74 -7.34,7.56 -16.63,17.94 -20.38,25.45 -6.54,13.12 -9.91,24.3 -13.63,19.54 -3.71,-4.8 -4.43,-24.95 1.75,-44.43 2.55,-7.98 6.93,-15.27 11.27,-21.19 -7.96,-7.58 -16.6,-15.59 -25.47,-23.67 -5.38,7.14 -10.69,14.98 -13.12,20.98 -5.83,14.19 -8.6,26.23 -12.54,21.61 -3.88,-4.63 -5.58,-25.57 -0.35,-46.44 1.29,-5.15 3.26,-10.09 5.5,-14.67 -8.79,-7.86 -17.3,-15.38 -25.11,-22.19 -2.29,4.97 -4.2,9.69 -5.26,13.58 -4.58,16.9 -6.3,30.85 -10.81,26.57 -4.51,-4.18 -8.35,-26.68 -5.05,-50.59 0.31,-2.3 0.76,-4.57 1.27,-6.85 l -2.2,-1.89 c -5.11,-4.41 -10.66,-9.72 -16.39,-15.56 -1.43,4.49 -2.54,8.7 -3.12,12.19 -2.91,17.61 -3.35,31.7 -7.98,28.33 -4.6,-3.31 -10.11,-25.03 -9,-49.33 0.17,-3.82 0.63,-7.68 1.27,-11.45 -6.74,-7.6 -13.41,-15.44 -19.69,-23.09 -3.64,9.35 -6.93,19.01 -8.2,26 -3.33,18.42 -4.03,33.23 -8.74,29.6 -4.31,-3.29 -9.05,-23.01 -8.53,-45.96 -4.7,-3.44 -10.79,-19.44 -10.99,-37.57 -0.09,-6.17 1.01,-12.49 2.51,-18.2 -3.05,-4.3 -8.38,-7.28 -12.11,-12.52 -19.24,-26.91 -11.39,-58.98 30.18,-66.11 12.74,-39.25 45.04,-58.31 94.58,-58.76 6.65,-0.06 13.6,2.26 20.12,1.85 7.36,-0.49 13.42,-3.48 20.13,-3.69 36.11,-1.1 55.04,10.39 82.49,18.39 20.47,5.94 41.6,7.84 54.34,12.84 19.51,7.65 28.78,28.62 44.26,38.56 5.77,3.7 16.64,5.44 26.17,11.01 8.04,4.73 15,13.32 22.13,16.53 6.23,2.82 16.6,2.26 24.14,5.51 12.64,5.48 26.6,17.31 42.27,25.73 32.81,17.55 59.51,30.53 94.57,45.89 16.75,7.34 34.47,24.6 44.27,25.71 11.62,1.34 25.15,-8.36 34.21,-7.34 18.46,-21.95 24.89,-52.62 24.12,-92.06 1.09,-0.11 0.29,-9.78 0.29,-9.78 0,0 6.45,-84.66 -125.77,-130.38 z M 2319.1,3773.92 c 13.83,-3.85 29.29,-11.71 14.56,-35.21 -9.06,9.68 -12.13,22.44 -14.56,35.21 z m 26.38,-30.96 c 4.42,7.74 0.02,11.68 2.36,16.37 39.74,-5.12 43.17,-33.03 26,-72.62 -26.49,8.95 -33.54,26.66 -38.58,44.64 4.25,4.61 7.55,6.9 10.22,11.61 z m 43.39,-7.87 c 36.99,-16.3 42.8,-57.19 17.22,-110.53 -8.74,5.74 -15.55,12.62 -20.46,20.22 -3.89,6.03 -9.35,15.9 -8.18,24.01 0.82,5.58 5.24,13.07 7.5,19.31 6.47,17.93 8.99,34.11 3.92,46.99 z m 177.23,-155.25 c -0.64,1.95 0.67,1.89 2.28,3.33 55.29,-11.22 59.69,-65.17 35.95,-105.83 -11.26,-19.25 -22.27,-29.38 -39.55,-24.01 -14.3,4.46 -16.25,15.95 -23.14,23.85 28.17,41.04 27.62,71.27 24.46,102.66 z m -63.91,40.61 c -0.24,5.01 -1.15,10.58 0.87,15.52 4.77,-0.4 13.12,-1.61 19.95,-5.23 31.05,-16.4 43.9,-75.07 25.85,-109.56 -7.75,-14.78 -15.59,-21.96 -30.09,-17.81 -23.4,6.72 -30.19,33.21 -39.62,44.17 25.51,27.2 24.04,51.08 23.04,72.91 z m -74.76,73.65 1.52,0.74 c 60.84,-21.44 95.74,-61.97 40.45,-136.4 -21.08,10.57 -32.94,24.68 -38.43,40.68 -3.23,9.38 -5.72,10.51 -3.53,22.15 4.69,25.14 6.27,52.87 -0.01,72.83 z m 236.11,-312.56 c -2.27,-1.01 -3.87,-1.76 -3.87,-1.76 -7.39,-3.78 -15.16,-6.03 -22.54,-7.31 -45.74,9.82 -59.56,61.95 -59.56,61.95 42.74,18.79 66.89,72.89 51.68,102.65 0.43,1.11 1.42,0.93 2.42,0.7 19.37,-8.54 39.75,-22.88 49.66,-38.41 18.83,-29.45 24.41,-73.75 8.73,-109.34 -6.98,-1.61 -11.46,-3.21 -17.08,-5.19 -0.95,-0.25 -1.94,-0.54 -2.92,-0.88 l -5.22,-1.92 -0.53,-0.21 -0.82,-0.27 0.05,-0.01 z m 73.78,36.96 c -3.13,-2.66 -6.21,-5.27 -9.06,-7.69 -2.62,-5.02 -10.66,-11.66 -20.93,-16.01 8.15,24.72 9.13,50.99 9.7,70.45 16.84,-8.75 28.08,-20.77 34.57,-34.43 -2.08,-1.8 -4.21,-3.66 -6.4,-5.55 -2.88,5.37 -6.87,10.23 -12.09,14.35 2.36,-6.86 3.71,-13.9 4.21,-21.12 z m -92.4,328 c 412.7,0 756.05,-296.74 828.41,-688.48 -7.89,5.56 -16.59,10.5 -26.45,14.61 -20.63,92.05 -65.01,150.17 -156.18,183.4 -30.56,11.13 -59.51,24.02 -89.66,37.15 1.74,97.97 -112.11,95.91 -183.06,146.34 -30.86,21.99 -65.84,62.56 -101.14,70.06 -68.27,14.52 -110.27,-33.06 -150.59,-66.3 -9.89,10.8 -24.72,21.35 -46.23,30.94 0,0 -38.48,54.88 -56.43,65.21 -1.19,0.68 -1.98,1.3 -2.5,1.92 -9.92,4.65 -22.34,7.27 -31.12,13.07 -8.67,5.7 -10.31,19.19 -18.99,25.7 -4.25,3.19 -10.84,6.65 -16.6,8.96 -6.96,2.79 -18.88,2.27 -25.88,6.1 -8.63,4.73 -9.32,20.11 -15.57,27.74 -6.89,8.43 -15.75,15.32 -30.08,20.14 -5.81,1.93 -14.59,2.06 -19.84,4.87 -5.86,3.17 -7.29,13.09 -11.83,19.17 -10.55,14.18 -28.36,25.18 -48.68,32.36 -4.37,1.54 -10.25,1.54 -13.45,3.69 -3.77,2.51 -4.21,8.78 -6.49,13.58 70.85,19.35 145.38,29.77 222.36,29.77 z m 836.59,-742.56 c -8.56,14.67 -16.48,28.78 -19.38,41.21 5.81,-3.84 10.91,-8.12 15.58,-12.68 1.44,-9.45 2.67,-18.97 3.8,-28.53 z m -836.59,785.09 c -91.12,0 -179,-13.85 -261.73,-39.43 -0.93,1.64 -1.92,3.24 -3.23,4.52 -7.64,7.44 -16.71,13.1 -35.56,8.27 -6.68,8.65 -15.49,15.6 -29.86,18.55 l -0.45,-0.77 c 1.82,-17.15 4.28,-34.48 17.33,-46.35 l -0.19,-2.08 C 1997.3,3605.11 1759.91,3282.33 1759.91,2904 c 0,-488.79 396.23,-885.02 885.01,-885.02 488.78,0 885.04,396.23 885.04,885.02 0,488.81 -396.26,885.03 -885.04,885.03 z M 2195.1,3323.54 c 0,0 -34.81,-7.93 -44.29,-69.48 0,0 -1.65,-31.07 8.08,-24.19 -8.2,37.31 27.27,54.21 35.41,58.01 11.45,5.09 20.91,3.38 21.63,-6.34 0.78,-10.49 -11.21,-15.13 -14.8,-25.94 12.73,7.18 41.2,24 38.24,45.9 -2.18,16.1 -17.34,30.4 -44.27,22.04 z m 457.68,-37.78 c -59.82,35.02 -214.44,28.94 -250.75,31.75 -35.74,2.72 -53.6,-42.72 -53.6,-42.72 -0.47,-9.62 7.4,1.41 7.4,1.41 23.35,42.08 43.88,34.38 43.88,34.38 73.99,-21.61 87.17,-130.29 90.25,-155.48 3.06,-25 9.38,-8.72 9.38,-8.72 7.19,62.54 -38.41,138.76 -48,148.55 -9.58,9.73 -0.43,15.23 30.13,6.68 92.03,-25.84 100.65,-173.22 106.2,-191.09 5.54,-17.8 9,-0.68 9,-0.68 -12.45,135.51 -63.96,168.92 -77.69,187.56 -5.7,7.73 40.82,8.9 61.31,-4.43 115.64,-74.71 102.66,-217.79 113.07,-197.37 10.55,20.85 -29.1,150.34 -84.81,194.41 -11.15,8.79 38.66,-6.58 57.02,-23.49 87,-80.41 97.7,-167.53 104.39,-192.7 6.57,-25 9.78,-16.53 9.78,-16.53 1.21,85.15 -66.26,193.01 -126.96,228.47 z m 167.67,59.29 c 12.83,6.96 27.96,52.1 59.04,33.35 23.1,-13.93 34.1,-17.46 34.1,-17.46 0,0 -16.13,-4.53 -23.47,-16.63 -7.34,-12.1 -16.14,-21.41 -41.81,-17.62 -26.95,4.02 -31.88,-0.21 -45.46,-2.42 0,0 4.76,13.79 17.6,20.78 z m -49.59,-36.2 c 19.79,-4.3 38.04,-11.99 56.34,-23.86 20.27,-13.17 42.21,-37.36 72.44,-34.91 9.64,0.77 27.16,10.1 34.21,14.7 8.82,5.75 29.74,19.45 24.15,40.39 -2.48,9.3 -13.54,10.78 -20.13,18.37 -9.13,10.56 -8.78,20.93 -16.09,33.05 15.93,-3.2 25.06,-12.64 42.24,-14.7 -27.07,24.28 -58.26,44.78 -96.58,58.78 2.88,1.63 4.71,8.31 14.09,11.01 8.45,2.44 35.7,-1.72 18.11,1.85 -17.66,4.94 -28.62,-0.09 -40.23,-7.36 -26.68,-16.67 -48.41,-54.95 -76.48,-71.6 -12.18,-7.27 -24.09,-5.6 -34.22,-18.39 6.56,-13.1 13.21,-5.39 22.15,-7.33 z m 209.28,23.88 c -6.66,-3.87 4.19,-7.38 6.03,-9.19 7.67,-7.55 24.8,-21.4 30.18,-33.05 11,-23.83 7.62,-60.3 -12.08,-73.48 -13.27,-8.86 -78.22,-33.08 -106.63,-33.05 -79.93,0.11 -88.04,87.86 -136.84,117.54 0.87,-8.4 7,-25.99 13.98,-35.11 27.44,-35.83 53.66,-109.66 130.81,-97.33 27.26,4.36 78.26,23.19 98.72,35.98 22.22,13.85 38.72,67.03 16.08,96.46 -10.14,13.18 -34.41,29.88 -40.25,31.23"
80
+ style="fill:#403c3d;fill-opacity:1;fill-rule:evenodd;stroke:none"
81
+ id="path76" />
82
+ </g>
83
+ </g>
84
+ <path
85
+ inkscape:connector-curvature="0"
86
+ d="m 376.40655,56.024215 0,23.8525 24.42625,0 0,-23.8525 -24.42625,0 z m 0.09,131.692505 24.24875,0 0,-96.436255 -24.24875,0 0,96.436255 z m 305.7425,-96.436255 -35.3525,96.436255 -18.88,0 -35.5375,-96.436255 25.3575,0 19.61875,59.602505 19.43625,-59.602505 25.3575,0 z m -97.74375,96.436255 -23.5075,0 0,-8.885 c -6.29375,6.66375 -14.31625,9.995 -24.06125,9.995 -9.505,0 -17.09375,-2.83625 -22.76875,-8.51375 -6.54125,-6.53875 -9.80875,-15.67 -9.80875,-27.39375 l 0,-61.638755 24.2475,0 0,58.306255 c 0,6.04875 1.70625,10.61625 5.12125,13.6975 2.80625,2.5925 6.34375,3.8875 10.61125,3.8875 4.39,0 7.99,-1.295 10.79625,-3.8875 3.4125,-3.08125 5.12125,-7.64875 5.12125,-13.6975 l 0,-58.306255 24.24875,0 0,96.436255 z m -114.8675,-48.31 c 0,-8.51375 -0.67125,-14.6225 -2.0125,-18.32375 -2.44125,-6.17 -7.1375,-9.255 -14.09,-9.255 -6.95625,0 -11.6525,3.085 -14.09125,9.255 -1.34125,3.70125 -2.0125,9.81 -2.0125,18.32375 0,8.515 0.67125,14.62375 2.0125,18.32375 2.43875,6.295 7.135,9.44125 14.09125,9.44125 6.9525,0 11.64875,-3.14625 14.09,-9.44125 1.34125,-3.7 2.0125,-9.80875 2.0125,-18.32375 z m 24.24875,0 c 0,9.8725 -0.43375,17.2775 -1.29625,22.2125 -1.35875,8.02125 -4.1975,14.19125 -8.51375,18.5075 -5.80375,5.805 -13.63625,8.7 -23.50875,8.7 -9.8725,0 -17.8925,-3.3925 -24.06125,-10.18 l 0,9.07 -23.3225,0 0,-131.788755 24.2475,0 0,43.86875 c 5.77875,-6.415 13.53,-9.625 23.24625,-9.625 9.83875,0 17.64875,2.9 23.42875,8.7 4.305,4.318755 7.1325,10.488755 8.48625,18.508755 0.8625,4.93625 1.29375,12.28 1.29375,22.02625 z m -130.04375,48.31 -13.69625,0 c -9.255,0 -16.4125,-2.8975 -21.47125,-8.69875 -4.4425,-5.05875 -6.6625,-11.35125 -6.6625,-18.88 l 0,-104.210005 24.2475,0 0,102.730005 c 0,5.80125 2.8075,8.69875 8.42375,8.69875 l 9.15875,0 0,20.36"
87
+ style="fill:#403c3d;fill-opacity:1;fill-rule:nonzero;stroke:none"
88
+ id="path74" />
89
+ <g
90
+ transform="matrix(0.23169071,0,0,-0.23371708,-280.79355,1099.9435)"
91
+ id="g66-4">
92
+ <g
93
+ id="g68-1"
94
+ clip-path="url(#clipPath70-6)">
95
+ <g
96
+ id="g3197"
97
+ transform="translate(-350.10267,-350.10267)">
98
+ <path
99
+ id="path76-6"
100
+ style="fill:#e9e9e9;fill-opacity:1;fill-rule:evenodd;stroke:none"
101
+ d="m 3504.81,2908.41 c 0,-483.58 -391.32,-875.6 -874.02,-875.6 -482.71,0 -874,392.02 -874,875.6 0,483.61 391.29,875.63 874,875.63 482.7,0 874.02,-392.02 874.02,-875.63"
102
+ inkscape:connector-curvature="0" />
103
+ <path
104
+ id="path78"
105
+ style="fill:#403c3d;fill-opacity:1;fill-rule:evenodd;stroke:none"
106
+ d="m 3482.08,2908.41 c 0,-471 -381.13,-852.83 -851.29,-852.83 -470.16,0 -851.27,381.83 -851.27,852.83 0,471.02 381.11,852.85 851.27,852.85 470.16,0 851.29,-381.83 851.29,-852.85"
107
+ inkscape:connector-curvature="0" />
108
+ <path
109
+ id="path80"
110
+ style="fill:#adda1a;fill-opacity:1;fill-rule:nonzero;stroke:none"
111
+ d="m 3473.33,3029.95 c -6.42,7.53 -13.81,14.41 -22.76,20.33 3.77,-16.2 15.99,-35.21 27.12,-54.62 -1.18,11.52 -2.73,22.91 -4.36,34.29 z M 3070.25,2284 c -63.63,-5.85 -49.36,-41.32 30.29,-33.77 29.21,2.77 76.64,33.01 121.13,44.56 22.41,21.66 43.74,44.44 63.68,68.43 -27,-14.62 -77.9,-37.33 -127.3,-60.84 -28.31,-13.46 -63.77,-16.17 -87.8,-18.38 z m 409,691.11 c -9.21,11.12 -16.63,28.08 -26.56,40.46 -2.32,4.07 -10.61,18.92 -19.05,37.24 -0.7,1.84 -1.35,3.66 -2.39,5.51 l -0.05,-0.07 c -2.45,5.45 -4.83,11.12 -7.04,16.85 l -0.01,0.06 c -1.76,4.55 -3.39,9.12 -4.84,13.64 -7.01,21.99 -27.18,60.03 -55.62,91.97 -0.17,1.83 -0.23,3.57 0.33,4.78 l -4.7,-0.11 c -16.1,17.22 -34.56,32.28 -54.71,41.42 -58.53,26.53 -110.11,53.23 -110.11,53.23 -1.79,-15.12 12.75,-34.44 21.07,-51.41 1.85,-6.68 3.04,-13.01 3.15,-18.42 l -0.53,0.48 c -0.79,-1.72 -0.36,-4.51 -0.09,-7.16 -0.63,-2.86 -1.75,-5.25 -3.64,-6.83 -9.8,30.98 -27.24,55.39 -36.22,83.01 -9.63,29.6 -17.24,58.12 -39.62,80.27 -27.97,27.69 -80.34,42.83 -120.05,60.13 -15.2,9.33 -29.15,18.25 -39.73,25.48 l 0.27,0.4 c -42.2,33.83 -99.59,85.95 -160.2,43.76 -36.58,-25.48 -72.09,-74.05 -114.92,-94.66 -4.7,-2.29 -10.18,-4.72 -16.01,-6.75 l -0.25,-0.29 -1.82,-0.38 c -4.22,-1.37 -8.56,-2.48 -12.88,-3.09 -11.15,-3.02 -19.94,-6.36 -27.56,-9.36 -0.89,-1.67 -2.36,-1.72 -2.72,-1.08 -14.7,-5.76 -25.44,-9.82 -42.09,-6.82 -10.16,1.82 -36.31,-0.01 -47.19,-1.01 0,0 -69.05,-0.05 15.93,9.37 -3.27,2.46 -6.36,4.92 -9.21,7.4 -45.43,-3.61 -85.18,12.35 -130.49,5.85 5.09,-8.21 21.77,-6.21 25.04,-16.05 -34.67,-11.48 -53.95,37.68 -88.39,17.4 5.15,-9.48 0.58,-21.45 -6.91,-27.78 2.9,29.09 -36.96,53.69 -62.56,31.76 9.7,-10.86 10.2,-28.86 4.46,-43.12 l -17.4,-19.5 c -4.08,-1.69 -8.59,-2.37 -13.51,-1.4 16.74,7.37 29.01,20.73 29.06,36.46 0.09,27.81 -34.12,35.28 -62.43,34.49 -56.18,-1.59 -100.39,-26.71 -133.84,-59.13 l 0.24,0.95 -19.4,-20.96 c 0,0 -60.6,-25.35 -82.33,-93.09 0.7,8.35 1.64,17.81 2.85,27.9 9.79,28.43 25.25,49.66 49.44,66.79 -28.7,-3.61 -69.69,-15.54 -82.38,-53.55 -5.96,-17.81 -12.11,-31.1 -16.94,-60.9 l -0.29,0.34 c 0,0 -11.55,-58.65 -4.07,-92.05 6.5,-29.06 15.74,-58.97 19.98,-78.46 0.31,-2.57 0.8,-5.25 1.55,-8.02 53.53,25.5 127.71,32.14 197.84,42.47 -29.28,-4.79 -70.93,-16.14 -111.03,-25.84 -40.01,-9.7 -98.01,-24.8 -98.91,-60.92 -0.53,-21.23 15.39,-39.9 42.38,-40.6 -2.4,5.18 -2.21,12.74 -2.01,20.32 -5.57,-0.46 -4.61,-6.86 -8.07,-9.23 -2.07,41.18 68.63,45.39 115.05,53.52 6.31,1.1 12.28,2.63 18.18,3.7 21.63,3.79 53.78,1.97 88.43,1.46 47.63,-0.67 81.2,5.28 125.04,-11.15 14.08,-5.29 43.74,-7.09 58.03,-8.62 50.68,-5.38 88.38,3.26 150.38,-2.01 24.7,-2.09 49.47,-11.64 72.68,-22.15 32.18,-14.54 57.5,-32.58 96.88,-22.16 14.24,-0.73 28.56,1.95 33.28,-0.73 22.77,-2.03 19.21,-19.81 45.45,-17.71 30.54,2.43 54.62,21.61 90.84,24.01 28.24,1.84 57.99,-5.19 90.84,-1.86 22.77,2.31 45.33,12.35 64.59,20.29 48.59,20.07 128.49,59.45 135.25,112.57 5.48,43.01 -26.95,65.35 -72.67,53.55 46.44,24.15 89.27,-11.93 88.81,-57.23 -0.13,-13.82 -9.81,-26.35 -16.14,-42.45 -6.37,-16.16 -6.51,-27.48 -14.14,-36.9 -3.81,-4.74 -8.73,-8.7 -13.9,-11.99 -8.91,-4.41 -21.76,-8.11 -39.39,-12.95 -26.03,-7.17 -50.53,-14.82 -50.53,-14.82 -4,-0.78 -5.56,-1.56 -5.83,-2.26 -16.03,-4.39 -35.35,-10.88 -46.46,-18.98 -21.4,-15.61 -55.77,-27.94 -88.83,-22.1 -3.06,0.55 -5.56,0.66 -7.59,0.44 -10.86,1.42 -21.56,2.92 -32.09,3.3 0,0 -60.14,-1.51 -56.74,-3.53 3.41,-2.07 4.26,-2.02 4.26,-2.02 22.01,-17.39 32.52,-46.38 44.41,-73.8 13.37,-30.85 23.4,-62.63 26.25,-103.36 8.55,33.04 20.19,63.26 35.25,90.38 19.61,32.19 58.62,82.91 118.6,102.69 21.12,6.63 38.61,16.58 52.03,30.26 -18.49,-27.47 -50.41,-39.13 -76.7,-57.24 -54.55,-37.54 -83.75,-92.88 -109,-162.4 -5.76,-15.84 -11.5,-31.64 -20.18,-46.15 -8.38,-13.93 -21.17,-26.48 -26.25,-40.58 -3.28,-9.09 -1.97,-19.3 -4.03,-27.7 -5.7,-23.21 -15.54,-46.26 -29.19,-64.5 -11.59,-13.02 -35.57,-39.82 -40.13,-43.98 l -0.22,-0.36 c -31.85,-30.92 -69.62,-56.39 -110.13,-79.41 l 0.39,-0.82 -2.18,-1.47 -0.22,0.45 c -5.62,-3.61 -10.68,-7.72 -15.38,-12.15 -4.84,-4.03 -8.91,-8.05 -10.85,-11.33 -16.68,-19.34 -29.5,-42.11 -48.46,-59.56 -10.87,-10.02 -23.71,-18.07 -36.43,-26.37 l 0.09,0.31 c 0,0 -15.25,-10.33 -28.3,-18.19 -40.26,-19.09 -81.84,-52.85 -143.27,-53.58 -32.98,-0.36 -78.22,2.15 -92.87,27.71 0,0 -8.68,4.13 -8.07,-14.77 0.78,-24.11 41.07,-24.82 61.99,-34.85 10.59,-6.14 -10.26,-1.04 -17.57,-2.08 16.08,-17.27 25.62,-40.53 60.55,-40.57 0,0 -8.15,7.62 -10.95,9.16 -2.81,1.52 1.78,3.83 14.29,-0.78 10.26,-3.78 23.65,-7.19 41.17,-7.09 1.13,0 2.23,-0.02 3.41,0 2.76,0.08 5.63,0.26 8.61,0.54 0,0 31.03,0.17 60.97,13.12 29.96,12.96 63.98,9.55 79.64,21.14 15.66,11.58 27.23,34.07 37.43,37.5 10.22,3.42 24.55,11.33 36.24,24.55 9.96,11.24 25.12,4.89 37.52,16.37 11.29,10.44 86.52,47.81 86.52,47.81 22.36,15.41 36.07,33.48 61.35,46.2 36.66,25.62 -50.85,-18.01 -76.31,-27.89 -31.65,-12.26 -3.07,4.31 -3.07,4.31 l 51.26,29.33 c 15.44,7.57 30.91,15.07 46.7,22.26 10.21,4.35 27.69,11.65 41.34,16.53 26.89,6.81 50.65,4.82 73.31,8.99 24.06,4.41 45.17,16.05 68.63,20.3 3.73,0.66 10.05,-1.26 14.14,0 25.47,7.85 50.95,32.67 74.69,46.13 54.76,31.04 95.31,60.15 111.03,127.36 3.69,15.78 5.91,31.75 10.09,47.96 8.91,34.68 15.52,66.46 12.1,112.58 -2.02,27.41 -17.84,55.88 -16.14,90.44 1.6,32.49 24.4,57.21 34.31,86.74 11.84,35.26 -9.8,59.99 -42,73.32 l 0.02,0.03 c 0,0 -23.83,11.25 -33.01,11.93 -9.19,0.69 4.77,3.06 10.89,3.06 4.7,0 8.77,3.24 11.96,8.26 3.64,5.15 5.68,12.38 9.75,17.83 5.72,7.65 19.89,18.14 20.19,25.82 0.39,10.04 -16.8,23.84 -26.25,29.55 -16.3,9.86 -42.61,15.88 -64.59,25.84 -24.47,11.05 -42.11,23.26 -54.5,35.05 -6.87,17.68 -19.82,28.7 -18.17,49.84 0.41,5.36 2.38,10.54 4.14,15.93 l 0.74,1.99 c 2.04,6.89 4.85,17.63 0,29.9 -4.84,12.28 -22.46,15.85 -22.46,15.85 l -0.07,-0.01 c -9.55,3.18 -20.88,5.11 -28.78,8.33 -12.47,5.03 -22.27,11.8 -32.01,16.88 12.11,-3.84 26.84,-10.03 49.63,-12.08 10.06,-0.89 38.28,-5.95 43.6,-23.9 l 0.56,-2.02 0.47,-1.79 c 0.23,-1.02 0.4,-2.05 0.56,-3.09 0.18,-1.35 0.38,-2.66 0.41,-4.12 l 0.09,-2.09 c 0.1,-7.16 -1.4,-14.68 -4.77,-22.16 -12.95,-28.75 1.23,-50.51 22.34,-61.76 19.97,-15.69 49.52,-24.31 78.59,-35.23 23.22,-8.71 49.09,-21.54 62.26,-36.33 6.84,-11.84 10.51,-24.87 6.01,-37.26 -7.2,-13.97 -24.49,-20.05 -29.91,-37.14 6.8,-8.64 19.17,-10.55 28.26,-16.59 14.11,-9.41 24.5,-22.04 27.69,-40.18 l 0.18,-1.91 c 0.34,-2.16 0.53,-4.32 0.63,-6.51 0.03,-1.96 -0.05,-3.92 -0.08,-5.88 -1.68,-32.34 -26.5,-65.77 -33.73,-81.2 -8.16,-17.37 -5.61,-35.28 -5.61,-35.28 1.81,-7 3.64,-12.54 5.48,-16.85 3.27,-9.56 7.03,-22.96 9.88,-38.76 10.13,-22.39 21.09,-48.44 25.98,-66.09 10.22,-36.81 24.51,-102.3 4.09,-247.53 -20.41,-145.21 -215.75,-151.34 -274.96,-175.91 -40.77,-16.9 4.76,-30.67 82.01,-16.35 34.95,6.5 80.11,35.32 122.51,43.97 17.97,3.67 29.54,5.36 36.09,5.44 114.98,145.4 183.81,329.08 183.81,528.99 0,22.48 -1.13,44.67 -2.83,66.7"
112
+ inkscape:connector-curvature="0" />
113
+ <path
114
+ id="path82"
115
+ style="fill:#f4f4f4;fill-opacity:1;fill-rule:nonzero;stroke:none"
116
+ d="m 2527.18,3484.46 c 28.26,41.24 27.7,71.63 24.53,103.17 -0.63,1.96 0.68,1.9 2.29,3.34 55.47,-11.28 59.88,-65.49 36.07,-106.35 -11.3,-19.34 -22.34,-29.53 -39.67,-24.13 -14.35,4.48 -16.31,16.03 -23.22,23.97 z m -22.94,26.32 c -23.48,6.74 -30.28,33.38 -39.75,44.39 25.59,27.33 24.12,51.34 23.12,73.26 -0.25,5.04 -1.16,10.64 0.87,15.61 4.78,-0.4 13.16,-1.62 20.01,-5.26 31.15,-16.48 44.04,-75.44 25.93,-110.1 -7.77,-14.86 -15.64,-22.08 -30.18,-17.9 z m -49.53,55.34 c -21.15,10.63 -33.04,24.8 -38.55,40.89 -3.24,9.42 -5.73,10.56 -3.54,22.26 4.71,25.26 6.29,53.13 -0.01,73.19 l 1.52,0.74 c 61.04,-21.54 96.06,-62.27 40.58,-137.08 z m 160.36,-21.48 c 0.43,1.12 1.42,0.94 2.43,0.7 19.43,-8.58 39.87,-22.99 49.81,-38.59 18.89,-29.6 24.49,-74.11 8.75,-109.89 -6.99,-1.61 -11.49,-3.22 -17.12,-5.22 -0.96,-0.25 -1.96,-0.53 -2.93,-0.88 l -5.24,-1.92 -0.53,-0.22 -0.83,-0.27 0.06,-0.02 c -2.29,-1 -3.88,-1.76 -3.88,-1.76 -7.42,-3.8 -15.21,-6.06 -22.62,-7.34 -45.89,9.86 -59.74,62.26 -59.74,62.26 42.87,18.87 67.1,73.24 51.84,103.15 z m 88.05,-72.17 c 16.89,-8.8 28.17,-20.87 34.68,-34.6 -2.09,-1.82 -4.23,-3.69 -6.42,-5.58 -2.89,5.4 -6.88,10.28 -12.13,14.42 2.37,-6.9 3.73,-13.96 4.23,-21.22 -3.14,-2.68 -6.23,-5.31 -9.09,-7.73 -2.63,-5.05 -10.69,-11.72 -20.99,-16.09 8.17,24.85 9.15,51.24 9.72,70.8 z m -311.91,160.11 c -8.77,5.76 -15.6,12.68 -20.53,20.31 -3.9,6.06 -9.38,15.98 -8.2,24.13 0.81,5.61 5.25,13.13 7.51,19.41 6.49,18.02 9.03,34.28 3.94,47.21 37.11,-16.36 42.93,-57.47 17.28,-111.06 z m -71.06,107.31 c 4.27,4.64 7.57,6.94 10.26,11.67 4.42,7.78 0.01,11.73 2.36,16.45 39.87,-5.15 43.3,-33.2 26.09,-72.98 -26.57,9 -33.65,26.79 -38.71,44.86 z m -16.21,42.78 c 13.88,-3.86 29.39,-11.76 14.6,-35.37 -9.08,9.72 -12.16,22.55 -14.6,35.37"
117
+ inkscape:connector-curvature="0" />
118
+ <path
119
+ id="path84"
120
+ style="fill:#f6836c;fill-opacity:1;fill-rule:nonzero;stroke:none"
121
+ d="m 2529.01,2752.37 c -23.94,4.97 -43.72,-1.93 -64.59,-5.52 -13.88,-2.35 -33.24,-7.99 -41.67,0.71 -3.55,4.21 -0.72,8.52 -0.72,8.52 7.97,19.73 31.16,31.35 50.46,36.91 60.55,17.46 119.21,-14.63 177.64,-18.45 75.3,-4.94 129.29,21.21 167.54,47.98 10.06,7.04 23.37,24.16 40.39,12.92 -7.25,-15.06 -26.47,-24.97 -42.4,-33.22 -27.89,-14.43 -52.63,-27.06 -84.78,-35.07 54.18,8.3 92.69,30.91 133.23,51.69 4.96,-10.44 10.54,-31.37 14.21,-49.1 l 0.51,0.06 c 0,0 3.69,-9.93 2.6,-19.63 0.14,-4.63 -0.79,-8.61 -4.09,-10.8 -1.11,-1.42 -2.45,-2.74 -4.12,-3.84 -14.8,-9.71 -58.71,-31.2 -93.93,-33.75 -1.16,-0.06 -2.28,-0.21 -3.43,-0.33 l -2.59,-0.73 -0.08,0.49 c -31.94,-3.71 -52.6,-16.9 -11.76,-10.17 40.88,6.75 128.41,21.66 96.52,9.67 l 0.11,0.01 c -39.82,-15.58 -92.06,-30.84 -143.33,-25.84 -33.14,3.22 -67.42,19.51 -96.89,35.07 -29.44,15.53 -57.36,35.95 -88.83,42.42"
122
+ inkscape:connector-curvature="0" />
123
+ <path
124
+ id="path86"
125
+ style="fill:#f4f4f4;fill-opacity:1;fill-rule:nonzero;stroke:none"
126
+ d="m 2326.23,2354.71 c 4.08,2.22 4.97,-7.19 8.29,-18.98 3.33,-11.89 19.84,-36.31 19.84,-36.31 2.35,-5.03 -6.67,-9.99 -13.52,-12.26 -6.76,-2.27 -6.76,1.09 -6.76,1.09 0,0 -12.23,17.5 -14.12,33.81 -1.92,16.13 2.23,30.52 6.27,32.65 z m 40.64,1.81 c 4.69,2.53 5.68,-8.19 9.45,-21.63 3.78,-13.49 22.67,-41.28 22.67,-41.28 2.68,-5.7 -7.73,-11.3 -15.59,-13.92 -7.76,-2.56 -7.75,1.26 -7.75,1.26 0,0 -13.98,19.89 -16.1,38.44 -2.15,18.35 2.67,34.69 7.32,37.13 z m 40.42,22 c 6,3.2 7.23,-10.4 12,-27.41 4.77,-17.13 28.86,-52.33 28.86,-52.33 3.41,-7.23 -9.95,-14.37 -20.01,-17.65 -9.95,-3.25 -9.92,1.56 -9.92,1.56 0,0 -17.78,25.2 -20.43,48.68 -2.68,23.23 3.53,44 9.5,47.15 z m 57.45,25.09 c 6.09,3.05 6.97,-10.1 11.18,-26.55 4.31,-16.64 27.29,-50.85 27.29,-50.85 3.2,-6.99 -10.33,-13.79 -20.48,-16.91 -10.02,-3.04 -9.92,1.62 -9.92,1.62 0,0 -16.98,24.48 -18.95,47.17 -1.98,22.49 4.86,42.54 10.88,45.52 z m 44.26,31.78 c 6.07,3.98 8.64,-9.21 15.17,-25.27 6.58,-16.12 35.51,-47.78 35.51,-47.78 4.33,-6.72 -9.26,-15.58 -19.72,-20.26 -10.3,-4.57 -10.76,0.29 -10.76,0.29 0,0 -21.15,22.63 -26.1,45.45 -4.9,22.54 -0.14,43.66 5.9,47.57 z m 48.77,40.94 c 5.41,4.47 9.46,-7.11 17.8,-20.77 8.45,-13.93 40.63,-38.61 40.63,-38.61 5.1,-5.54 -6.94,-15.85 -16.57,-21.68 -9.51,-5.74 -10.49,-1.34 -10.49,-1.34 0,0 -23.53,17.77 -31.17,37.94 -7.55,19.98 -5.51,40.01 -0.2,44.46 z m 185.39,120.94 c 4.18,3.75 8.57,-4.11 16.71,-13.01 8.21,-9.05 37.03,-23.24 37.03,-23.24 4.66,-3.43 -4.6,-12.04 -12.11,-17.22 -7.5,-5.19 -8.69,-2.14 -8.69,-2.14 0,0 -21.23,10.05 -29.26,23.76 -7.99,13.54 -7.86,28.06 -3.68,31.85 z m -83.83,-151.23 c -9.45,-6.38 -10.83,-2.22 -10.83,-2.22 0,0 -25.47,15.59 -34.69,34.81 -9.02,18.94 -8.25,38.54 -3.03,43.27 5.27,4.75 10.24,-6.17 19.76,-18.9 9.66,-12.94 44.48,-34.59 44.48,-34.59 5.58,-5.02 -6.2,-15.95 -15.69,-22.37 z m 15.48,114.75 c 5.12,4.8 10.6,-5.38 20.83,-16.95 10.35,-11.84 46.67,-30.68 46.67,-30.68 5.91,-4.46 -5.65,-15.61 -15.02,-22.3 -9.37,-6.71 -10.94,-2.75 -10.94,-2.75 0,0 -26.56,13.47 -36.67,31.33 -10.02,17.62 -10.04,36.54 -4.87,41.35 z m 101.12,357.36 c 0,0 5.89,-0.99 3.23,-9.33 -2.65,-8.32 -3.16,-34.13 4.89,-45.23 8.1,-11.15 -5.54,-6.92 -16.19,4.34 -10.67,11.21 -18.21,31.85 -15.91,45.89 0,0 -0.61,5.9 23.98,4.33 z m -37.63,-68.3 c 12.91,-14.43 -6.86,-10.58 -23.41,3.64 -16.55,14.19 -30.1,41.88 -28.85,61.86 0,0 -1.69,8.18 33.05,9.59 0,0 8.44,-0.55 5.83,-12.61 -2.48,-12.03 0.45,-48.16 13.38,-62.48 z m -71.11,-9.21 c 12.65,-18.42 -9.32,-11.03 -26.12,7.75 -16.81,18.79 -28.16,52.61 -23.84,75.41 0,0 -0.74,9.57 39.08,5.91 0,0 9.54,-1.9 4.91,-15.26 -4.74,-13.49 -6.65,-55.37 5.97,-73.81 z m -108.01,18.58 c -16.99,21.48 -27.18,59.39 -21,84.23 0,0 -0.14,10.67 42.87,4.7 0,0 10.17,-2.58 4.24,-17.17 -5.94,-14.56 -10.76,-60.64 1.73,-81.59 12.48,-20.92 -10.85,-11.75 -27.84,9.83 z m -83.19,11.35 c -17.28,21.7 -27.77,60.21 -21.65,85.66 0,0 -0.23,10.79 43.27,5.3 0,0 10.31,-2.5 4.38,-17.43 -5.91,-14.92 -10.54,-62 2.15,-83.15 12.76,-21.18 -10.88,-12.13 -28.15,9.62 z m -80.49,-21.24 c -20.89,28.13 -34.89,78.07 -29.36,111.18 0,0 -0.81,14.15 48.98,7.34 0,0 11.95,-3.12 6.04,-22.7 -5.94,-19.46 -8.65,-80.67 7.02,-108.11 15.66,-27.4 -11.77,-15.8 -32.68,12.29 z m -80.64,17.63 c -20.8,24.29 -34.51,68.64 -28.73,98.66 0,0 -0.78,12.7 49.2,8.87 0,0 11.96,-2.3 5.84,-20.09 -6.04,-17.77 -9.17,-73 6.38,-96.98 15.61,-23.92 -11.86,-14.78 -32.69,9.54 z m -78.28,28.17 c -15.16,21.15 -23.52,58.34 -17.11,82.67 0,0 0.15,10.43 39.86,4.32 0,0 9.42,-2.59 3.47,-16.79 -5.9,-14.27 -11.67,-59.43 -0.66,-80.02 11.02,-20.57 -10.39,-11.43 -25.56,9.82 z m -61.99,15.5 c -13.96,16.84 -22.79,46.55 -18.34,66.13 0,0 -0.35,8.36 33.98,3.94 0,0 8.25,-1.95 3.73,-13.46 -4.34,-11.46 -7.34,-47.75 3.05,-64.16 10.34,-16.4 -8.43,-9.27 -22.42,7.55 z m -72.12,-11.61 c -16.8,18.79 -28.15,52.6 -23.84,75.42 0,0 -0.74,9.55 39.08,5.91 0,0 9.55,-1.9 4.91,-15.28 -4.74,-13.48 -6.65,-55.36 5.98,-73.82 12.64,-18.41 -9.33,-11.03 -26.13,7.77 z m -52.45,0.72 c -16.56,14.2 -30.11,41.9 -28.86,61.87 0,0 -1.69,8.18 33.03,9.58 0,0 8.46,-0.53 5.86,-12.6 -2.5,-12.04 0.43,-48.17 13.36,-62.48 12.91,-14.42 -6.86,-10.6 -23.39,3.63"
127
+ inkscape:connector-curvature="0" />
128
+ <path
129
+ id="path88"
130
+ style="fill:#f4f4f4;fill-opacity:1;fill-rule:nonzero;stroke:none"
131
+ d="m 2806.87,3351.66 c 12.87,7 28.05,52.37 59.22,33.53 23.17,-14 34.21,-17.55 34.21,-17.55 0,0 -16.18,-4.55 -23.54,-16.71 -7.37,-12.16 -16.19,-21.52 -41.94,-17.7 -27.04,4.02 -31.99,-0.22 -45.6,-2.44 0,0 4.76,13.86 17.65,20.87"
132
+ inkscape:connector-curvature="0" />
133
+ <path
134
+ id="path90"
135
+ style="fill:#403c3d;fill-opacity:1;fill-rule:evenodd;stroke:none"
136
+ d="m 2731.38,3432.29 c -2.89,5.4 -6.88,10.28 -12.13,14.42 2.37,-6.9 3.73,-13.96 4.23,-21.22 -3.14,-2.68 -6.23,-5.31 -9.09,-7.73 -2.63,-5.05 -10.69,-11.72 -20.99,-16.09 8.17,24.85 9.15,51.24 9.72,70.8 16.89,-8.8 28.17,-20.87 34.68,-34.6 -2.09,-1.82 -4.23,-3.69 -6.42,-5.58 z m -55.32,-35.43 c -6.99,-1.61 -11.49,-3.22 -17.12,-5.22 -0.96,-0.25 -1.96,-0.53 -2.93,-0.88 l -5.24,-1.92 -0.53,-0.22 -0.83,-0.27 0.06,-0.02 c -2.29,-1 -3.88,-1.76 -3.88,-1.76 -7.42,-3.8 -15.21,-6.06 -22.62,-7.34 -45.89,9.86 -59.74,62.26 -59.74,62.26 42.87,18.87 67.1,73.24 51.84,103.15 0.43,1.12 1.42,0.94 2.43,0.7 19.43,-8.58 39.87,-22.99 49.81,-38.59 18.89,-29.6 24.49,-74.11 8.75,-109.89 z m -125.66,63.63 c -14.35,4.48 -16.31,16.03 -23.22,23.97 28.26,41.24 27.7,71.63 24.53,103.17 -0.63,1.96 0.68,1.9 2.29,3.34 55.47,-11.28 59.88,-65.49 36.07,-106.35 -11.3,-19.34 -22.34,-29.53 -39.67,-24.13 z m -46.16,50.29 c -23.48,6.74 -30.28,33.38 -39.75,44.39 25.59,27.33 24.12,51.34 23.12,73.26 -0.25,5.04 -1.16,10.64 0.87,15.61 4.78,-0.4 13.16,-1.62 20.01,-5.26 31.15,-16.48 44.04,-75.44 25.93,-110.1 -7.77,-14.86 -15.64,-22.08 -30.18,-17.9 z m -49.53,55.34 c -21.15,10.63 -33.04,24.8 -38.55,40.89 -3.24,9.42 -5.73,10.56 -3.54,22.26 4.71,25.26 6.29,53.13 -0.01,73.19 l 1.52,0.74 c 61.04,-21.54 96.06,-62.27 40.58,-137.08 z m -400.52,-594.93 c 0,0 8.46,-0.53 5.86,-12.6 -2.5,-12.04 0.43,-48.17 13.36,-62.48 12.91,-14.42 -6.86,-10.6 -23.39,3.63 -16.56,14.2 -30.11,41.9 -28.86,61.87 0,0 -1.69,8.18 33.03,9.58 z m 24.44,3.25 c 0,0 -0.74,9.55 39.08,5.91 0,0 9.55,-1.9 4.91,-15.28 -4.74,-13.48 -6.65,-55.36 5.98,-73.82 12.64,-18.41 -9.33,-11.03 -26.13,7.77 -16.8,18.79 -28.15,52.6 -23.84,75.42 z m 77.62,2.32 c 0,0 -0.35,8.36 33.98,3.94 0,0 8.25,-1.95 3.73,-13.46 -4.34,-11.46 -7.34,-47.75 3.05,-64.16 10.34,-16.4 -8.43,-9.27 -22.42,7.55 -13.96,16.84 -22.79,46.55 -18.34,66.13 z m 63.22,1.04 c 0,0 0.15,10.43 39.86,4.32 0,0 9.42,-2.59 3.47,-16.79 -5.9,-14.27 -11.67,-59.43 -0.66,-80.02 11.02,-20.57 -10.39,-11.43 -25.56,9.82 -15.16,21.15 -23.52,58.34 -17.11,82.67 z m 66.66,-12.18 c 0,0 -0.78,12.7 49.2,8.87 0,0 11.96,-2.3 5.84,-20.09 -6.04,-17.77 -9.17,-73 6.38,-96.98 15.61,-23.92 -11.86,-14.78 -32.69,9.54 -20.8,24.29 -34.51,68.64 -28.73,98.66 z m 80.01,-5.11 c 0,0 -0.81,14.15 48.98,7.34 0,0 11.95,-3.12 6.04,-22.7 -5.94,-19.46 -8.65,-80.67 7.02,-108.11 15.66,-27.4 -11.77,-15.8 -32.68,12.29 -20.89,28.13 -34.89,78.07 -29.36,111.18 z m 88.2,-4.28 c 0,0 -0.23,10.79 43.27,5.3 0,0 10.31,-2.5 4.38,-17.43 -5.91,-14.92 -10.54,-62 2.15,-83.15 12.76,-21.18 -10.88,-12.13 -28.15,9.62 -17.28,21.7 -27.77,60.21 -21.65,85.66 z m 83.84,-12.78 c 0,0 -0.14,10.67 42.87,4.7 0,0 10.17,-2.58 4.24,-17.17 -5.94,-14.56 -10.76,-60.64 1.73,-81.59 12.48,-20.92 -10.85,-11.75 -27.84,9.83 -16.99,21.48 -27.18,59.39 -21,84.23 z m 79.05,-19.65 c 0,0 -0.74,9.57 39.08,5.91 0,0 9.54,-1.9 4.91,-15.26 -4.74,-13.49 -6.65,-55.37 5.97,-73.81 12.65,-18.42 -9.32,-11.03 -26.12,7.75 -16.81,18.79 -28.16,52.61 -23.84,75.41 z m 101.86,1.14 c 0,0 8.44,-0.55 5.83,-12.61 -2.48,-12.03 0.45,-48.16 13.38,-62.48 12.91,-14.43 -6.86,-10.58 -23.41,3.64 -16.55,14.19 -30.1,41.88 -28.85,61.86 0,0 -1.69,8.18 33.05,9.59 z m 98.58,-102.42 c 10.06,7.04 23.37,24.16 40.39,12.92 -7.25,-15.06 -26.47,-24.97 -42.4,-33.22 -27.89,-14.43 -52.63,-27.06 -84.78,-35.07 54.18,8.3 92.69,30.91 133.23,51.69 4.96,-10.44 10.54,-31.37 14.21,-49.1 l 0.51,0.06 c 0,0 3.69,-9.93 2.6,-19.63 0.14,-4.63 -0.79,-8.61 -4.09,-10.8 -1.11,-1.42 -2.45,-2.74 -4.12,-3.84 -14.8,-9.71 -58.71,-31.2 -93.93,-33.75 -1.16,-0.06 -2.28,-0.21 -3.43,-0.33 l -2.59,-0.73 -0.08,0.49 c -31.94,-3.71 -52.6,-16.9 -11.76,-10.17 40.88,6.75 128.41,21.66 96.52,9.67 l 0.11,0.01 c -39.82,-15.58 -92.06,-30.84 -143.33,-25.84 -33.14,3.22 -67.42,19.51 -96.89,35.07 -29.44,15.53 -57.36,35.95 -88.83,42.42 -23.94,4.97 -43.72,-1.93 -64.59,-5.52 -13.88,-2.35 -33.24,-7.99 -41.67,0.71 -3.55,4.21 -0.72,8.52 -0.72,8.52 7.97,19.73 31.16,31.35 50.46,36.91 60.55,17.46 119.21,-14.63 177.64,-18.45 75.3,-4.94 129.29,21.21 167.54,47.98 z m -41.74,95.63 c 0,0 5.89,-0.99 3.23,-9.33 -2.65,-8.32 -3.16,-34.13 4.89,-45.23 8.1,-11.15 -5.54,-6.92 -16.19,4.34 -10.67,11.21 -18.21,31.85 -15.91,45.89 0,0 -0.61,5.9 23.98,4.33 z m 8.86,-374.35 c -7.5,-5.19 -8.69,-2.14 -8.69,-2.14 0,0 -21.23,10.05 -29.26,23.76 -7.99,13.54 -7.86,28.06 -3.68,31.85 4.18,3.75 8.57,-4.11 16.71,-13.01 8.21,-9.05 37.03,-23.24 37.03,-23.24 4.66,-3.43 -4.6,-12.04 -12.11,-17.22 z m -57.5,-52.94 c -9.37,-6.71 -10.94,-2.75 -10.94,-2.75 0,0 -26.56,13.47 -36.67,31.33 -10.02,17.62 -10.04,36.54 -4.87,41.35 5.12,4.8 10.6,-5.38 20.83,-16.95 10.35,-11.84 46.67,-30.68 46.67,-30.68 5.91,-4.46 -5.65,-15.61 -15.02,-22.3 z m -67.96,-44.82 c -9.45,-6.38 -10.83,-2.22 -10.83,-2.22 0,0 -25.47,15.59 -34.69,34.81 -9.02,18.94 -8.25,38.54 -3.03,43.27 5.27,4.75 10.24,-6.17 19.76,-18.9 9.66,-12.94 44.48,-34.59 44.48,-34.59 5.58,-5.02 -6.2,-15.95 -15.69,-22.37 z m -59.7,-50.77 c -9.51,-5.74 -10.49,-1.34 -10.49,-1.34 0,0 -23.53,17.77 -31.17,37.94 -7.55,19.98 -5.51,40.01 -0.2,44.46 5.41,4.47 9.46,-7.11 17.8,-20.77 8.45,-13.93 40.63,-38.61 40.63,-38.61 5.1,-5.54 -6.94,-15.85 -16.57,-21.68 z m -59.67,-53.19 c -10.3,-4.57 -10.76,0.29 -10.76,0.29 0,0 -21.15,22.63 -26.1,45.45 -4.9,22.54 -0.14,43.66 5.9,47.57 6.07,3.98 8.64,-9.21 15.17,-25.27 6.58,-16.12 35.51,-47.78 35.51,-47.78 4.33,-6.72 -9.26,-15.58 -19.72,-20.26 z m -57.23,-32.78 c -10.02,-3.04 -9.92,1.62 -9.92,1.62 0,0 -16.98,24.48 -18.95,47.17 -1.98,22.49 4.86,42.54 10.88,45.52 6.09,3.05 6.97,-10.1 11.18,-26.55 4.31,-16.64 27.29,-50.85 27.29,-50.85 3.2,-6.99 -10.33,-13.79 -20.48,-16.91 z m -54.59,-28.17 c -9.95,-3.25 -9.92,1.56 -9.92,1.56 0,0 -17.78,25.2 -20.43,48.68 -2.68,23.23 3.53,44 9.5,47.15 6,3.2 7.23,-10.4 12,-27.41 4.77,-17.13 28.86,-52.33 28.86,-52.33 3.41,-7.23 -9.95,-14.37 -20.01,-17.65 z m -44.74,-1.44 c -7.76,-2.56 -7.75,1.26 -7.75,1.26 0,0 -13.98,19.89 -16.1,38.44 -2.15,18.35 2.67,34.69 7.32,37.13 4.69,2.53 5.68,-8.19 9.45,-21.63 3.78,-13.49 22.67,-41.28 22.67,-41.28 2.68,-5.7 -7.73,-11.3 -15.59,-13.92 z m -42.56,7.47 c -6.76,-2.27 -6.76,1.09 -6.76,1.09 0,0 -12.23,17.5 -14.12,33.81 -1.92,16.13 2.23,30.52 6.27,32.65 4.08,2.22 4.97,-7.19 8.29,-18.98 3.33,-11.89 19.84,-36.31 19.84,-36.31 2.35,-5.03 -6.67,-9.99 -13.52,-12.26 z m 50.37,1345.42 c -8.77,5.76 -15.6,12.68 -20.53,20.31 -3.9,6.06 -9.38,15.98 -8.2,24.13 0.81,5.61 5.25,13.13 7.51,19.41 6.49,18.02 9.03,34.28 3.94,47.21 37.11,-16.36 42.93,-57.47 17.28,-111.06 z m -71.06,107.31 c 4.27,4.64 7.57,6.94 10.26,11.67 4.42,7.78 0.01,11.73 2.36,16.45 39.87,-5.15 43.3,-33.2 26.09,-72.98 -26.57,9 -33.65,26.79 -38.71,44.86 z m -16.21,42.78 c 13.88,-3.86 29.39,-11.76 14.6,-35.37 -9.08,9.72 -12.16,22.55 -14.6,35.37 z m 1173.75,-787.01 c -11.13,19.41 -23.35,38.42 -27.12,54.62 8.95,-5.92 16.34,-12.8 22.76,-20.33 -1.34,9.41 -2.92,18.74 -4.57,28.06 -9.71,7.73 -20.63,14.52 -33.49,19.89 -20.69,92.5 -65.21,150.91 -156.67,184.3 -30.66,11.19 -59.7,24.15 -89.94,37.34 1.75,98.46 -112.47,96.39 -183.64,147.07 -30.95,22.1 -66.05,62.87 -101.46,70.41 -68.48,14.6 -110.62,-33.23 -151.06,-66.63 -9.93,10.85 -24.8,21.45 -46.38,31.1 0,0 -38.6,55.15 -56.6,65.52 -1.19,0.69 -2,1.32 -2.52,1.93 -9.94,4.68 -22.41,7.31 -31.21,13.14 -8.7,5.73 -10.35,19.28 -19.05,25.84 -4.26,3.2 -10.87,6.67 -16.65,8.99 -6.98,2.81 -18.94,2.29 -25.97,6.14 -8.65,4.75 -9.34,20.2 -15.61,27.87 -6.91,8.47 -15.8,15.4 -30.18,20.24 -5.83,1.94 -14.63,2.07 -19.9,4.9 -5.88,3.18 -7.32,13.15 -11.87,19.26 -10.58,14.26 -28.45,25.31 -48.83,32.52 -4.39,1.55 -10.28,1.55 -13.49,3.71 -4.03,2.7 -4.19,9.73 -6.94,14.64 -4.25,7.58 -9.92,15.28 -19.06,19.99 -3.91,2.04 -9.92,1.85 -13.75,4.03 -4.5,2.58 -5.71,8.88 -9.5,12.57 -7.66,7.48 -16.76,13.16 -35.67,8.31 -6.7,8.69 -15.55,15.67 -29.96,18.64 l -0.44,-0.77 c 1.82,-17.24 4.29,-34.66 17.38,-46.59 -3.32,-19.81 5.98,-34.36 21.01,-46.08 3.62,-2.83 9.62,-4.32 12.72,-8.05 4.11,-4.96 2.41,-15.04 4.2,-21.26 5.56,-19.2 17.41,-36.84 37.11,-51.25 2.88,-2.12 8.38,-3.14 10.88,-5.97 5.5,-6.25 3.9,-16.74 8.05,-23.95 4.36,-7.59 11.79,-16.75 20.96,-23.81 5.03,-3.88 12.53,-5.95 17.23,-10.57 3.81,-3.73 4.86,-10.44 7.58,-16.02 7.35,-15.1 26.81,-32.59 36.15,-48.37 1.23,-2.08 2.2,-4.3 3.01,-6.54 3.89,-8.03 13.3,-25.05 26.13,-32.91 0,0 1.34,-23.63 24.86,-50.57 -47.65,2.58 -93.62,29.56 -128.96,2.76 -10.2,11.15 -42.93,19.9 -56.94,4.25 -10.33,18.01 -65.18,29.5 -75.85,1.04 -77.98,35.05 -172.08,-14.92 -202.33,-65.08 -5.61,-2.68 -10.86,-5.51 -15.82,-8.41 -21.34,6.43 -50.25,8.71 -81.54,-13.89 -30.84,-22.29 -63.08,-122.26 -57.53,-191.48 0.6,-7.41 14.64,-24.92 19.68,-59.99 5.02,-34.8 8.83,-46.22 8.83,-46.22 -6.86,-11.99 -15.04,-17.35 -16.15,-31.38 -2.42,-30.36 23.49,-46.85 47.76,-62.4 8.65,-4.04 18.42,-6.93 29.04,-7.32 6.41,-10.15 31.11,-44.55 71.94,-44.55 1.01,0 2.04,0.07 3.04,0.13 15.59,-13.13 31.86,-16.66 20.63,-0.47 -0.93,1.33 -1.72,2.83 -2.46,4.38 7.51,-4.47 16.59,-8.82 24.69,-9.61 0.16,-0.02 3.98,-0.98 7.14,-0.98 1.14,0 4.48,0 5.66,2.57 1.18,2.6 -1.2,5.38 -1.99,6.28 -3.27,3.77 -6.95,13.59 -9.72,22.76 3,-5.5 6.25,-10.71 9.9,-15.21 19.43,-23.89 46.63,-35.2 31.44,-11.41 -4.87,7.61 -7.65,17.99 -9.01,29.01 7.53,-9.28 20.49,-20.09 41.56,-24.4 17.42,-16.59 39.07,-23.38 26.1,-5.74 -3.32,4.51 -5.48,10.33 -6.77,16.68 10.5,-12.62 28.26,-28.83 50.03,-28.83 l 1.59,0.03 0.44,0.02 c 14.94,-10.11 27.45,-11.8 16.27,2.79 -4.84,6.36 -7.48,15.16 -8.67,24.45 9.87,-20.16 28.91,-47.92 61.69,-56.83 0.24,-0.1 5.89,-1.65 10.55,-1.65 3.63,0 5.93,0.93 7.02,2.92 1.59,2.87 -0.5,6.19 -1.19,7.28 -2.11,3.41 -4.08,7.64 -5.78,11.82 14.71,-8.64 25.59,-9.38 14.13,4.7 -5.91,7.26 -9.06,17.5 -10.36,28.08 8,-21.41 24.29,-51.48 56.48,-71.19 0.23,-0.11 6.03,-2.83 12.45,-2.83 3.1,0 5.87,0.64 8.26,1.84 2.05,1.07 3.39,2.8 3.94,5 1.68,6.71 -4.68,16.25 -5.25,17.03 -2.65,5.22 -7.5,16.25 -9.89,25.91 l 0.24,-0.2 c 23.26,-18.8 53.46,-27.51 34.83,-8.75 -11.31,11.4 -15.67,30.94 -16.06,46.89 6.8,-19.1 23.32,-52.18 57.54,-58.74 0.23,-0.02 5.53,-1.04 9.45,-1.04 2.17,0 4.79,0.24 5.71,2.34 0.39,0.88 0.55,2.32 -1,4.06 -2.56,2.89 -6.19,11.58 -8.12,18.61 1.62,-1.24 3.2,-2.56 4.89,-3.65 16.6,-10.91 36.19,-16.61 38.75,-13.08 5.3,-4.36 13.61,-10.09 24.89,-15.06 1.06,-2.42 2.1,-4.84 2.95,-7.27 0,0 5.26,-14.67 7.29,-22.61 -26.85,6.97 -72.8,20.47 -106.99,12.91 -27.01,-5.96 -97.4,-44.95 -80.38,-72.36 1.14,-1.83 2.59,-3.1 4.26,-4.14 l 1.05,-0.4 c 6.73,-3.59 18.58,-5.69 31.05,-5.59 l 4.53,0.13 c 7.25,0.4 26.23,3.13 32.67,5.22 18.82,6.13 35.64,2.45 35.64,2.45 l -0.25,-0.17 c 13.38,-1.57 27.5,-6.27 42.08,-13.73 15.66,-7.98 36.97,-21.16 42.4,-27.67 9.78,-11.78 -5.21,-39.4 -10.8,-56.41 -0.27,-1 -0.61,-2.05 -0.94,-3.09 l -0.39,-1.41 -0.06,0.04 c -0.79,-2.39 -1.76,-4.89 -2.81,-7.45 -0.95,1.2 -1.8,2.36 -2.43,3.44 -5.35,9.03 -8.24,16.93 -11,13.3 -2.77,-3.64 -2.9,-18.05 2.36,-31.66 0.54,-1.4 1.2,-2.73 1.91,-4.06 -6.06,-11.12 -13.42,-22.77 -21.18,-33.92 -6.03,5.72 -12.13,12.17 -15.09,17.31 -6.89,11.83 -10.56,22.21 -14.08,17.43 -3.56,-4.74 -3.65,-23.89 3.1,-41.86 2.2,-5.87 5.57,-11.18 9.09,-15.82 -5.35,-6.76 -10.57,-13.01 -15.34,-18.31 -2.14,-2.37 -4.66,-5.02 -7.34,-7.8 -7.36,7.62 -16.68,18.03 -20.45,25.58 -6.56,13.19 -9.94,24.43 -13.67,19.64 -3.72,-4.82 -4.45,-25.07 1.76,-44.65 2.55,-8.02 6.95,-15.34 11.3,-21.3 -7.98,-7.6 -16.65,-15.65 -25.55,-23.79 -5.4,7.18 -10.72,15.06 -13.16,21.1 -5.85,14.26 -8.62,26.35 -12.58,21.72 -3.89,-4.67 -5.6,-25.71 -0.35,-46.68 1.29,-5.17 3.26,-10.14 5.51,-14.74 -8.82,-7.89 -17.35,-15.45 -25.18,-22.31 -2.3,5.01 -4.22,9.75 -5.28,13.66 -4.6,16.98 -6.32,31 -10.84,26.71 -4.53,-4.2 -8.38,-26.82 -5.07,-50.86 0.31,-2.3 0.76,-4.59 1.27,-6.88 l -2.21,-1.9 c -5.11,-4.43 -10.68,-9.77 -16.44,-15.64 -1.43,4.52 -2.54,8.74 -3.13,12.25 -2.91,17.7 -3.36,31.85 -7.99,28.47 -4.62,-3.32 -10.15,-25.15 -9.04,-49.57 0.17,-3.84 0.64,-7.72 1.27,-11.52 -6.76,-7.62 -13.45,-15.51 -19.75,-23.18 -3.65,9.38 -6.95,19.1 -8.23,26.11 -3.34,18.53 -4.03,33.4 -8.76,29.75 -4.33,-3.29 -9.08,-23.12 -8.56,-46.19 -4.71,-3.45 -10.82,-19.53 -11.02,-37.76 -0.09,-6.2 1.01,-12.55 2.51,-18.29 -3.05,-4.31 -8.4,-7.29 -12.14,-12.57 -19.3,-27.05 -11.43,-59.27 30.28,-66.44 12.78,-39.46 45.17,-58.61 94.87,-59.05 6.68,-0.07 13.64,2.27 20.18,1.86 7.38,-0.5 13.46,-3.5 20.2,-3.71 36.22,-1.09 55.22,10.43 82.74,18.48 20.55,5.96 41.74,7.89 54.52,12.9 19.57,7.68 28.87,28.77 44.4,38.76 5.78,3.71 16.69,5.46 26.25,11.06 8.07,4.75 15.05,13.39 22.2,16.6 6.24,2.85 16.65,2.28 24.22,5.55 12.67,5.51 26.68,17.4 42.4,25.86 32.91,17.63 59.7,30.68 94.87,46.11 16.8,7.38 34.58,24.72 44.41,25.84 11.65,1.35 25.22,-8.4 34.31,-7.37 18.52,-22.06 24.98,-52.89 24.2,-92.52 1.1,-0.11 0.29,-9.83 0.29,-9.83 0,0 6.47,-85.09 -126.17,-131.03 -41.25,-14.28 -117.07,-51.81 -173.39,-80.72 218.91,6.81 416.91,96.33 564.01,238.52 -44.49,-11.55 -91.92,-41.79 -121.13,-44.56 -79.65,-7.55 -93.92,27.92 -30.29,33.77 24.03,2.21 59.49,4.92 87.8,18.38 49.4,23.51 100.3,46.22 127.3,60.84 4.41,5.31 8.63,10.78 12.92,16.2 -6.55,-0.08 -18.12,-1.77 -36.09,-5.44 -42.4,-8.65 -87.56,-37.47 -122.51,-43.97 -77.25,-14.32 -122.78,-0.55 -82.01,16.35 59.21,24.57 254.55,30.7 274.96,175.91 20.42,145.23 6.13,210.72 -4.09,247.53 -4.89,17.65 -15.85,43.7 -25.98,66.09 -2.85,15.8 -6.61,29.2 -9.88,38.76 -1.84,4.31 -3.67,9.85 -5.48,16.85 0,0 -2.55,17.91 5.61,35.28 7.23,15.43 32.05,48.86 33.73,81.2 0.03,1.96 0.11,3.92 0.08,5.88 -0.1,2.19 -0.29,4.35 -0.63,6.51 l -0.18,1.91 c -3.19,18.14 -13.58,30.77 -27.69,40.18 -9.09,6.04 -21.46,7.95 -28.26,16.59 5.42,17.09 22.71,23.17 29.91,37.14 4.5,12.39 0.83,25.42 -6.01,37.26 -13.17,14.79 -39.04,27.62 -62.26,36.33 -29.07,10.92 -58.62,19.54 -78.59,35.23 -21.11,11.25 -35.29,33.01 -22.34,61.76 3.37,7.48 4.87,15 4.77,22.16 l -0.09,2.09 c -0.03,1.46 -0.23,2.77 -0.41,4.12 -0.16,1.04 -0.33,2.07 -0.56,3.09 l -0.47,1.79 -0.56,2.02 c -5.32,17.95 -33.54,23.01 -43.6,23.9 -22.79,2.05 -37.52,8.24 -49.63,12.08 9.74,-5.08 19.54,-11.85 32.01,-16.88 7.9,-3.22 19.23,-5.15 28.78,-8.33 l 0.07,0.01 c 0,0 17.62,-3.57 22.46,-15.85 4.85,-12.27 2.04,-23.01 0,-29.9 l -0.74,-1.99 c -1.76,-5.39 -3.73,-10.57 -4.14,-15.93 -1.65,-21.14 11.3,-32.16 18.17,-49.84 12.39,-11.79 30.03,-24 54.5,-35.05 21.98,-9.96 48.29,-15.98 64.59,-25.84 9.45,-5.71 26.64,-19.51 26.25,-29.55 -0.3,-7.68 -14.47,-18.17 -20.19,-25.82 -4.07,-5.45 -6.11,-12.68 -9.75,-17.83 -3.19,-5.02 -7.26,-8.26 -11.96,-8.26 -6.12,0 -20.08,-2.37 -10.89,-3.06 9.18,-0.68 33.01,-11.93 33.01,-11.93 l -0.02,-0.03 c 32.2,-13.33 53.84,-38.06 42,-73.32 -9.91,-29.53 -32.71,-54.25 -34.31,-86.74 -1.7,-34.56 14.12,-63.03 16.14,-90.44 3.42,-46.12 -3.19,-77.9 -12.1,-112.58 -4.18,-16.21 -6.4,-32.18 -10.09,-47.96 -15.72,-67.21 -56.27,-96.32 -111.03,-127.36 -23.74,-13.46 -49.22,-38.28 -74.69,-46.13 -4.09,-1.26 -10.41,0.66 -14.14,0 -23.46,-4.25 -44.57,-15.89 -68.63,-20.3 -22.66,-4.17 -46.42,-2.18 -73.31,-8.99 -13.65,-4.88 -31.13,-12.18 -41.34,-16.53 -15.79,-7.19 -31.26,-14.69 -46.7,-22.26 L 2782.7,2380 c 0,0 -28.58,-16.57 3.07,-4.31 25.46,9.88 112.97,53.51 76.31,27.89 -25.28,-12.72 -38.99,-30.79 -61.35,-46.2 0,0 -75.23,-37.37 -86.52,-47.81 -12.4,-11.48 -27.56,-5.13 -37.52,-16.37 -11.69,-13.22 -26.02,-21.13 -36.24,-24.55 -10.2,-3.43 -21.77,-25.92 -37.43,-37.5 -15.66,-11.59 -49.68,-8.18 -79.64,-21.14 -29.94,-12.95 -60.97,-13.12 -60.97,-13.12 -2.98,-0.28 -5.85,-0.46 -8.61,-0.54 -1.18,-0.02 -2.28,0 -3.41,0 -17.52,-0.1 -30.91,3.31 -41.17,7.09 -12.51,4.61 -17.1,2.3 -14.29,0.78 2.8,-1.54 10.95,-9.16 10.95,-9.16 -34.93,0.04 -44.47,23.3 -60.55,40.57 7.31,1.04 28.16,-4.06 17.57,2.08 -20.92,10.03 -61.21,10.74 -61.99,34.85 -0.61,18.9 8.07,14.77 8.07,14.77 14.65,-25.56 59.89,-28.07 92.87,-27.71 61.43,0.73 103.01,34.49 143.27,53.58 13.05,7.86 28.3,18.19 28.3,18.19 l -0.09,-0.31 c 12.72,8.3 25.56,16.35 36.43,26.37 18.96,17.45 31.78,40.22 48.46,59.56 1.94,3.28 6.01,7.3 10.85,11.33 4.7,4.43 9.76,8.54 15.38,12.15 l 0.22,-0.45 2.18,1.47 -0.39,0.82 c 40.51,23.02 78.28,48.49 110.13,79.41 l 0.22,0.36 c 4.56,4.16 28.54,30.96 40.13,43.98 13.65,18.24 23.49,41.29 29.19,64.5 2.06,8.4 0.75,18.61 4.03,27.7 5.08,14.1 17.87,26.65 26.25,40.58 8.68,14.51 14.42,30.31 20.18,46.15 25.25,69.52 54.45,124.86 109,162.4 26.29,18.11 58.21,29.77 76.7,57.24 -13.42,-13.68 -30.91,-23.63 -52.03,-30.26 -59.98,-19.78 -98.99,-70.5 -118.6,-102.69 -15.06,-27.12 -26.7,-57.34 -35.25,-90.38 -2.85,40.73 -12.88,72.51 -26.25,103.36 -11.89,27.42 -22.4,56.41 -44.41,73.8 0,0 -0.85,-0.05 -4.26,2.02 -3.4,2.02 56.74,3.53 56.74,3.53 10.53,-0.38 21.23,-1.88 32.09,-3.3 2.03,0.22 4.53,0.11 7.59,-0.44 33.06,-5.84 67.43,6.49 88.83,22.1 11.11,8.1 30.43,14.59 46.46,18.98 0.27,0.7 1.83,1.48 5.83,2.26 0,0 24.5,7.65 50.53,14.82 17.63,4.84 30.48,8.54 39.39,12.95 5.17,3.29 10.09,7.25 13.9,11.99 7.63,9.42 7.77,20.74 14.14,36.9 6.33,16.1 16.01,28.63 16.14,42.45 0.46,45.3 -42.37,81.38 -88.81,57.23 45.72,11.8 78.15,-10.54 72.67,-53.55 -6.76,-53.12 -86.66,-92.5 -135.25,-112.57 -19.26,-7.94 -41.82,-17.98 -64.59,-20.29 -32.85,-3.33 -62.6,3.7 -90.84,1.86 -36.22,-2.4 -60.3,-21.58 -90.84,-24.01 -26.24,-2.1 -22.68,15.68 -45.45,17.71 -4.72,2.68 -19.04,0 -33.28,0.73 -39.38,-10.42 -64.7,7.62 -96.88,22.16 -23.21,10.51 -47.98,20.06 -72.68,22.15 -62,5.27 -99.7,-3.37 -150.38,2.01 -14.29,1.53 -43.95,3.33 -58.03,8.62 -43.84,16.43 -77.41,10.48 -125.04,11.15 -34.65,0.51 -66.8,2.33 -88.43,-1.46 -5.9,-1.07 -11.87,-2.6 -18.18,-3.7 -46.42,-8.13 -117.12,-12.34 -115.05,-53.52 3.46,2.37 2.5,8.77 8.07,9.23 -0.2,-7.58 -0.39,-15.14 2.01,-20.32 -26.99,0.7 -42.91,19.37 -42.38,40.6 0.9,36.12 58.9,51.22 98.91,60.92 40.1,9.7 81.75,21.05 111.03,25.84 -70.13,-10.33 -144.31,-16.97 -197.84,-42.47 -0.75,2.77 -1.24,5.45 -1.55,8.02 -4.24,19.49 -13.48,49.4 -19.98,78.46 -7.48,33.4 4.07,92.05 4.07,92.05 l 0.29,-0.34 c 4.83,29.8 10.98,43.09 16.94,60.9 12.69,38.01 53.68,49.94 82.38,53.55 -24.19,-17.13 -39.65,-38.36 -49.44,-66.79 -1.21,-10.09 -2.15,-19.55 -2.85,-27.9 21.73,67.74 82.33,93.09 82.33,93.09 l 19.4,20.96 -0.24,-0.95 c 33.45,32.42 77.66,57.54 133.84,59.13 28.31,0.79 62.52,-6.68 62.43,-34.49 -0.05,-15.73 -12.32,-29.09 -29.06,-36.46 4.92,-0.97 9.43,-0.29 13.51,1.4 l 17.4,19.5 c 5.74,14.26 5.24,32.26 -4.46,43.12 25.6,21.93 65.46,-2.67 62.56,-31.76 7.49,6.33 12.06,18.3 6.91,27.78 34.44,20.28 53.72,-28.88 88.39,-17.4 -3.27,9.84 -19.95,7.84 -25.04,16.05 45.31,6.5 85.06,-9.46 130.49,-5.85 2.85,-2.48 5.94,-4.94 9.21,-7.4 -84.98,-9.42 -15.93,-9.37 -15.93,-9.37 10.88,1 37.03,2.83 47.19,1.01 16.65,-3 27.39,1.06 42.09,6.82 0.36,-0.64 1.83,-0.59 2.72,1.08 7.62,3 16.41,6.34 27.56,9.36 4.32,0.61 8.66,1.72 12.88,3.09 l 1.82,0.38 0.25,0.29 c 5.83,2.03 11.31,4.46 16.01,6.75 42.83,20.61 78.34,69.18 114.92,94.66 60.61,42.19 118,-9.93 160.2,-43.76 l -0.27,-0.4 c 10.58,-7.23 24.53,-16.15 39.73,-25.48 39.71,-17.3 92.08,-32.44 120.05,-60.13 22.38,-22.15 29.99,-50.67 39.62,-80.27 8.98,-27.62 26.42,-52.03 36.22,-83.01 1.89,1.58 3.01,3.97 3.64,6.83 -0.27,2.65 -0.7,5.44 0.09,7.16 l 0.53,-0.48 c -0.11,5.41 -1.3,11.74 -3.15,18.42 -8.32,16.97 -22.86,36.29 -21.07,51.41 0,0 51.58,-26.7 110.11,-53.23 20.15,-9.14 38.61,-24.2 54.71,-41.42 l 4.7,0.11 c -0.56,-1.21 -0.5,-2.95 -0.33,-4.78 28.44,-31.94 48.61,-69.98 55.62,-91.97 1.45,-4.52 3.08,-9.09 4.84,-13.64 l 0.01,-0.06 c 2.21,-5.73 4.59,-11.4 7.04,-16.85 l 0.05,0.07 c 1.04,-1.85 1.69,-3.67 2.39,-5.51 8.44,-18.32 16.73,-33.17 19.05,-37.24 9.93,-12.38 17.35,-29.34 26.56,-40.46 -0.53,6.85 -0.88,13.75 -1.56,20.55 z m -826.19,277.09 c 87.27,-80.81 98.01,-168.37 104.71,-193.66 6.6,-25.12 9.82,-16.62 9.82,-16.62 1.21,85.58 -66.47,193.97 -127.36,229.62 -60,35.19 -215.11,29.07 -251.54,31.9 -35.85,2.74 -53.77,-42.93 -53.77,-42.93 -0.46,-9.67 7.43,1.42 7.43,1.42 23.42,42.28 44.01,34.55 44.01,34.55 74.22,-21.72 87.45,-130.94 90.54,-156.26 3.07,-25.11 9.41,-8.76 9.41,-8.76 7.21,62.85 -38.53,139.45 -48.15,149.3 -9.61,9.76 -0.43,15.3 30.23,6.7 92.32,-25.96 100.96,-174.08 106.52,-192.04 5.57,-17.89 9.03,-0.68 9.03,-0.68 -12.48,136.19 -64.16,169.77 -77.93,188.5 -5.72,7.77 40.96,8.94 61.5,-4.45 116.01,-75.08 102.99,-218.89 113.43,-198.36 10.58,20.95 -29.19,151.09 -85.08,195.37 -11.18,8.84 38.79,-6.6 57.2,-23.6 z m 214.59,112.44 c 23.17,-14 34.21,-17.55 34.21,-17.55 0,0 -16.18,-4.55 -23.54,-16.71 -7.37,-12.16 -16.19,-21.52 -41.94,-17.7 -27.04,4.02 -31.99,-0.22 -45.6,-2.44 0,0 4.76,13.86 17.65,20.87 12.87,7 28.05,52.37 59.22,33.53 z m 2.05,33.45 c 8.47,2.44 35.81,-1.73 18.17,1.85 -17.72,4.96 -28.72,-0.09 -40.36,-7.4 -26.76,-16.75 -48.56,-55.22 -76.72,-71.95 -12.22,-7.31 -24.17,-5.63 -34.33,-18.48 6.58,-13.17 13.26,-5.42 22.22,-7.38 19.86,-4.32 38.16,-12.04 56.52,-23.96 20.33,-13.25 42.35,-37.56 72.67,-35.09 9.67,0.77 27.24,10.15 34.32,14.77 8.84,5.77 29.83,19.54 24.22,40.6 -2.49,9.33 -13.59,10.83 -20.2,18.46 -9.15,10.61 -8.8,21.03 -16.13,33.21 15.98,-3.22 25.13,-12.71 42.37,-14.77 -27.15,24.39 -58.44,45 -96.88,59.07 2.88,1.64 4.72,8.35 14.13,11.07 z M 2223.96,3307.9 c -2.19,16.18 -17.4,30.55 -44.41,22.16 0,0 -34.92,-7.98 -44.43,-69.84 0,0 -1.66,-31.21 8.1,-24.31 -8.22,37.5 27.37,54.49 35.53,58.3 11.48,5.13 20.97,3.4 21.69,-6.37 0.79,-10.54 -11.24,-15.2 -14.84,-26.07 12.77,7.22 41.33,24.13 38.36,46.13 z m 668.31,-133.09 c 27.34,4.37 78.51,23.3 99.04,36.15 22.28,13.93 38.84,67.36 16.13,96.94 -10.17,13.24 -34.52,30.03 -40.38,31.38 -6.68,-3.88 4.2,-7.41 6.05,-9.22 7.7,-7.6 24.88,-21.51 30.28,-33.22 11.03,-23.95 7.65,-60.6 -12.12,-73.85 -13.32,-8.9 -78.47,-33.25 -106.97,-33.21 -80.17,0.11 -88.31,88.29 -137.27,118.12 0.87,-8.43 7.02,-26.13 14.02,-35.28 27.53,-36 53.83,-110.21 131.22,-97.81"
137
+ inkscape:connector-curvature="0" />
138
+ <path
139
+ id="path92"
140
+ style="fill:#5d802f;fill-opacity:1;fill-rule:nonzero;stroke:none"
141
+ d="m 2433.33,2370.61 c 0.44,-4.18 2.32,-8.2 3.64,-12.03 0.27,19.49 1.09,47.95 21.49,59.93 3.2,1.86 6.38,2.84 9.52,2.84 8.01,0 13.14,-5.65 16.36,-12.02 -0.35,15.85 1.93,31.07 12.45,38.27 5.18,3.59 10,5.32 14.61,5.32 13.21,0 18.54,-13.65 21.4,-20.98 0.47,-1.15 0.86,-2.18 1.27,-3.11 5.43,-12.42 19.9,-37.76 26.67,-43.33 2.68,2.13 6.03,4.9 7.08,6.42 -0.37,0.5 -0.99,1.17 -1.78,2.1 -42.06,48.68 -29.05,81.43 -10.7,100.35 1.31,1.51 4.77,4.85 9.87,4.85 6.26,0 11.15,-4.56 14.53,-13.49 5.33,-14.1 26.51,-41.61 30.55,-44.43 l 0.99,-0.49 c 2.07,-1.05 4.66,-2.36 6.14,-2.36 l 1.2,0.74 c 1.32,1.41 2.02,2.65 2.41,3.58 -8.82,10.66 -39.16,50.51 -27.93,82.65 1.66,4.78 6.74,19.34 18.65,19.34 10.99,0 18.37,-13.19 20.89,-18.44 6.44,-8.21 23.48,-28.51 32.54,-33.85 2.24,-1.27 4.78,-1.95 7.56,-1.95 4.48,0 8.36,1.68 10.27,2.81 -10.65,8.04 -31.32,39.91 -24.68,67.59 2.94,12.3 13.27,17.81 22.2,17.81 4.37,0 8.25,-1.27 10.93,-3.61 1.01,-0.87 3.11,-3.14 5.94,-6.27 7.87,-8.61 26.27,-28.86 37.27,-32.77 2.14,-0.75 4.09,-1.15 5.87,-1.15 4.13,0 6.86,2.09 9.5,4.82 -0.73,0.56 -1.66,1.22 -2.86,2.02 -4.97,3.36 -29.76,28.79 -19.55,60.6 3.72,11.63 12.01,12.88 15.4,12.88 7.95,0 15.18,-5.84 18.19,-9.31 5.35,-6.09 26.76,-24.07 32.16,-24.45 4.01,0.71 2.25,2.71 8.31,10.37 5,11.5 -10.48,12.08 -25.14,16.79 -8.01,2.57 -25.83,21.87 -41.9,14.16 -16.06,-7.69 -172.23,-113.68 -103.34,-29.72 28.99,35.32 66.68,50.35 63.89,59.45 -4.26,13.83 -48.2,14.69 -60.75,23.8 -6.53,4.73 -12.16,-5.39 -16.07,-14.7 -39.01,-152.94 -175.78,-233.82 -188.79,-242.48 0,0 -35.95,-22.04 -26.53,-21.68 9.43,0.34 27.02,3.64 30.27,-26.87"
142
+ inkscape:connector-curvature="0" />
143
+ <path
144
+ id="path94"
145
+ style="fill:#5d802f;fill-opacity:1;fill-rule:nonzero;stroke:none"
146
+ d="m 2747.21,2810.08 c -62.51,-19.99 -119.08,-11.38 -119.08,-11.38 -22.18,0.52 -23.98,27.54 -27.27,49.98 -3.36,23 22.07,-23.5 53.19,-30.48 29.63,-6.74 40.8,-4.57 37.8,18.39 -3.21,24.06 27.8,-3.65 46.52,-7.14 0,0 2.3,-1.48 12,-0.96 9.68,0.53 27.48,-6.91 -3.16,-18.41"
147
+ inkscape:connector-curvature="0" />
148
+ </g>
149
+ </g>
150
+ </g>
151
+ </g>
152
+ </svg>
@@ -0,0 +1,32 @@
1
+ /* Copyright Joyent, Inc. and other Node contributors. All rights reserved.
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
5
+ * deal in the Software without restriction, including without limitation the
6
+ * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
7
+ * sell 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
18
+ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
19
+ * IN THE SOFTWARE.
20
+ */
21
+
22
+ #ifndef UV_AIX_H
23
+ #define UV_AIX_H
24
+
25
+ #define UV_PLATFORM_LOOP_FIELDS \
26
+ int fs_fd; \
27
+
28
+ #define UV_PLATFORM_FS_EVENT_FIELDS \
29
+ uv__io_t event_watcher; \
30
+ char *dir_filename; \
31
+
32
+ #endif /* UV_AIX_H */
@@ -0,0 +1,54 @@
1
+ /*
2
+ * Copyright (c) 1995, 1999
3
+ * Berkeley Software Design, Inc. All rights reserved.
4
+ *
5
+ * Redistribution and use in source and binary forms, with or without
6
+ * modification, are permitted provided that the following conditions
7
+ * are met:
8
+ * 1. Redistributions of source code must retain the above copyright
9
+ * notice, this list of conditions and the following disclaimer.
10
+ *
11
+ * THIS SOFTWARE IS PROVIDED BY Berkeley Software Design, Inc. ``AS IS'' AND
12
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
13
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
14
+ * ARE DISCLAIMED. IN NO EVENT SHALL Berkeley Software Design, Inc. BE LIABLE
15
+ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
16
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
17
+ * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
18
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
19
+ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
20
+ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
21
+ * SUCH DAMAGE.
22
+ *
23
+ * BSDI ifaddrs.h,v 2.5 2000/02/23 14:51:59 dab Exp
24
+ */
25
+
26
+ #ifndef _IFADDRS_H_
27
+ #define _IFADDRS_H_
28
+
29
+ struct ifaddrs {
30
+ struct ifaddrs *ifa_next;
31
+ char *ifa_name;
32
+ unsigned int ifa_flags;
33
+ struct sockaddr *ifa_addr;
34
+ struct sockaddr *ifa_netmask;
35
+ struct sockaddr *ifa_dstaddr;
36
+ void *ifa_data;
37
+ };
38
+
39
+ /*
40
+ * This may have been defined in <net/if.h>. Note that if <net/if.h> is
41
+ * to be included it must be included before this header file.
42
+ */
43
+ #ifndef ifa_broadaddr
44
+ #define ifa_broadaddr ifa_dstaddr /* broadcast address interface */
45
+ #endif
46
+
47
+ #include <sys/cdefs.h>
48
+
49
+ __BEGIN_DECLS
50
+ extern int getifaddrs(struct ifaddrs **ifap);
51
+ extern void freeifaddrs(struct ifaddrs *ifa);
52
+ __END_DECLS
53
+
54
+ #endif
@@ -0,0 +1,34 @@
1
+ /* Copyright Joyent, Inc. and other Node contributors. All rights reserved.
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
5
+ * deal in the Software without restriction, including without limitation the
6
+ * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
7
+ * sell 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
18
+ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
19
+ * IN THE SOFTWARE.
20
+ */
21
+
22
+ #ifndef UV_BSD_H
23
+ #define UV_BSD_H
24
+
25
+ #define UV_PLATFORM_FS_EVENT_FIELDS \
26
+ uv__io_t event_watcher; \
27
+
28
+ #define UV_IO_PRIVATE_PLATFORM_FIELDS \
29
+ int rcount; \
30
+ int wcount; \
31
+
32
+ #define UV_HAVE_KQUEUE 1
33
+
34
+ #endif /* UV_BSD_H */
@@ -0,0 +1,61 @@
1
+ /* Copyright Joyent, Inc. and other Node contributors. All rights reserved.
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
5
+ * deal in the Software without restriction, including without limitation the
6
+ * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
7
+ * sell 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
18
+ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
19
+ * IN THE SOFTWARE.
20
+ */
21
+
22
+ #ifndef UV_DARWIN_H
23
+ #define UV_DARWIN_H
24
+
25
+ #if defined(__APPLE__) && defined(__MACH__)
26
+ # include <mach/mach.h>
27
+ # include <mach/task.h>
28
+ # include <mach/semaphore.h>
29
+ # include <TargetConditionals.h>
30
+ # define UV_PLATFORM_SEM_T semaphore_t
31
+ #endif
32
+
33
+ #define UV_IO_PRIVATE_PLATFORM_FIELDS \
34
+ int rcount; \
35
+ int wcount; \
36
+
37
+ #define UV_PLATFORM_LOOP_FIELDS \
38
+ uv_thread_t cf_thread; \
39
+ void* _cf_reserved; \
40
+ void* cf_state; \
41
+ uv_mutex_t cf_mutex; \
42
+ uv_sem_t cf_sem; \
43
+ void* cf_signals[2]; \
44
+
45
+ #define UV_PLATFORM_FS_EVENT_FIELDS \
46
+ uv__io_t event_watcher; \
47
+ char* realpath; \
48
+ int realpath_len; \
49
+ int cf_flags; \
50
+ uv_async_t* cf_cb; \
51
+ void* cf_events[2]; \
52
+ void* cf_member[2]; \
53
+ int cf_error; \
54
+ uv_mutex_t cf_mutex; \
55
+
56
+ #define UV_STREAM_PRIVATE_PLATFORM_FIELDS \
57
+ void* select; \
58
+
59
+ #define UV_HAVE_KQUEUE 1
60
+
61
+ #endif /* UV_DARWIN_H */