cairo 1.8.5-x86-mingw32 → 1.10.0-x86-mingw32

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of cairo might be problematic. Click here for more details.

Files changed (450) hide show
  1. data/NEWS +2 -2
  2. data/Rakefile +44 -7
  3. data/ext/cairo/cairo.def +28 -1
  4. data/ext/cairo/extconf.rb +14 -16
  5. data/ext/cairo/rb_cairo.c +4 -1
  6. data/ext/cairo/rb_cairo.h +65 -1
  7. data/ext/cairo/rb_cairo_constants.c +150 -3
  8. data/ext/cairo/rb_cairo_context.c +17 -0
  9. data/ext/cairo/rb_cairo_device.c +406 -0
  10. data/ext/cairo/rb_cairo_exception.c +83 -32
  11. data/ext/cairo/rb_cairo_io.c +166 -0
  12. data/ext/cairo/rb_cairo_io.h +44 -0
  13. data/ext/cairo/rb_cairo_matrix.c +1 -1
  14. data/ext/cairo/rb_cairo_private.h +3 -0
  15. data/ext/cairo/rb_cairo_region.c +385 -0
  16. data/ext/cairo/rb_cairo_surface.c +674 -199
  17. data/lib/1.8/cairo.so +0 -0
  18. data/lib/1.9/cairo.so +0 -0
  19. data/samples/blur.rb +2 -3
  20. data/samples/{pac2.rb → pac-nomralize.rb} +5 -6
  21. data/samples/pac-tee.rb +170 -0
  22. data/samples/pac.rb +2 -3
  23. data/samples/png.rb +2 -3
  24. data/samples/scalable.rb +2 -3
  25. data/samples/text-on-path.rb +2 -3
  26. data/samples/text2.rb +2 -3
  27. data/test/cairo-test-utils.rb +15 -0
  28. data/test/run-test.rb +5 -4
  29. data/test/test_context.rb +4 -4
  30. data/test/test_font_face.rb +34 -21
  31. data/test/test_recording_surface.rb +18 -0
  32. data/test/test_region.rb +102 -0
  33. data/test/test_script_device.rb +46 -0
  34. data/test/test_script_surface.rb +13 -0
  35. data/test/test_surface.rb +14 -4
  36. data/test/test_tee_surface.rb +32 -0
  37. data/test/test_xml_device.rb +22 -0
  38. data/test/test_xml_surface.rb +32 -0
  39. data/tmp/i386-mingw32/cairo/1.9.2/rbconfig.rb +1 -1
  40. data/vendor/local/bin/libcairo-2.dll +0 -0
  41. data/vendor/local/include/cairo/cairo-deprecated.h +1 -16
  42. data/vendor/local/include/cairo/cairo-features.h +7 -0
  43. data/vendor/local/include/cairo/cairo-ft.h +16 -9
  44. data/vendor/local/include/cairo/cairo-gobject.h +186 -0
  45. data/vendor/local/include/cairo/cairo-pdf.h +27 -1
  46. data/vendor/local/include/cairo/cairo-ps.h +1 -1
  47. data/vendor/local/include/cairo/cairo-script-interpreter.h +117 -0
  48. data/vendor/local/include/cairo/cairo-svg.h +1 -1
  49. data/vendor/local/include/cairo/cairo-version.h +2 -2
  50. data/vendor/local/include/cairo/cairo-win32.h +1 -1
  51. data/vendor/local/include/cairo/cairo.h +382 -26
  52. data/vendor/local/lib/cairo.def +44 -0
  53. data/vendor/local/lib/cairo.lib +0 -0
  54. data/vendor/local/lib/libcairo.dll.a +0 -0
  55. data/vendor/local/lib/pkgconfig/cairo-fc.pc +12 -0
  56. data/vendor/local/lib/pkgconfig/cairo-ft.pc +4 -4
  57. data/vendor/local/lib/pkgconfig/cairo-gobject.pc +12 -0
  58. data/vendor/local/lib/pkgconfig/cairo-pdf.pc +3 -3
  59. data/vendor/local/lib/pkgconfig/cairo-png.pc +3 -3
  60. data/vendor/local/lib/pkgconfig/cairo-ps.pc +3 -3
  61. data/vendor/local/lib/pkgconfig/cairo-svg.pc +3 -3
  62. data/vendor/local/lib/pkgconfig/cairo-win32-font.pc +3 -3
  63. data/vendor/local/lib/pkgconfig/cairo-win32.pc +3 -3
  64. data/vendor/local/lib/pkgconfig/cairo.pc +4 -4
  65. data/vendor/local/manifest/{cairo-dev_1.8.10-4_win32.mft → cairo-dev_1.10.0-1_win32.mft} +34 -27
  66. data/vendor/local/manifest/cairo_1.10.0-1_win32.mft +5 -0
  67. data/vendor/local/share/doc/{cairo_1.8.10-4_win32 → cairo_1.10.0-1_win32}/COPYING +9 -8
  68. data/vendor/local/share/doc/{cairo_1.8.10-4_win32 → cairo_1.10.0-1_win32}/COPYING-LGPL-2.1 +2 -2
  69. data/vendor/local/share/doc/{cairo_1.8.10-4_win32 → cairo_1.10.0-1_win32}/COPYING-MPL-1.1 +0 -0
  70. data/vendor/local/share/gtk-doc/html/cairo/bindings-errors.html +4 -14
  71. data/vendor/local/share/gtk-doc/html/cairo/bindings-fonts.html +5 -15
  72. data/vendor/local/share/gtk-doc/html/cairo/bindings-memory.html +7 -17
  73. data/vendor/local/share/gtk-doc/html/cairo/bindings-overloading.html +6 -16
  74. data/vendor/local/share/gtk-doc/html/cairo/bindings-path.html +6 -16
  75. data/vendor/local/share/gtk-doc/html/cairo/bindings-patterns.html +23 -28
  76. data/vendor/local/share/gtk-doc/html/cairo/bindings-return-values.html +3 -13
  77. data/vendor/local/share/gtk-doc/html/cairo/bindings-streams.html +3 -13
  78. data/vendor/local/share/gtk-doc/html/cairo/bindings-surfaces.html +7 -17
  79. data/vendor/local/share/gtk-doc/html/cairo/cairo-Error-handling.html +373 -0
  80. data/vendor/local/share/gtk-doc/html/cairo/cairo-FreeType-Fonts.html +330 -0
  81. data/vendor/local/share/gtk-doc/html/cairo/cairo-Image-Surfaces.html +478 -0
  82. data/vendor/local/share/gtk-doc/html/cairo/cairo-PDF-Surfaces.html +344 -0
  83. data/vendor/local/share/gtk-doc/html/cairo/cairo-PNG-Support.html +320 -0
  84. data/vendor/local/share/gtk-doc/html/cairo/cairo-Paths.html +1291 -0
  85. data/vendor/local/share/gtk-doc/html/cairo/cairo-PostScript-Surfaces.html +622 -0
  86. data/vendor/local/share/gtk-doc/html/cairo/cairo-Quartz-(CGFont)-Fonts.html +134 -0
  87. data/vendor/local/share/gtk-doc/html/cairo/cairo-Quartz-Surfaces.html +210 -0
  88. data/vendor/local/share/gtk-doc/html/cairo/cairo-Regions.html +834 -0
  89. data/vendor/local/share/gtk-doc/html/cairo/cairo-SVG-Surfaces.html +318 -0
  90. data/vendor/local/share/gtk-doc/html/cairo/cairo-Transformations.html +410 -0
  91. data/vendor/local/share/gtk-doc/html/cairo/cairo-Types.html +169 -0
  92. data/vendor/local/share/gtk-doc/html/cairo/cairo-User-Fonts.html +715 -0
  93. data/vendor/local/share/gtk-doc/html/cairo/cairo-Version-Information.html +410 -0
  94. data/vendor/local/share/gtk-doc/html/cairo/cairo-Win32-Fonts.html +335 -0
  95. data/vendor/local/share/gtk-doc/html/cairo/cairo-Win32-Surfaces.html +291 -0
  96. data/vendor/local/share/gtk-doc/html/cairo/cairo-XLib-Surfaces.html +470 -0
  97. data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-device-t.html +595 -0
  98. data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-font-face-t.html +384 -0
  99. data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-font-options-t.html +644 -0
  100. data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-matrix-t.html +574 -0
  101. data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-pattern-t.html +1457 -0
  102. data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-scaled-font-t.html +1076 -0
  103. data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-surface-t.html +1396 -0
  104. data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-t.html +2743 -0
  105. data/vendor/local/share/gtk-doc/html/cairo/cairo-drawing.html +13 -20
  106. data/vendor/local/share/gtk-doc/html/cairo/cairo-fonts.html +13 -23
  107. data/vendor/local/share/gtk-doc/html/cairo/cairo-support.html +11 -21
  108. data/vendor/local/share/gtk-doc/html/cairo/cairo-surfaces.html +19 -26
  109. data/vendor/local/share/gtk-doc/html/cairo/cairo-text.html +279 -326
  110. data/vendor/local/share/gtk-doc/html/cairo/cairo.devhelp +411 -355
  111. data/vendor/local/share/gtk-doc/html/cairo/cairo.devhelp2 +579 -480
  112. data/vendor/local/share/gtk-doc/html/cairo/index-1.10.html +147 -0
  113. data/vendor/local/share/gtk-doc/html/cairo/index-1.2.html +88 -65
  114. data/vendor/local/share/gtk-doc/html/cairo/index-1.4.html +72 -47
  115. data/vendor/local/share/gtk-doc/html/cairo/index-1.6.html +43 -32
  116. data/vendor/local/share/gtk-doc/html/cairo/index-1.8.html +42 -41
  117. data/vendor/local/share/gtk-doc/html/cairo/index-all.html +542 -345
  118. data/vendor/local/share/gtk-doc/html/cairo/index.html +36 -39
  119. data/vendor/local/share/gtk-doc/html/cairo/index.sgml +674 -444
  120. data/vendor/local/share/gtk-doc/html/cairo/language-bindings.html +6 -16
  121. data/vendor/local/share/gtk-doc/html/cairo/style.css +152 -54
  122. data/vendor/local/src/tml/packaging/cairo_1.10.0-1_win32.log +1262 -0
  123. data/vendor/local/src/tml/packaging/{cairo_1.8.10-4_win32.sh → cairo_1.10.0-1_win32.sh} +3 -3
  124. metadata +137 -389
  125. data/doc/doc.css +0 -91
  126. data/doc/en/cairo-antialias.html +0 -38
  127. data/doc/en/cairo-clip-not-representable-error.html +0 -47
  128. data/doc/en/cairo-color-base.html +0 -69
  129. data/doc/en/cairo-color-cmyk.html +0 -157
  130. data/doc/en/cairo-color-hsv.html +0 -137
  131. data/doc/en/cairo-color-rgb.html +0 -142
  132. data/doc/en/cairo-color-x11.html +0 -173
  133. data/doc/en/cairo-color.html +0 -238
  134. data/doc/en/cairo-content.html +0 -37
  135. data/doc/en/cairo-context-blur.html +0 -39
  136. data/doc/en/cairo-context-circle.html +0 -39
  137. data/doc/en/cairo-context-color.html +0 -39
  138. data/doc/en/cairo-context-path.html +0 -44
  139. data/doc/en/cairo-context-rectangle.html +0 -39
  140. data/doc/en/cairo-context-triangle.html +0 -39
  141. data/doc/en/cairo-context.html +0 -643
  142. data/doc/en/cairo-error.html +0 -44
  143. data/doc/en/cairo-extend.html +0 -38
  144. data/doc/en/cairo-file-not-found.html +0 -47
  145. data/doc/en/cairo-fill-rule.html +0 -36
  146. data/doc/en/cairo-filter.html +0 -40
  147. data/doc/en/cairo-font-extents.html +0 -129
  148. data/doc/en/cairo-font-face.html +0 -38
  149. data/doc/en/cairo-font-options.html +0 -139
  150. data/doc/en/cairo-font-slant.html +0 -37
  151. data/doc/en/cairo-font-type-mismatch.html +0 -47
  152. data/doc/en/cairo-font-weight.html +0 -36
  153. data/doc/en/cairo-format.html +0 -46
  154. data/doc/en/cairo-glyph.html +0 -99
  155. data/doc/en/cairo-gradient-pattern.html +0 -74
  156. data/doc/en/cairo-hint-metrics.html +0 -37
  157. data/doc/en/cairo-hint-style.html +0 -39
  158. data/doc/en/cairo-image-surface.html +0 -82
  159. data/doc/en/cairo-invalid-clusters.html +0 -47
  160. data/doc/en/cairo-invalid-content-error.html +0 -47
  161. data/doc/en/cairo-invalid-dash-error.html +0 -47
  162. data/doc/en/cairo-invalid-dsc-comment-error.html +0 -47
  163. data/doc/en/cairo-invalid-format-error.html +0 -47
  164. data/doc/en/cairo-invalid-index-error.html +0 -47
  165. data/doc/en/cairo-invalid-matrix-error.html +0 -47
  166. data/doc/en/cairo-invalid-path-data-error.html +0 -47
  167. data/doc/en/cairo-invalid-pop-group-error.html +0 -47
  168. data/doc/en/cairo-invalid-restore-error.html +0 -47
  169. data/doc/en/cairo-invalid-slant.html +0 -47
  170. data/doc/en/cairo-invalid-status-error.html +0 -47
  171. data/doc/en/cairo-invalid-stride-error.html +0 -47
  172. data/doc/en/cairo-invalid-string-error.html +0 -47
  173. data/doc/en/cairo-invalid-visual-error.html +0 -47
  174. data/doc/en/cairo-invalid-weight.html +0 -47
  175. data/doc/en/cairo-line-cap.html +0 -37
  176. data/doc/en/cairo-line-join.html +0 -37
  177. data/doc/en/cairo-linear-pattern.html +0 -60
  178. data/doc/en/cairo-matrix.html +0 -259
  179. data/doc/en/cairo-negative-count.html +0 -47
  180. data/doc/en/cairo-no-current-point-error.html +0 -47
  181. data/doc/en/cairo-null-pointer-error.html +0 -47
  182. data/doc/en/cairo-operator.html +0 -48
  183. data/doc/en/cairo-paper-parse-error.html +0 -47
  184. data/doc/en/cairo-paper-unknown-paper-name.html +0 -66
  185. data/doc/en/cairo-paper-unknown-unit.html +0 -66
  186. data/doc/en/cairo-paper-unrecognized-paper-description.html +0 -66
  187. data/doc/en/cairo-paper.html +0 -184
  188. data/doc/en/cairo-path-close-path.html +0 -49
  189. data/doc/en/cairo-path-curve-to.html +0 -49
  190. data/doc/en/cairo-path-data-type.html +0 -38
  191. data/doc/en/cairo-path-data.html +0 -98
  192. data/doc/en/cairo-path-line-to.html +0 -49
  193. data/doc/en/cairo-path-move-to.html +0 -49
  194. data/doc/en/cairo-path.html +0 -155
  195. data/doc/en/cairo-pattern-type-mismatch-error.html +0 -47
  196. data/doc/en/cairo-pattern.html +0 -99
  197. data/doc/en/cairo-pdf-surface.html +0 -57
  198. data/doc/en/cairo-point.html +0 -74
  199. data/doc/en/cairo-ps-level.html +0 -49
  200. data/doc/en/cairo-ps-surface.html +0 -92
  201. data/doc/en/cairo-quartz-image-surface.html +0 -57
  202. data/doc/en/cairo-quartz-surface.html +0 -57
  203. data/doc/en/cairo-radial-pattern.html +0 -60
  204. data/doc/en/cairo-read-error.html +0 -47
  205. data/doc/en/cairo-rectangle.html +0 -89
  206. data/doc/en/cairo-scaled-font.html +0 -94
  207. data/doc/en/cairo-solid-pattern.html +0 -62
  208. data/doc/en/cairo-subpixel-order.html +0 -39
  209. data/doc/en/cairo-surface-finished-error.html +0 -47
  210. data/doc/en/cairo-surface-pattern.html +0 -57
  211. data/doc/en/cairo-surface-type-mismatch-error.html +0 -47
  212. data/doc/en/cairo-surface.html +0 -121
  213. data/doc/en/cairo-svg-surface.html +0 -77
  214. data/doc/en/cairo-svg-version.html +0 -49
  215. data/doc/en/cairo-temp-file-error.html +0 -47
  216. data/doc/en/cairo-text-cluster-flag.html +0 -35
  217. data/doc/en/cairo-text-cluster.html +0 -84
  218. data/doc/en/cairo-text-extents.html +0 -144
  219. data/doc/en/cairo-toy-font-face.html +0 -67
  220. data/doc/en/cairo-user-font-error.html +0 -47
  221. data/doc/en/cairo-user-font-face-text-to-glyphs-data.html +0 -94
  222. data/doc/en/cairo-user-font-face.html +0 -72
  223. data/doc/en/cairo-user-font-immutable.html +0 -47
  224. data/doc/en/cairo-win32-printing-surface.html +0 -57
  225. data/doc/en/cairo-win32-surface.html +0 -62
  226. data/doc/en/cairo-write-error.html +0 -47
  227. data/doc/en/cairo.html +0 -131
  228. data/doc/en/index.html +0 -1154
  229. data/doc/index.html +0 -18
  230. data/doc/ja/cairo-antialias.html +0 -57
  231. data/doc/ja/cairo-clip-not-representable-error.html +0 -56
  232. data/doc/ja/cairo-color-base.html +0 -75
  233. data/doc/ja/cairo-color-cmyk.html +0 -152
  234. data/doc/ja/cairo-color-hsv.html +0 -135
  235. data/doc/ja/cairo-color-rgb.html +0 -145
  236. data/doc/ja/cairo-color-x11.html +0 -183
  237. data/doc/ja/cairo-color.html +0 -317
  238. data/doc/ja/cairo-content.html +0 -51
  239. data/doc/ja/cairo-context-blur.html +0 -53
  240. data/doc/ja/cairo-context-circle.html +0 -54
  241. data/doc/ja/cairo-context-color.html +0 -52
  242. data/doc/ja/cairo-context-path.html +0 -77
  243. data/doc/ja/cairo-context-rectangle.html +0 -60
  244. data/doc/ja/cairo-context-triangle.html +0 -47
  245. data/doc/ja/cairo-context.html +0 -1542
  246. data/doc/ja/cairo-error.html +0 -56
  247. data/doc/ja/cairo-extend.html +0 -56
  248. data/doc/ja/cairo-file-not-found.html +0 -51
  249. data/doc/ja/cairo-fill-rule.html +0 -58
  250. data/doc/ja/cairo-filter.html +0 -43
  251. data/doc/ja/cairo-font-extents.html +0 -164
  252. data/doc/ja/cairo-font-face.html +0 -55
  253. data/doc/ja/cairo-font-options.html +0 -189
  254. data/doc/ja/cairo-font-slant.html +0 -50
  255. data/doc/ja/cairo-font-type-mismatch.html +0 -52
  256. data/doc/ja/cairo-font-weight.html +0 -47
  257. data/doc/ja/cairo-format.html +0 -81
  258. data/doc/ja/cairo-glyph.html +0 -115
  259. data/doc/ja/cairo-gradient-pattern.html +0 -119
  260. data/doc/ja/cairo-hint-metrics.html +0 -57
  261. data/doc/ja/cairo-hint-style.html +0 -64
  262. data/doc/ja/cairo-image-surface.html +0 -131
  263. data/doc/ja/cairo-invalid-clusters.html +0 -55
  264. data/doc/ja/cairo-invalid-content-error.html +0 -54
  265. data/doc/ja/cairo-invalid-dash-error.html +0 -54
  266. data/doc/ja/cairo-invalid-dsc-comment-error.html +0 -54
  267. data/doc/ja/cairo-invalid-format-error.html +0 -54
  268. data/doc/ja/cairo-invalid-index-error.html +0 -54
  269. data/doc/ja/cairo-invalid-matrix-error.html +0 -54
  270. data/doc/ja/cairo-invalid-path-data-error.html +0 -54
  271. data/doc/ja/cairo-invalid-pop-group-error.html +0 -54
  272. data/doc/ja/cairo-invalid-restore-error.html +0 -55
  273. data/doc/ja/cairo-invalid-slant.html +0 -57
  274. data/doc/ja/cairo-invalid-status-error.html +0 -55
  275. data/doc/ja/cairo-invalid-stride-error.html +0 -55
  276. data/doc/ja/cairo-invalid-string-error.html +0 -54
  277. data/doc/ja/cairo-invalid-visual-error.html +0 -57
  278. data/doc/ja/cairo-invalid-weight.html +0 -57
  279. data/doc/ja/cairo-line-cap.html +0 -50
  280. data/doc/ja/cairo-line-join.html +0 -53
  281. data/doc/ja/cairo-linear-pattern.html +0 -87
  282. data/doc/ja/cairo-matrix.html +0 -354
  283. data/doc/ja/cairo-negative-count.html +0 -52
  284. data/doc/ja/cairo-no-current-point-error.html +0 -54
  285. data/doc/ja/cairo-null-pointer-error.html +0 -54
  286. data/doc/ja/cairo-operator.html +0 -51
  287. data/doc/ja/cairo-paper-parse-error.html +0 -55
  288. data/doc/ja/cairo-paper-unknown-paper-name.html +0 -76
  289. data/doc/ja/cairo-paper-unknown-unit.html +0 -75
  290. data/doc/ja/cairo-paper-unrecognized-paper-description.html +0 -76
  291. data/doc/ja/cairo-paper.html +0 -357
  292. data/doc/ja/cairo-path-close-path.html +0 -57
  293. data/doc/ja/cairo-path-curve-to.html +0 -70
  294. data/doc/ja/cairo-path-data-type.html +0 -53
  295. data/doc/ja/cairo-path-data.html +0 -127
  296. data/doc/ja/cairo-path-line-to.html +0 -62
  297. data/doc/ja/cairo-path-move-to.html +0 -62
  298. data/doc/ja/cairo-path.html +0 -144
  299. data/doc/ja/cairo-pattern-type-mismatch-error.html +0 -56
  300. data/doc/ja/cairo-pattern.html +0 -128
  301. data/doc/ja/cairo-pdf-surface.html +0 -86
  302. data/doc/ja/cairo-point.html +0 -90
  303. data/doc/ja/cairo-ps-level.html +0 -62
  304. data/doc/ja/cairo-ps-surface.html +0 -214
  305. data/doc/ja/cairo-quartz-image-surface.html +0 -75
  306. data/doc/ja/cairo-quartz-surface.html +0 -93
  307. data/doc/ja/cairo-radial-pattern.html +0 -93
  308. data/doc/ja/cairo-read-error.html +0 -55
  309. data/doc/ja/cairo-rectangle.html +0 -109
  310. data/doc/ja/cairo-scaled-font.html +0 -180
  311. data/doc/ja/cairo-solid-pattern.html +0 -87
  312. data/doc/ja/cairo-subpixel-order.html +0 -57
  313. data/doc/ja/cairo-surface-finished-error.html +0 -54
  314. data/doc/ja/cairo-surface-pattern.html +0 -68
  315. data/doc/ja/cairo-surface-type-mismatch-error.html +0 -56
  316. data/doc/ja/cairo-surface.html +0 -213
  317. data/doc/ja/cairo-svg-surface.html +0 -114
  318. data/doc/ja/cairo-svg-version.html +0 -66
  319. data/doc/ja/cairo-temp-file-error.html +0 -50
  320. data/doc/ja/cairo-text-cluster-flag.html +0 -46
  321. data/doc/ja/cairo-text-cluster.html +0 -102
  322. data/doc/ja/cairo-text-extents.html +0 -163
  323. data/doc/ja/cairo-toy-font-face.html +0 -107
  324. data/doc/ja/cairo-user-font-error.html +0 -55
  325. data/doc/ja/cairo-user-font-face-text-to-glyphs-data.html +0 -156
  326. data/doc/ja/cairo-user-font-face.html +0 -268
  327. data/doc/ja/cairo-user-font-immutable.html +0 -54
  328. data/doc/ja/cairo-win32-printing-surface.html +0 -80
  329. data/doc/ja/cairo-win32-surface.html +0 -100
  330. data/doc/ja/cairo-write-error.html +0 -55
  331. data/doc/ja/cairo.html +0 -177
  332. data/doc/ja/index.html +0 -1156
  333. data/pkg-config.rb +0 -313
  334. data/test-unit/Rakefile +0 -30
  335. data/test-unit/bin/testrb +0 -5
  336. data/test-unit/lib/test/unit.rb +0 -280
  337. data/test-unit/lib/test/unit/assertionfailederror.rb +0 -14
  338. data/test-unit/lib/test/unit/assertions.rb +0 -722
  339. data/test-unit/lib/test/unit/attribute.rb +0 -125
  340. data/test-unit/lib/test/unit/autorunner.rb +0 -254
  341. data/test-unit/lib/test/unit/collector.rb +0 -43
  342. data/test-unit/lib/test/unit/collector/descendant.rb +0 -23
  343. data/test-unit/lib/test/unit/collector/dir.rb +0 -108
  344. data/test-unit/lib/test/unit/collector/load.rb +0 -135
  345. data/test-unit/lib/test/unit/collector/objectspace.rb +0 -34
  346. data/test-unit/lib/test/unit/color.rb +0 -61
  347. data/test-unit/lib/test/unit/diff.rb +0 -524
  348. data/test-unit/lib/test/unit/error.rb +0 -124
  349. data/test-unit/lib/test/unit/exceptionhandler.rb +0 -39
  350. data/test-unit/lib/test/unit/failure.rb +0 -110
  351. data/test-unit/lib/test/unit/fixture.rb +0 -185
  352. data/test-unit/lib/test/unit/notification.rb +0 -125
  353. data/test-unit/lib/test/unit/omission.rb +0 -143
  354. data/test-unit/lib/test/unit/pending.rb +0 -146
  355. data/test-unit/lib/test/unit/priority.rb +0 -146
  356. data/test-unit/lib/test/unit/runner/console.rb +0 -46
  357. data/test-unit/lib/test/unit/runner/emacs.rb +0 -8
  358. data/test-unit/lib/test/unit/testcase.rb +0 -281
  359. data/test-unit/lib/test/unit/testresult.rb +0 -89
  360. data/test-unit/lib/test/unit/testsuite.rb +0 -110
  361. data/test-unit/lib/test/unit/ui/console/outputlevel.rb +0 -14
  362. data/test-unit/lib/test/unit/ui/console/testrunner.rb +0 -195
  363. data/test-unit/lib/test/unit/ui/emacs/testrunner.rb +0 -49
  364. data/test-unit/lib/test/unit/ui/testrunner.rb +0 -20
  365. data/test-unit/lib/test/unit/ui/testrunnermediator.rb +0 -77
  366. data/test-unit/lib/test/unit/ui/testrunnerutilities.rb +0 -41
  367. data/test-unit/lib/test/unit/util/backtracefilter.rb +0 -41
  368. data/test-unit/lib/test/unit/util/observable.rb +0 -90
  369. data/test-unit/lib/test/unit/util/procwrapper.rb +0 -48
  370. data/test-unit/lib/test/unit/version.rb +0 -7
  371. data/test-unit/sample/adder.rb +0 -13
  372. data/test-unit/sample/subtracter.rb +0 -12
  373. data/test-unit/sample/tc_adder.rb +0 -18
  374. data/test-unit/sample/tc_subtracter.rb +0 -18
  375. data/test-unit/sample/ts_examples.rb +0 -7
  376. data/test-unit/test/collector/test_descendant.rb +0 -135
  377. data/test-unit/test/collector/test_dir.rb +0 -406
  378. data/test-unit/test/collector/test_load.rb +0 -333
  379. data/test-unit/test/collector/test_objectspace.rb +0 -98
  380. data/test-unit/test/run-test.rb +0 -13
  381. data/test-unit/test/test_assertions.rb +0 -693
  382. data/test-unit/test/test_attribute.rb +0 -86
  383. data/test-unit/test/test_color.rb +0 -37
  384. data/test-unit/test/test_diff.rb +0 -477
  385. data/test-unit/test/test_emacs_runner.rb +0 -60
  386. data/test-unit/test/test_error.rb +0 -26
  387. data/test-unit/test/test_failure.rb +0 -33
  388. data/test-unit/test/test_fixture.rb +0 -252
  389. data/test-unit/test/test_notification.rb +0 -33
  390. data/test-unit/test/test_omission.rb +0 -81
  391. data/test-unit/test/test_pending.rb +0 -70
  392. data/test-unit/test/test_priority.rb +0 -89
  393. data/test-unit/test/test_testcase.rb +0 -430
  394. data/test-unit/test/test_testresult.rb +0 -113
  395. data/test-unit/test/test_testsuite.rb +0 -129
  396. data/test-unit/test/testunit_test_util.rb +0 -14
  397. data/test-unit/test/ui/test_testrunmediator.rb +0 -20
  398. data/test-unit/test/util/test_backtracefilter.rb +0 -41
  399. data/test-unit/test/util/test_observable.rb +0 -102
  400. data/test-unit/test/util/test_procwrapper.rb +0 -36
  401. data/test/test_pkg_config.rb +0 -123
  402. data/vendor/local/include/libpng14/png.h +0 -2701
  403. data/vendor/local/include/libpng14/pngconf.h +0 -1525
  404. data/vendor/local/include/png.h +0 -2701
  405. data/vendor/local/include/pngconf.h +0 -1525
  406. data/vendor/local/include/zconf.h +0 -461
  407. data/vendor/local/include/zlib.h +0 -1589
  408. data/vendor/local/lib/libpng.def +0 -192
  409. data/vendor/local/lib/libpng.lib +0 -0
  410. data/vendor/local/lib/libpng14.dll.a +0 -0
  411. data/vendor/local/lib/libz.dll.a +0 -0
  412. data/vendor/local/lib/pkgconfig/libpng.pc +0 -11
  413. data/vendor/local/lib/pkgconfig/libpng14.pc +0 -11
  414. data/vendor/local/lib/zdll.lib +0 -0
  415. data/vendor/local/lib/zlib.def +0 -67
  416. data/vendor/local/manifest/cairo_1.8.10-4_win32.mft +0 -5
  417. data/vendor/local/manifest/libpng-dev_1.4.3-1_win32.mft +0 -15
  418. data/vendor/local/manifest/zlib-dev_1.2.5-2_win32.mft +0 -8
  419. data/vendor/local/share/gtk-doc/html/cairo/cairo-context.html +0 -2643
  420. data/vendor/local/share/gtk-doc/html/cairo/cairo-error-status.html +0 -360
  421. data/vendor/local/share/gtk-doc/html/cairo/cairo-font-face.html +0 -408
  422. data/vendor/local/share/gtk-doc/html/cairo/cairo-font-options.html +0 -678
  423. data/vendor/local/share/gtk-doc/html/cairo/cairo-ft-font.html +0 -319
  424. data/vendor/local/share/gtk-doc/html/cairo/cairo-image-surface.html +0 -473
  425. data/vendor/local/share/gtk-doc/html/cairo/cairo-matrix.html +0 -596
  426. data/vendor/local/share/gtk-doc/html/cairo/cairo-paths.html +0 -1274
  427. data/vendor/local/share/gtk-doc/html/cairo/cairo-pattern.html +0 -1485
  428. data/vendor/local/share/gtk-doc/html/cairo/cairo-pdf-surface.html +0 -238
  429. data/vendor/local/share/gtk-doc/html/cairo/cairo-png-functions.html +0 -341
  430. data/vendor/local/share/gtk-doc/html/cairo/cairo-ps-surface.html +0 -622
  431. data/vendor/local/share/gtk-doc/html/cairo/cairo-quartz-font.html +0 -151
  432. data/vendor/local/share/gtk-doc/html/cairo/cairo-quartz-surface.html +0 -219
  433. data/vendor/local/share/gtk-doc/html/cairo/cairo-scaled-font.html +0 -1023
  434. data/vendor/local/share/gtk-doc/html/cairo/cairo-surface.html +0 -1026
  435. data/vendor/local/share/gtk-doc/html/cairo/cairo-svg-surface.html +0 -321
  436. data/vendor/local/share/gtk-doc/html/cairo/cairo-transformations.html +0 -436
  437. data/vendor/local/share/gtk-doc/html/cairo/cairo-types.html +0 -133
  438. data/vendor/local/share/gtk-doc/html/cairo/cairo-user-font.html +0 -735
  439. data/vendor/local/share/gtk-doc/html/cairo/cairo-version-info.html +0 -345
  440. data/vendor/local/share/gtk-doc/html/cairo/cairo-win32-font.html +0 -358
  441. data/vendor/local/share/gtk-doc/html/cairo/cairo-win32-surface.html +0 -312
  442. data/vendor/local/share/gtk-doc/html/cairo/cairo-xlib-surface.html +0 -492
  443. data/vendor/local/share/man/man3/libpng.3 +0 -4455
  444. data/vendor/local/share/man/man3/libpngpf.3 +0 -808
  445. data/vendor/local/share/man/man5/png.5 +0 -74
  446. data/vendor/local/src/tml/packaging/cairo_1.8.10-4_win32.log +0 -920
  447. data/vendor/local/src/tml/packaging/libpng_1.4.3-1_win32.log +0 -272
  448. data/vendor/local/src/tml/packaging/libpng_1.4.3-1_win32.sh +0 -71
  449. data/vendor/local/src/tml/packaging/zlib_1.2.5-2_win32.log +0 -42
  450. data/vendor/local/src/tml/packaging/zlib_1.2.5-2_win32.sh +0 -189
@@ -1,461 +0,0 @@
1
- /* zconf.h -- configuration of the zlib compression library
2
- * Copyright (C) 1995-2010 Jean-loup Gailly.
3
- * For conditions of distribution and use, see copyright notice in zlib.h
4
- */
5
-
6
- /* @(#) $Id$ */
7
-
8
- #ifndef ZCONF_H
9
- #define ZCONF_H
10
-
11
- /*
12
- * If you *really* need a unique prefix for all types and library functions,
13
- * compile with -DZ_PREFIX. The "standard" zlib should be compiled without it.
14
- * Even better than compiling with -DZ_PREFIX would be to use configure to set
15
- * this permanently in zconf.h using "./configure --zprefix".
16
- */
17
- #ifdef Z_PREFIX /* may be set to #if 1 by ./configure */
18
-
19
- /* all linked symbols */
20
- # define _dist_code z__dist_code
21
- # define _length_code z__length_code
22
- # define _tr_align z__tr_align
23
- # define _tr_flush_block z__tr_flush_block
24
- # define _tr_init z__tr_init
25
- # define _tr_stored_block z__tr_stored_block
26
- # define _tr_tally z__tr_tally
27
- # define adler32 z_adler32
28
- # define adler32_combine z_adler32_combine
29
- # define adler32_combine64 z_adler32_combine64
30
- # define compress z_compress
31
- # define compress2 z_compress2
32
- # define compressBound z_compressBound
33
- # define crc32 z_crc32
34
- # define crc32_combine z_crc32_combine
35
- # define crc32_combine64 z_crc32_combine64
36
- # define deflate z_deflate
37
- # define deflateBound z_deflateBound
38
- # define deflateCopy z_deflateCopy
39
- # define deflateEnd z_deflateEnd
40
- # define deflateInit2_ z_deflateInit2_
41
- # define deflateInit_ z_deflateInit_
42
- # define deflateParams z_deflateParams
43
- # define deflatePrime z_deflatePrime
44
- # define deflateReset z_deflateReset
45
- # define deflateSetDictionary z_deflateSetDictionary
46
- # define deflateSetHeader z_deflateSetHeader
47
- # define deflateTune z_deflateTune
48
- # define deflate_copyright z_deflate_copyright
49
- # define get_crc_table z_get_crc_table
50
- # define gz_error z_gz_error
51
- # define gz_intmax z_gz_intmax
52
- # define gz_strwinerror z_gz_strwinerror
53
- # define gzbuffer z_gzbuffer
54
- # define gzclearerr z_gzclearerr
55
- # define gzclose z_gzclose
56
- # define gzclose_r z_gzclose_r
57
- # define gzclose_w z_gzclose_w
58
- # define gzdirect z_gzdirect
59
- # define gzdopen z_gzdopen
60
- # define gzeof z_gzeof
61
- # define gzerror z_gzerror
62
- # define gzflush z_gzflush
63
- # define gzgetc z_gzgetc
64
- # define gzgets z_gzgets
65
- # define gzoffset z_gzoffset
66
- # define gzoffset64 z_gzoffset64
67
- # define gzopen z_gzopen
68
- # define gzopen64 z_gzopen64
69
- # define gzprintf z_gzprintf
70
- # define gzputc z_gzputc
71
- # define gzputs z_gzputs
72
- # define gzread z_gzread
73
- # define gzrewind z_gzrewind
74
- # define gzseek z_gzseek
75
- # define gzseek64 z_gzseek64
76
- # define gzsetparams z_gzsetparams
77
- # define gztell z_gztell
78
- # define gztell64 z_gztell64
79
- # define gzungetc z_gzungetc
80
- # define gzwrite z_gzwrite
81
- # define inflate z_inflate
82
- # define inflateBack z_inflateBack
83
- # define inflateBackEnd z_inflateBackEnd
84
- # define inflateBackInit_ z_inflateBackInit_
85
- # define inflateCopy z_inflateCopy
86
- # define inflateEnd z_inflateEnd
87
- # define inflateGetHeader z_inflateGetHeader
88
- # define inflateInit2_ z_inflateInit2_
89
- # define inflateInit_ z_inflateInit_
90
- # define inflateMark z_inflateMark
91
- # define inflatePrime z_inflatePrime
92
- # define inflateReset z_inflateReset
93
- # define inflateReset2 z_inflateReset2
94
- # define inflateSetDictionary z_inflateSetDictionary
95
- # define inflateSync z_inflateSync
96
- # define inflateSyncPoint z_inflateSyncPoint
97
- # define inflateUndermine z_inflateUndermine
98
- # define inflate_copyright z_inflate_copyright
99
- # define inflate_fast z_inflate_fast
100
- # define inflate_table z_inflate_table
101
- # define uncompress z_uncompress
102
- # define zError z_zError
103
- # define zcalloc z_zcalloc
104
- # define zcfree z_zcfree
105
- # define zlibCompileFlags z_zlibCompileFlags
106
- # define zlibVersion z_zlibVersion
107
-
108
- /* all zlib typedefs in zlib.h and zconf.h */
109
- # define Byte z_Byte
110
- # define Bytef z_Bytef
111
- # define alloc_func z_alloc_func
112
- # define charf z_charf
113
- # define free_func z_free_func
114
- # define gzFile z_gzFile
115
- # define gz_header z_gz_header
116
- # define gz_headerp z_gz_headerp
117
- # define in_func z_in_func
118
- # define intf z_intf
119
- # define out_func z_out_func
120
- # define uInt z_uInt
121
- # define uIntf z_uIntf
122
- # define uLong z_uLong
123
- # define uLongf z_uLongf
124
- # define voidp z_voidp
125
- # define voidpc z_voidpc
126
- # define voidpf z_voidpf
127
-
128
- /* all zlib structs in zlib.h and zconf.h */
129
- # define gz_header_s z_gz_header_s
130
- # define internal_state z_internal_state
131
-
132
- #endif
133
-
134
- #if defined(__MSDOS__) && !defined(MSDOS)
135
- # define MSDOS
136
- #endif
137
- #if (defined(OS_2) || defined(__OS2__)) && !defined(OS2)
138
- # define OS2
139
- #endif
140
- #if defined(_WINDOWS) && !defined(WINDOWS)
141
- # define WINDOWS
142
- #endif
143
- #if defined(_WIN32) || defined(_WIN32_WCE) || defined(__WIN32__)
144
- # ifndef WIN32
145
- # define WIN32
146
- # endif
147
- #endif
148
- #if (defined(MSDOS) || defined(OS2) || defined(WINDOWS)) && !defined(WIN32)
149
- # if !defined(__GNUC__) && !defined(__FLAT__) && !defined(__386__)
150
- # ifndef SYS16BIT
151
- # define SYS16BIT
152
- # endif
153
- # endif
154
- #endif
155
-
156
- /*
157
- * Compile with -DMAXSEG_64K if the alloc function cannot allocate more
158
- * than 64k bytes at a time (needed on systems with 16-bit int).
159
- */
160
- #ifdef SYS16BIT
161
- # define MAXSEG_64K
162
- #endif
163
- #ifdef MSDOS
164
- # define UNALIGNED_OK
165
- #endif
166
-
167
- #ifdef __STDC_VERSION__
168
- # ifndef STDC
169
- # define STDC
170
- # endif
171
- # if __STDC_VERSION__ >= 199901L
172
- # ifndef STDC99
173
- # define STDC99
174
- # endif
175
- # endif
176
- #endif
177
- #if !defined(STDC) && (defined(__STDC__) || defined(__cplusplus))
178
- # define STDC
179
- #endif
180
- #if !defined(STDC) && (defined(__GNUC__) || defined(__BORLANDC__))
181
- # define STDC
182
- #endif
183
- #if !defined(STDC) && (defined(MSDOS) || defined(WINDOWS) || defined(WIN32))
184
- # define STDC
185
- #endif
186
- #if !defined(STDC) && (defined(OS2) || defined(__HOS_AIX__))
187
- # define STDC
188
- #endif
189
-
190
- #if defined(__OS400__) && !defined(STDC) /* iSeries (formerly AS/400). */
191
- # define STDC
192
- #endif
193
-
194
- #ifndef STDC
195
- # ifndef const /* cannot use !defined(STDC) && !defined(const) on Mac */
196
- # define const /* note: need a more gentle solution here */
197
- # endif
198
- #endif
199
-
200
- /* Some Mac compilers merge all .h files incorrectly: */
201
- #if defined(__MWERKS__)||defined(applec)||defined(THINK_C)||defined(__SC__)
202
- # define NO_DUMMY_DECL
203
- #endif
204
-
205
- /* Maximum value for memLevel in deflateInit2 */
206
- #ifndef MAX_MEM_LEVEL
207
- # ifdef MAXSEG_64K
208
- # define MAX_MEM_LEVEL 8
209
- # else
210
- # define MAX_MEM_LEVEL 9
211
- # endif
212
- #endif
213
-
214
- /* Maximum value for windowBits in deflateInit2 and inflateInit2.
215
- * WARNING: reducing MAX_WBITS makes minigzip unable to extract .gz files
216
- * created by gzip. (Files created by minigzip can still be extracted by
217
- * gzip.)
218
- */
219
- #ifndef MAX_WBITS
220
- # define MAX_WBITS 15 /* 32K LZ77 window */
221
- #endif
222
-
223
- /* The memory requirements for deflate are (in bytes):
224
- (1 << (windowBits+2)) + (1 << (memLevel+9))
225
- that is: 128K for windowBits=15 + 128K for memLevel = 8 (default values)
226
- plus a few kilobytes for small objects. For example, if you want to reduce
227
- the default memory requirements from 256K to 128K, compile with
228
- make CFLAGS="-O -DMAX_WBITS=14 -DMAX_MEM_LEVEL=7"
229
- Of course this will generally degrade compression (there's no free lunch).
230
-
231
- The memory requirements for inflate are (in bytes) 1 << windowBits
232
- that is, 32K for windowBits=15 (default value) plus a few kilobytes
233
- for small objects.
234
- */
235
-
236
- /* Type declarations */
237
-
238
- #ifndef OF /* function prototypes */
239
- # ifdef STDC
240
- # define OF(args) args
241
- # else
242
- # define OF(args) ()
243
- # endif
244
- #endif
245
-
246
- /* The following definitions for FAR are needed only for MSDOS mixed
247
- * model programming (small or medium model with some far allocations).
248
- * This was tested only with MSC; for other MSDOS compilers you may have
249
- * to define NO_MEMCPY in zutil.h. If you don't need the mixed model,
250
- * just define FAR to be empty.
251
- */
252
- #ifdef SYS16BIT
253
- # if defined(M_I86SM) || defined(M_I86MM)
254
- /* MSC small or medium model */
255
- # define SMALL_MEDIUM
256
- # ifdef _MSC_VER
257
- # define FAR _far
258
- # else
259
- # define FAR far
260
- # endif
261
- # endif
262
- # if (defined(__SMALL__) || defined(__MEDIUM__))
263
- /* Turbo C small or medium model */
264
- # define SMALL_MEDIUM
265
- # ifdef __BORLANDC__
266
- # define FAR _far
267
- # else
268
- # define FAR far
269
- # endif
270
- # endif
271
- #endif
272
-
273
- /* When a specific build of zlib is done on Windows, it is either a
274
- * DLL or not. That build should have a specific corresponding zconf.h
275
- * distributed. The zconf.h thus knows a priori whether the
276
- * corresponding library was built as a DLL or not. Requiring the
277
- * library user to define ZLIB_DLL when compiling his code, intending
278
- * to link against the import library for such a DLL build, is
279
- * silly. Instead just unconditionally define ZLIB_DLL here as the
280
- * official Windows build of zlib is a DLL, period.
281
- *
282
- * Similarly, when a specific build of zlib is done on (32-bit)
283
- * Windows, it either uses the WINAPI calling convention or not. A
284
- * user of a prebuilt library can not choose later. So it is pointless
285
- * to require the user to define ZLIB_WINAPI when compiling. Instead,
286
- * just have a specific copy of this zconf.h that corresponds to that
287
- * build of zlib. For the case of the official build, it doe not use WINAPI,
288
- * so ignore any attempt by a misguided user to use it.
289
- */
290
-
291
- #undef ZLIB_DLL
292
- #define ZLIB_DLL 1
293
-
294
- #undef ZLIB_WINAPI
295
-
296
- #if defined(WINDOWS) || defined(WIN32)
297
- /* NOTE: Bogus. See above comment about ZLIB_DLL */
298
- /* If building or using zlib as a DLL, define ZLIB_DLL.
299
- * This is not mandatory, but it offers a little performance increase.
300
- */
301
- # ifdef ZLIB_DLL
302
- # if defined(WIN32) && (!defined(__BORLANDC__) || (__BORLANDC__ >= 0x500))
303
- # ifdef ZLIB_INTERNAL
304
- # define ZEXTERN extern __declspec(dllexport)
305
- # else
306
- # define ZEXTERN extern __declspec(dllimport)
307
- # endif
308
- # endif
309
- # endif /* ZLIB_DLL */
310
-
311
- /* NOTE: Bogus. See above comment about ZLIB_WINAPI */
312
- /* If building or using zlib with the WINAPI/WINAPIV calling convention,
313
- * define ZLIB_WINAPI.
314
- * Caution: the standard ZLIB1.DLL is NOT compiled using ZLIB_WINAPI.
315
- */
316
- # ifdef ZLIB_WINAPI
317
- # ifdef FAR
318
- # undef FAR
319
- # endif
320
- # include <windows.h>
321
- /* No need for _export, use ZLIB.DEF instead. */
322
- /* For complete Windows compatibility, use WINAPI, not __stdcall. */
323
- # define ZEXPORT WINAPI
324
- # ifdef WIN32
325
- # define ZEXPORTVA WINAPIV
326
- # else
327
- # define ZEXPORTVA FAR CDECL
328
- # endif
329
- # endif
330
- #endif
331
-
332
- #if defined (__BEOS__)
333
- # ifdef ZLIB_DLL
334
- # ifdef ZLIB_INTERNAL
335
- # define ZEXPORT __declspec(dllexport)
336
- # define ZEXPORTVA __declspec(dllexport)
337
- # else
338
- # define ZEXPORT __declspec(dllimport)
339
- # define ZEXPORTVA __declspec(dllimport)
340
- # endif
341
- # endif
342
- #endif
343
-
344
- #ifndef ZEXTERN
345
- # define ZEXTERN extern
346
- #endif
347
- #ifndef ZEXPORT
348
- # define ZEXPORT
349
- #endif
350
- #ifndef ZEXPORTVA
351
- # define ZEXPORTVA
352
- #endif
353
-
354
- #ifndef FAR
355
- # define FAR
356
- #endif
357
-
358
- #if !defined(__MACTYPES__)
359
- typedef unsigned char Byte; /* 8 bits */
360
- #endif
361
- typedef unsigned int uInt; /* 16 bits or more */
362
- typedef unsigned long uLong; /* 32 bits or more */
363
-
364
- #ifdef SMALL_MEDIUM
365
- /* Borland C/C++ and some old MSC versions ignore FAR inside typedef */
366
- # define Bytef Byte FAR
367
- #else
368
- typedef Byte FAR Bytef;
369
- #endif
370
- typedef char FAR charf;
371
- typedef int FAR intf;
372
- typedef uInt FAR uIntf;
373
- typedef uLong FAR uLongf;
374
-
375
- #ifdef STDC
376
- typedef void const *voidpc;
377
- typedef void FAR *voidpf;
378
- typedef void *voidp;
379
- #else
380
- typedef Byte const *voidpc;
381
- typedef Byte FAR *voidpf;
382
- typedef Byte *voidp;
383
- #endif
384
-
385
- #ifdef HAVE_UNISTD_H /* may be set to #if 1 by ./configure */
386
- # define Z_HAVE_UNISTD_H
387
- #endif
388
-
389
- #ifdef STDC
390
- # include <sys/types.h> /* for off_t */
391
- #endif
392
-
393
- /* LFS conventions have no meaning on Windows. Looking for feature
394
- * macros like _LARGEFILE64_SOURCE or _FILE_OFFSET_BITS on Windows is
395
- * wrong. So make sure any such macros misguidedly defined by the user
396
- * have no effect. Windows has large file support, but the official zlib
397
- * DLL has not been built to provide the 64-bit offset APIs, sigh.
398
- */
399
-
400
- /* a little trick to accommodate both "#define _LARGEFILE64_SOURCE" and
401
- * "#define _LARGEFILE64_SOURCE 1" as requesting 64-bit operations, (even
402
- * though the former does not conform to the LFS document), but considering
403
- * both "#undef _LARGEFILE64_SOURCE" and "#define _LARGEFILE64_SOURCE 0" as
404
- * equivalently requesting no 64-bit operations
405
- */
406
- #if !defined(_WIN32) && -_LARGEFILE64_SOURCE - -1 == 1
407
- # undef _LARGEFILE64_SOURCE
408
- #endif
409
-
410
- #if !defined(_WIN32) && (defined(Z_HAVE_UNISTD_H) || defined(_LARGEFILE64_SOURCE))
411
- # include <unistd.h> /* for SEEK_* and off_t */
412
- # ifdef VMS
413
- # include <unixio.h> /* for off_t */
414
- # endif
415
- # ifndef z_off_t
416
- # define z_off_t off_t
417
- # endif
418
- #endif
419
-
420
- #ifndef SEEK_SET
421
- # define SEEK_SET 0 /* Seek from beginning of file. */
422
- # define SEEK_CUR 1 /* Seek from current position. */
423
- # define SEEK_END 2 /* Set file pointer to EOF plus "offset" */
424
- #endif
425
-
426
- #ifndef z_off_t
427
- # define z_off_t long
428
- #endif
429
-
430
- #if !defined(_WIN32) && (defined(_LARGEFILE64_SOURCE) && _LFS64_LARGEFILE-0)
431
- # define z_off64_t off64_t
432
- #else
433
- # define z_off64_t z_off_t
434
- #endif
435
-
436
- #if defined(__OS400__)
437
- # define NO_vsnprintf
438
- #endif
439
-
440
- #if defined(__MVS__)
441
- # define NO_vsnprintf
442
- #endif
443
-
444
- /* MVS linker does not support external names larger than 8 bytes */
445
- #if defined(__MVS__)
446
- #pragma map(deflateInit_,"DEIN")
447
- #pragma map(deflateInit2_,"DEIN2")
448
- #pragma map(deflateEnd,"DEEND")
449
- #pragma map(deflateBound,"DEBND")
450
- #pragma map(inflateInit_,"ININ")
451
- #pragma map(inflateInit2_,"ININ2")
452
- #pragma map(inflateEnd,"INEND")
453
- #pragma map(inflateSync,"INSY")
454
- #pragma map(inflateSetDictionary,"INSEDI")
455
- #pragma map(compressBound,"CMBND")
456
- #pragma map(inflate_table,"INTABL")
457
- #pragma map(inflate_fast,"INFA")
458
- #pragma map(inflate_copyright,"INCOPY")
459
- #endif
460
-
461
- #endif /* ZCONF_H */