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,272 +0,0 @@
1
- ++ sed -e 's/need_relink=yes/need_relink=no # no way --tml/'
2
- ++ mv ltmain.temp ltmain.sh
3
- ++ sed -e 's/grep version-script/grep no-thanks-version-script/'
4
- ++ mv configure.temp configure
5
- ++ patch -p0
6
- patching file Makefile.in
7
- Hunk #1 succeeded at 1242 (offset -43 lines).
8
- ++ lt_cv_deplibs_check_method=pass_all
9
- ++ CC='gcc -mtune=pentium3 -mthreads -mms-bitfields'
10
- ++ CPPFLAGS='-I /devel/dist/win32/zlib-1.2.5-1/include'
11
- ++ LDFLAGS='-L/devel/dist/win32/zlib-1.2.5-1/lib -Wl,--enable-auto-image-base'
12
- ++ CFLAGS=-O2
13
- ++ ./configure --disable-static --without-binconfigs --prefix=c:/devel/target/c01378aafb50980950f7e58bcd36fc40
14
- checking for a BSD-compatible install... /opt/local/bin/install -c
15
- checking whether build environment is sane... yes
16
- checking for a thread-safe mkdir -p... /bin/mkdir -p
17
- checking for gawk... gawk
18
- checking whether make sets $(MAKE)... yes
19
- checking whether to enable maintainer-specific portions of Makefiles... no
20
- checking for gcc... gcc -mtune=pentium3 -mthreads -mms-bitfields
21
- checking whether the C compiler works... yes
22
- checking for C compiler default output file name... a.exe
23
- checking for suffix of executables... .exe
24
- checking whether we are cross compiling... no
25
- checking for suffix of object files... o
26
- checking whether we are using the GNU C compiler... yes
27
- checking whether gcc -mtune=pentium3 -mthreads -mms-bitfields accepts -g... yes
28
- checking for gcc -mtune=pentium3 -mthreads -mms-bitfields option to accept ISO C89... none needed
29
- checking for style of include used by make... GNU
30
- checking dependency style of gcc -mtune=pentium3 -mthreads -mms-bitfields... gcc3
31
- checking build system type... i686-pc-mingw32
32
- checking host system type... i686-pc-mingw32
33
- checking for a sed that does not truncate output... /bin/sed
34
- checking for grep that handles long lines and -e... /bin/grep
35
- checking for egrep... /bin/grep -E
36
- checking for fgrep... /bin/grep -F
37
- checking for ld used by gcc -mtune=pentium3 -mthreads -mms-bitfields... c:/opt/mingw/mingw32/bin/ld.exe
38
- checking if the linker (c:/opt/mingw/mingw32/bin/ld.exe) is GNU ld... yes
39
- checking how to run the C preprocessor... gcc -mtune=pentium3 -mthreads -mms-bitfields -E
40
- checking for sed... /bin/sed
41
- checking for as... as
42
- checking for dlltool... dlltool
43
- checking for objdump... objdump
44
- checking whether ln -s works... yes
45
- checking whether make sets $(MAKE)... (cached) yes
46
- checking for BSD- or MS-compatible name lister (nm)... /opt/mingw/bin/nm
47
- checking the name lister (/opt/mingw/bin/nm) interface... BSD nm
48
- checking the maximum length of command line arguments... 8192
49
- checking whether the shell understands some XSI constructs... yes
50
- checking whether the shell understands "+="... yes
51
- checking for c:/opt/mingw/mingw32/bin/ld.exe option to reload object files... -r
52
- checking for objdump... (cached) objdump
53
- checking how to recognize dependent libraries... (cached) pass_all
54
- checking for ar... ar
55
- checking for strip... strip
56
- checking for ranlib... ranlib
57
- checking command to parse /opt/mingw/bin/nm output from gcc -mtune=pentium3 -mthreads -mms-bitfields object... ok
58
- checking for ANSI C header files... yes
59
- checking for sys/types.h... yes
60
- checking for sys/stat.h... yes
61
- checking for stdlib.h... yes
62
- checking for string.h... yes
63
- checking for memory.h... yes
64
- checking for strings.h... yes
65
- checking for inttypes.h... yes
66
- checking for stdint.h... yes
67
- checking for unistd.h... yes
68
- checking for dlfcn.h... no
69
- checking for objdir... .libs
70
- checking if gcc -mtune=pentium3 -mthreads -mms-bitfields supports -fno-rtti -fno-exceptions... no
71
- checking for gcc -mtune=pentium3 -mthreads -mms-bitfields option to produce PIC... -DDLL_EXPORT -DPIC
72
- checking if gcc -mtune=pentium3 -mthreads -mms-bitfields PIC flag -DDLL_EXPORT -DPIC works... yes
73
- checking if gcc -mtune=pentium3 -mthreads -mms-bitfields static flag -static works... yes
74
- checking if gcc -mtune=pentium3 -mthreads -mms-bitfields supports -c -o file.o... yes
75
- checking if gcc -mtune=pentium3 -mthreads -mms-bitfields supports -c -o file.o... (cached) yes
76
- checking whether the gcc -mtune=pentium3 -mthreads -mms-bitfields linker (c:/opt/mingw/mingw32/bin/ld.exe) supports shared libraries... yes
77
- checking whether -lc should be explicitly linked in... yes
78
- checking dynamic linker characteristics... Win32 ld.exe
79
- checking how to hardcode library paths into programs... immediate
80
- checking whether stripping libraries is possible... yes
81
- checking if libtool supports shared libraries... yes
82
- checking whether to build shared libraries... yes
83
- checking whether to build static libraries... no
84
- checking for ANSI C header files... (cached) yes
85
- checking malloc.h usability... yes
86
- checking malloc.h presence... yes
87
- checking for malloc.h... yes
88
- checking for stdlib.h... (cached) yes
89
- checking for string.h... (cached) yes
90
- checking for strings.h... (cached) yes
91
- checking for an ANSI C-conforming const... yes
92
- checking for size_t... yes
93
- checking whether struct tm is in sys/time.h or time.h... time.h
94
- checking for working strtod... yes
95
- checking for memset... yes
96
- checking for pow... yes
97
- checking for zlibVersion in -lz... yes
98
- checking if libraries can be versioned... no
99
- configure: WARNING: *** You have not enabled versioned symbols.
100
- configure: pkgconfig directory is ${libdir}/pkgconfig
101
- configure: libpng-config scripts will not be built
102
- configure: creating ./config.status
103
- config.status: creating Makefile
104
- config.status: creating libpng.pc
105
- config.status: creating libpng-config
106
- config.status: creating config.h
107
- config.status: executing depfiles commands
108
- config.status: executing libtool commands
109
- ++ make install
110
- /bin/sh ./libtool --tag=CC --mode=compile gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -DPNG_CONFIGURE_LIBPNG -I /devel/dist/win32/zlib-1.2.5-1/include -O2 -MT libpng14_la-png.lo -MD -MP -MF .deps/libpng14_la-png.Tpo -c -o libpng14_la-png.lo `test -f 'png.c' || echo './'`png.c
111
- libtool: compile: gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -DPNG_CONFIGURE_LIBPNG -I /devel/dist/win32/zlib-1.2.5-1/include -O2 -MT libpng14_la-png.lo -MD -MP -MF .deps/libpng14_la-png.Tpo -c png.c -DDLL_EXPORT -DPIC -o .libs/libpng14_la-png.o
112
- mv -f .deps/libpng14_la-png.Tpo .deps/libpng14_la-png.Plo
113
- /bin/sh ./libtool --tag=CC --mode=compile gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -DPNG_CONFIGURE_LIBPNG -I /devel/dist/win32/zlib-1.2.5-1/include -O2 -MT libpng14_la-pngset.lo -MD -MP -MF .deps/libpng14_la-pngset.Tpo -c -o libpng14_la-pngset.lo `test -f 'pngset.c' || echo './'`pngset.c
114
- libtool: compile: gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -DPNG_CONFIGURE_LIBPNG -I /devel/dist/win32/zlib-1.2.5-1/include -O2 -MT libpng14_la-pngset.lo -MD -MP -MF .deps/libpng14_la-pngset.Tpo -c pngset.c -DDLL_EXPORT -DPIC -o .libs/libpng14_la-pngset.o
115
- mv -f .deps/libpng14_la-pngset.Tpo .deps/libpng14_la-pngset.Plo
116
- /bin/sh ./libtool --tag=CC --mode=compile gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -DPNG_CONFIGURE_LIBPNG -I /devel/dist/win32/zlib-1.2.5-1/include -O2 -MT libpng14_la-pngget.lo -MD -MP -MF .deps/libpng14_la-pngget.Tpo -c -o libpng14_la-pngget.lo `test -f 'pngget.c' || echo './'`pngget.c
117
- libtool: compile: gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -DPNG_CONFIGURE_LIBPNG -I /devel/dist/win32/zlib-1.2.5-1/include -O2 -MT libpng14_la-pngget.lo -MD -MP -MF .deps/libpng14_la-pngget.Tpo -c pngget.c -DDLL_EXPORT -DPIC -o .libs/libpng14_la-pngget.o
118
- mv -f .deps/libpng14_la-pngget.Tpo .deps/libpng14_la-pngget.Plo
119
- /bin/sh ./libtool --tag=CC --mode=compile gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -DPNG_CONFIGURE_LIBPNG -I /devel/dist/win32/zlib-1.2.5-1/include -O2 -MT libpng14_la-pngrutil.lo -MD -MP -MF .deps/libpng14_la-pngrutil.Tpo -c -o libpng14_la-pngrutil.lo `test -f 'pngrutil.c' || echo './'`pngrutil.c
120
- libtool: compile: gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -DPNG_CONFIGURE_LIBPNG -I /devel/dist/win32/zlib-1.2.5-1/include -O2 -MT libpng14_la-pngrutil.lo -MD -MP -MF .deps/libpng14_la-pngrutil.Tpo -c pngrutil.c -DDLL_EXPORT -DPIC -o .libs/libpng14_la-pngrutil.o
121
- mv -f .deps/libpng14_la-pngrutil.Tpo .deps/libpng14_la-pngrutil.Plo
122
- /bin/sh ./libtool --tag=CC --mode=compile gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -DPNG_CONFIGURE_LIBPNG -I /devel/dist/win32/zlib-1.2.5-1/include -O2 -MT libpng14_la-pngtrans.lo -MD -MP -MF .deps/libpng14_la-pngtrans.Tpo -c -o libpng14_la-pngtrans.lo `test -f 'pngtrans.c' || echo './'`pngtrans.c
123
- libtool: compile: gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -DPNG_CONFIGURE_LIBPNG -I /devel/dist/win32/zlib-1.2.5-1/include -O2 -MT libpng14_la-pngtrans.lo -MD -MP -MF .deps/libpng14_la-pngtrans.Tpo -c pngtrans.c -DDLL_EXPORT -DPIC -o .libs/libpng14_la-pngtrans.o
124
- mv -f .deps/libpng14_la-pngtrans.Tpo .deps/libpng14_la-pngtrans.Plo
125
- /bin/sh ./libtool --tag=CC --mode=compile gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -DPNG_CONFIGURE_LIBPNG -I /devel/dist/win32/zlib-1.2.5-1/include -O2 -MT libpng14_la-pngwutil.lo -MD -MP -MF .deps/libpng14_la-pngwutil.Tpo -c -o libpng14_la-pngwutil.lo `test -f 'pngwutil.c' || echo './'`pngwutil.c
126
- libtool: compile: gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -DPNG_CONFIGURE_LIBPNG -I /devel/dist/win32/zlib-1.2.5-1/include -O2 -MT libpng14_la-pngwutil.lo -MD -MP -MF .deps/libpng14_la-pngwutil.Tpo -c pngwutil.c -DDLL_EXPORT -DPIC -o .libs/libpng14_la-pngwutil.o
127
- mv -f .deps/libpng14_la-pngwutil.Tpo .deps/libpng14_la-pngwutil.Plo
128
- /bin/sh ./libtool --tag=CC --mode=compile gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -DPNG_CONFIGURE_LIBPNG -I /devel/dist/win32/zlib-1.2.5-1/include -O2 -MT libpng14_la-pngread.lo -MD -MP -MF .deps/libpng14_la-pngread.Tpo -c -o libpng14_la-pngread.lo `test -f 'pngread.c' || echo './'`pngread.c
129
- libtool: compile: gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -DPNG_CONFIGURE_LIBPNG -I /devel/dist/win32/zlib-1.2.5-1/include -O2 -MT libpng14_la-pngread.lo -MD -MP -MF .deps/libpng14_la-pngread.Tpo -c pngread.c -DDLL_EXPORT -DPIC -o .libs/libpng14_la-pngread.o
130
- mv -f .deps/libpng14_la-pngread.Tpo .deps/libpng14_la-pngread.Plo
131
- /bin/sh ./libtool --tag=CC --mode=compile gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -DPNG_CONFIGURE_LIBPNG -I /devel/dist/win32/zlib-1.2.5-1/include -O2 -MT libpng14_la-pngrio.lo -MD -MP -MF .deps/libpng14_la-pngrio.Tpo -c -o libpng14_la-pngrio.lo `test -f 'pngrio.c' || echo './'`pngrio.c
132
- libtool: compile: gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -DPNG_CONFIGURE_LIBPNG -I /devel/dist/win32/zlib-1.2.5-1/include -O2 -MT libpng14_la-pngrio.lo -MD -MP -MF .deps/libpng14_la-pngrio.Tpo -c pngrio.c -DDLL_EXPORT -DPIC -o .libs/libpng14_la-pngrio.o
133
- mv -f .deps/libpng14_la-pngrio.Tpo .deps/libpng14_la-pngrio.Plo
134
- /bin/sh ./libtool --tag=CC --mode=compile gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -DPNG_CONFIGURE_LIBPNG -I /devel/dist/win32/zlib-1.2.5-1/include -O2 -MT libpng14_la-pngwio.lo -MD -MP -MF .deps/libpng14_la-pngwio.Tpo -c -o libpng14_la-pngwio.lo `test -f 'pngwio.c' || echo './'`pngwio.c
135
- libtool: compile: gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -DPNG_CONFIGURE_LIBPNG -I /devel/dist/win32/zlib-1.2.5-1/include -O2 -MT libpng14_la-pngwio.lo -MD -MP -MF .deps/libpng14_la-pngwio.Tpo -c pngwio.c -DDLL_EXPORT -DPIC -o .libs/libpng14_la-pngwio.o
136
- mv -f .deps/libpng14_la-pngwio.Tpo .deps/libpng14_la-pngwio.Plo
137
- /bin/sh ./libtool --tag=CC --mode=compile gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -DPNG_CONFIGURE_LIBPNG -I /devel/dist/win32/zlib-1.2.5-1/include -O2 -MT libpng14_la-pngwrite.lo -MD -MP -MF .deps/libpng14_la-pngwrite.Tpo -c -o libpng14_la-pngwrite.lo `test -f 'pngwrite.c' || echo './'`pngwrite.c
138
- libtool: compile: gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -DPNG_CONFIGURE_LIBPNG -I /devel/dist/win32/zlib-1.2.5-1/include -O2 -MT libpng14_la-pngwrite.lo -MD -MP -MF .deps/libpng14_la-pngwrite.Tpo -c pngwrite.c -DDLL_EXPORT -DPIC -o .libs/libpng14_la-pngwrite.o
139
- mv -f .deps/libpng14_la-pngwrite.Tpo .deps/libpng14_la-pngwrite.Plo
140
- /bin/sh ./libtool --tag=CC --mode=compile gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -DPNG_CONFIGURE_LIBPNG -I /devel/dist/win32/zlib-1.2.5-1/include -O2 -MT libpng14_la-pngrtran.lo -MD -MP -MF .deps/libpng14_la-pngrtran.Tpo -c -o libpng14_la-pngrtran.lo `test -f 'pngrtran.c' || echo './'`pngrtran.c
141
- libtool: compile: gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -DPNG_CONFIGURE_LIBPNG -I /devel/dist/win32/zlib-1.2.5-1/include -O2 -MT libpng14_la-pngrtran.lo -MD -MP -MF .deps/libpng14_la-pngrtran.Tpo -c pngrtran.c -DDLL_EXPORT -DPIC -o .libs/libpng14_la-pngrtran.o
142
- mv -f .deps/libpng14_la-pngrtran.Tpo .deps/libpng14_la-pngrtran.Plo
143
- /bin/sh ./libtool --tag=CC --mode=compile gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -DPNG_CONFIGURE_LIBPNG -I /devel/dist/win32/zlib-1.2.5-1/include -O2 -MT libpng14_la-pngwtran.lo -MD -MP -MF .deps/libpng14_la-pngwtran.Tpo -c -o libpng14_la-pngwtran.lo `test -f 'pngwtran.c' || echo './'`pngwtran.c
144
- libtool: compile: gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -DPNG_CONFIGURE_LIBPNG -I /devel/dist/win32/zlib-1.2.5-1/include -O2 -MT libpng14_la-pngwtran.lo -MD -MP -MF .deps/libpng14_la-pngwtran.Tpo -c pngwtran.c -DDLL_EXPORT -DPIC -o .libs/libpng14_la-pngwtran.o
145
- mv -f .deps/libpng14_la-pngwtran.Tpo .deps/libpng14_la-pngwtran.Plo
146
- /bin/sh ./libtool --tag=CC --mode=compile gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -DPNG_CONFIGURE_LIBPNG -I /devel/dist/win32/zlib-1.2.5-1/include -O2 -MT libpng14_la-pngmem.lo -MD -MP -MF .deps/libpng14_la-pngmem.Tpo -c -o libpng14_la-pngmem.lo `test -f 'pngmem.c' || echo './'`pngmem.c
147
- libtool: compile: gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -DPNG_CONFIGURE_LIBPNG -I /devel/dist/win32/zlib-1.2.5-1/include -O2 -MT libpng14_la-pngmem.lo -MD -MP -MF .deps/libpng14_la-pngmem.Tpo -c pngmem.c -DDLL_EXPORT -DPIC -o .libs/libpng14_la-pngmem.o
148
- mv -f .deps/libpng14_la-pngmem.Tpo .deps/libpng14_la-pngmem.Plo
149
- /bin/sh ./libtool --tag=CC --mode=compile gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -DPNG_CONFIGURE_LIBPNG -I /devel/dist/win32/zlib-1.2.5-1/include -O2 -MT libpng14_la-pngerror.lo -MD -MP -MF .deps/libpng14_la-pngerror.Tpo -c -o libpng14_la-pngerror.lo `test -f 'pngerror.c' || echo './'`pngerror.c
150
- libtool: compile: gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -DPNG_CONFIGURE_LIBPNG -I /devel/dist/win32/zlib-1.2.5-1/include -O2 -MT libpng14_la-pngerror.lo -MD -MP -MF .deps/libpng14_la-pngerror.Tpo -c pngerror.c -DDLL_EXPORT -DPIC -o .libs/libpng14_la-pngerror.o
151
- mv -f .deps/libpng14_la-pngerror.Tpo .deps/libpng14_la-pngerror.Plo
152
- /bin/sh ./libtool --tag=CC --mode=compile gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -DPNG_CONFIGURE_LIBPNG -I /devel/dist/win32/zlib-1.2.5-1/include -O2 -MT libpng14_la-pngpread.lo -MD -MP -MF .deps/libpng14_la-pngpread.Tpo -c -o libpng14_la-pngpread.lo `test -f 'pngpread.c' || echo './'`pngpread.c
153
- libtool: compile: gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -DPNG_CONFIGURE_LIBPNG -I /devel/dist/win32/zlib-1.2.5-1/include -O2 -MT libpng14_la-pngpread.lo -MD -MP -MF .deps/libpng14_la-pngpread.Tpo -c pngpread.c -DDLL_EXPORT -DPIC -o .libs/libpng14_la-pngpread.o
154
- mv -f .deps/libpng14_la-pngpread.Tpo .deps/libpng14_la-pngpread.Plo
155
- rm -f libpng.sym libpng.sym.new
156
- gcc -mtune=pentium3 -mthreads -mms-bitfields -E -DPNG_CONFIGURE_LIBPNG -I /devel/dist/win32/zlib-1.2.5-1/include -DPNG_BUILDSYMS ./png.h | \
157
- /bin/sed -n -e \
158
- 's|^.*PNG_FUNCTION_EXPORT[ ]*\(['_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789']*\).*$|\1|p' \
159
- -e 's|^.*PNG_DATA_EXPORT[ ]*\(['_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789']*\).*$|\1|p' \
160
- >libpng.sym.new
161
- mv libpng.sym.new libpng.sym
162
- /bin/sh ./libtool --tag=CC --mode=link gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -no-undefined -export-dynamic -version-number 14:3:0 -export-symbols libpng.sym -L/devel/dist/win32/zlib-1.2.5-1/lib -Wl,--enable-auto-image-base -o libpng14.la -rpath c:/devel/target/c01378aafb50980950f7e58bcd36fc40/lib libpng14_la-png.lo libpng14_la-pngset.lo libpng14_la-pngget.lo libpng14_la-pngrutil.lo libpng14_la-pngtrans.lo libpng14_la-pngwutil.lo libpng14_la-pngread.lo libpng14_la-pngrio.lo libpng14_la-pngwio.lo libpng14_la-pngwrite.lo libpng14_la-pngrtran.lo libpng14_la-pngwtran.lo libpng14_la-pngmem.lo libpng14_la-pngerror.lo libpng14_la-pngpread.lo -lz
163
- libtool: link: /opt/mingw/bin/nm .libs/libpng14_la-png.o .libs/libpng14_la-pngset.o .libs/libpng14_la-pngget.o .libs/libpng14_la-pngrutil.o .libs/libpng14_la-pngtrans.o .libs/libpng14_la-pngwutil.o .libs/libpng14_la-pngread.o .libs/libpng14_la-pngrio.o .libs/libpng14_la-pngwio.o .libs/libpng14_la-pngwrite.o .libs/libpng14_la-pngrtran.o .libs/libpng14_la-pngwtran.o .libs/libpng14_la-pngmem.o .libs/libpng14_la-pngerror.o .libs/libpng14_la-pngpread.o | sed -n -e 's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*_\([_A-Za-z][_A-Za-z0-9]*\)\{0,1\}$/\1 _\2 \2/p' | /bin/sed -e '/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1 DATA/' | /bin/sed -e '/^[AITW][ ]/s/.*[ ]//' | sort | uniq > .libs/libpng14.exp
164
- libtool: link: if test "x`/bin/sed 1q .libs/libpng14.def`" = xEXPORTS; then cp .libs/libpng14.def .libs/libpng14-14.dll.def; else echo EXPORTS > .libs/libpng14-14.dll.def; cat .libs/libpng14.def >> .libs/libpng14-14.dll.def; fi
165
- libtool: link: gcc -mtune=pentium3 -mthreads -mms-bitfields -shared .libs/libpng14-14.dll.def .libs/libpng14_la-png.o .libs/libpng14_la-pngset.o .libs/libpng14_la-pngget.o .libs/libpng14_la-pngrutil.o .libs/libpng14_la-pngtrans.o .libs/libpng14_la-pngwutil.o .libs/libpng14_la-pngread.o .libs/libpng14_la-pngrio.o .libs/libpng14_la-pngwio.o .libs/libpng14_la-pngwrite.o .libs/libpng14_la-pngrtran.o .libs/libpng14_la-pngwtran.o .libs/libpng14_la-pngmem.o .libs/libpng14_la-pngerror.o .libs/libpng14_la-pngpread.o -L/devel/dist/win32/zlib-1.2.5-1/lib -lz -mtune=pentium3 -mthreads -mms-bitfields -Wl,--enable-auto-image-base -mthreads -o .libs/libpng14-14.dll -Wl,--enable-auto-image-base -Xlinker --out-implib -Xlinker .libs/libpng14.dll.a
166
- Creating library file: .libs/libpng14.dll.a
167
- libtool: link: rm -f .libs/libpng14.exp .libs/libpng14.filter
168
- libtool: link: ( cd ".libs" && rm -f "libpng14.la" && ln -s "../libpng14.la" "libpng14.la" )
169
- cp libpng.pc libpng14.pc
170
- make[1]: Entering directory `/devel/src/libpng/1.4.3-1_win32'
171
- test -z "c:/devel/target/c01378aafb50980950f7e58bcd36fc40/bin" || /bin/mkdir -p "c:/devel/target/c01378aafb50980950f7e58bcd36fc40/bin"
172
- test -z "c:/devel/target/c01378aafb50980950f7e58bcd36fc40/lib" || /bin/mkdir -p "c:/devel/target/c01378aafb50980950f7e58bcd36fc40/lib"
173
- /bin/sh ./libtool --mode=install /opt/local/bin/install -c libpng14.la 'c:/devel/target/c01378aafb50980950f7e58bcd36fc40/lib'
174
- libtool: install: /opt/local/bin/install -c .libs/libpng14.dll.a c:/devel/target/c01378aafb50980950f7e58bcd36fc40/lib/libpng14.dll.a
175
- libtool: install: base_file=`basename libpng14.la`
176
- libtool: install: dlpath=`/bin/sh 2>&1 -c '. .libs/'libpng14.la'i; echo libpng14-14.dll'`
177
- libtool: install: dldir=c:/devel/target/c01378aafb50980950f7e58bcd36fc40/lib/`dirname ../bin/libpng14-14.dll`
178
- libtool: install: test -d c:/devel/target/c01378aafb50980950f7e58bcd36fc40/lib/../bin || mkdir -p c:/devel/target/c01378aafb50980950f7e58bcd36fc40/lib/../bin
179
- libtool: install: /opt/local/bin/install -c .libs/libpng14-14.dll c:/devel/target/c01378aafb50980950f7e58bcd36fc40/lib/../bin/libpng14-14.dll
180
- libtool: install: chmod a+x c:/devel/target/c01378aafb50980950f7e58bcd36fc40/lib/../bin/libpng14-14.dll
181
- libtool: install: if test -n '' && test -n 'strip --strip-unneeded'; then eval 'strip --strip-unneeded c:/devel/target/c01378aafb50980950f7e58bcd36fc40/lib/../bin/libpng14-14.dll' || exit 0; fi
182
- libtool: install: /opt/local/bin/install -c .libs/libpng14.lai c:/devel/target/c01378aafb50980950f7e58bcd36fc40/lib/libpng14.la
183
- ----------------------------------------------------------------------
184
- Libraries have been installed in:
185
- c:/devel/target/c01378aafb50980950f7e58bcd36fc40/lib
186
-
187
- If you ever happen to want to link against installed libraries
188
- in a given directory, LIBDIR, you must either use libtool, and
189
- specify the full pathname of the library, or use the `-LLIBDIR'
190
- flag during linking and do at least one of the following:
191
- - add LIBDIR to the `PATH' environment variable
192
- during execution
193
- - add LIBDIR to the `LD_RUN_PATH' environment variable
194
- during linking
195
- - use the `-LLIBDIR' linker flag
196
-
197
- See any operating system documentation about shared libraries for
198
- more information, such as the ld(1) and ld.so(8) manual pages.
199
- ----------------------------------------------------------------------
200
- make install-exec-hook
201
- make[2]: Entering directory `/devel/src/libpng/1.4.3-1_win32'
202
- cd c:/devel/target/c01378aafb50980950f7e58bcd36fc40/bin; rm -f libpng-config
203
- cd c:/devel/target/c01378aafb50980950f7e58bcd36fc40/bin; ln -s libpng14-config libpng-config
204
- ln: creating symbolic link `libpng-config' to `libpng14-config': No such file or directory
205
- make[2]: [install-exec-hook] Error 1 (ignored)
206
- + cd c:/devel/target/c01378aafb50980950f7e58bcd36fc40/lib
207
- + for ext in a la so so.14.3 sl dylib
208
- + rm -f libpng.a
209
- + test -f libpng14.a
210
- + for ext in a la so so.14.3 sl dylib
211
- + rm -f libpng.la
212
- + test -f libpng14.la
213
- + ln -s libpng14.la libpng.la
214
- + for ext in a la so so.14.3 sl dylib
215
- + rm -f libpng.so
216
- + test -f libpng14.so
217
- + for ext in a la so so.14.3 sl dylib
218
- + rm -f libpng.so.14.3
219
- + test -f libpng14.so.14.3
220
- + for ext in a la so so.14.3 sl dylib
221
- + rm -f libpng.sl
222
- + test -f libpng14.sl
223
- + for ext in a la so so.14.3 sl dylib
224
- + rm -f libpng.dylib
225
- + test -f libpng14.dylib
226
- make[2]: Leaving directory `/devel/src/libpng/1.4.3-1_win32'
227
- test -z "c:/devel/target/c01378aafb50980950f7e58bcd36fc40/share/man/man3" || /bin/mkdir -p "c:/devel/target/c01378aafb50980950f7e58bcd36fc40/share/man/man3"
228
- /opt/local/bin/install -c -m 644 libpng.3 libpngpf.3 'c:/devel/target/c01378aafb50980950f7e58bcd36fc40/share/man/man3'
229
- test -z "c:/devel/target/c01378aafb50980950f7e58bcd36fc40/share/man/man5" || /bin/mkdir -p "c:/devel/target/c01378aafb50980950f7e58bcd36fc40/share/man/man5"
230
- /opt/local/bin/install -c -m 644 png.5 'c:/devel/target/c01378aafb50980950f7e58bcd36fc40/share/man/man5'
231
- test -z "c:/devel/target/c01378aafb50980950f7e58bcd36fc40/lib/pkgconfig" || /bin/mkdir -p "c:/devel/target/c01378aafb50980950f7e58bcd36fc40/lib/pkgconfig"
232
- /opt/local/bin/install -c -m 644 libpng14.pc 'c:/devel/target/c01378aafb50980950f7e58bcd36fc40/lib/pkgconfig'
233
- test -z "c:/devel/target/c01378aafb50980950f7e58bcd36fc40/include/libpng14" || /bin/mkdir -p "c:/devel/target/c01378aafb50980950f7e58bcd36fc40/include/libpng14"
234
- /opt/local/bin/install -c -m 644 png.h pngconf.h 'c:/devel/target/c01378aafb50980950f7e58bcd36fc40/include/libpng14'
235
- make install-data-hook
236
- make[2]: Entering directory `/devel/src/libpng/1.4.3-1_win32'
237
- cd c:/devel/target/c01378aafb50980950f7e58bcd36fc40/include; rm -f png.h pngconf.h
238
- cd c:/devel/target/c01378aafb50980950f7e58bcd36fc40/include; ln -s libpng14/png.h png.h
239
- cd c:/devel/target/c01378aafb50980950f7e58bcd36fc40/include; ln -s libpng14/pngconf.h \
240
- pngconf.h
241
- cd c:/devel/target/c01378aafb50980950f7e58bcd36fc40/lib/pkgconfig; rm -f libpng.pc
242
- cd c:/devel/target/c01378aafb50980950f7e58bcd36fc40/lib/pkgconfig; ln -s libpng14.pc libpng.pc
243
- make[2]: Leaving directory `/devel/src/libpng/1.4.3-1_win32'
244
- make[1]: Leaving directory `/devel/src/libpng/1.4.3-1_win32'
245
- ++ rm -f /tmp/libpng_1.4.3-1_win32.zip /tmp/libpng-dev_1.4.3-1_win32.zip
246
- ++ cd /devel/target/c01378aafb50980950f7e58bcd36fc40
247
- ++ zip /tmp/libpng_1.4.3-1_win32.zip bin/libpng14-14.dll
248
- adding: bin/libpng14-14.dll (200 bytes security) (deflated 54%)
249
- ++ zip -r -D /tmp/libpng-dev_1.4.3-1_win32.zip include
250
- adding: include/libpng14/png.h (200 bytes security) (deflated 77%)
251
- adding: include/libpng14/pngconf.h (200 bytes security) (deflated 73%)
252
- adding: include/png.h (200 bytes security) (deflated 77%)
253
- adding: include/pngconf.h (200 bytes security) (deflated 73%)
254
- ++ zip /tmp/libpng-dev_1.4.3-1_win32.zip lib/libpng14.dll.a
255
- adding: lib/libpng14.dll.a (200 bytes security) (deflated 93%)
256
- ++ pexports bin/libpng14-14.dll
257
- ++ lib -machine:X86 -def:lib/libpng.def -name:libpng14-14.dll -out:lib/libpng.lib
258
- Microsoft (R) Library Manager Version 6.00.8447
259
- Copyright (C) Microsoft Corp 1992-1998. All rights reserved.
260
-
261
- Creating library lib/libpng.lib and object lib/libpng.exp
262
- ++ zip /tmp/libpng-dev_1.4.3-1_win32.zip lib/libpng.def lib/libpng.lib
263
- adding: lib/libpng.def (200 bytes security) (deflated 71%)
264
- adding: lib/libpng.lib (200 bytes security) (deflated 86%)
265
- ++ zip /tmp/libpng-dev_1.4.3-1_win32.zip lib/pkgconfig/libpng.pc lib/pkgconfig/libpng14.pc
266
- adding: lib/pkgconfig/libpng.pc (200 bytes security) (deflated 29%)
267
- adding: lib/pkgconfig/libpng14.pc (200 bytes security) (deflated 29%)
268
- ++ zip -r -D /tmp/libpng-dev_1.4.3-1_win32.zip share/man
269
- adding: share/man/man3/libpng.3 (200 bytes security) (deflated 71%)
270
- adding: share/man/man3/libpngpf.3 (200 bytes security) (deflated 87%)
271
- adding: share/man/man5/png.5 (200 bytes security) (deflated 53%)
272
- ++ :
@@ -1,71 +0,0 @@
1
- # This is a shell script that calls functions and scripts from
2
- # tml@iki.fi's personal work environment. It is not expected to be
3
- # usable unmodified by others, and is included only for reference.
4
-
5
- MOD=libpng
6
- VER=1.4.3
7
- REV=1
8
- ARCH=win32
9
-
10
- THIS=${MOD}_${VER}-${REV}_${ARCH}
11
-
12
- RUNZIP=${THIS}.zip
13
- DEVZIP=${MOD}-dev_${VER}-${REV}_${ARCH}.zip
14
-
15
- HEX=`echo $THIS | md5sum | cut -d' ' -f1`
16
- TARGET=c:/devel/target/$HEX
17
-
18
- ZLIB=`latest --arch=${ARCH} zlib`
19
-
20
- usedev
21
- usemsvs6
22
-
23
- (
24
-
25
- set -x
26
-
27
- # Avoid the silly "relink" stuff in libtool
28
- sed -e 's/need_relink=yes/need_relink=no # no way --tml/' <ltmain.sh >ltmain.temp && mv ltmain.temp ltmain.sh
29
-
30
- # Avoid using ld --version-script, doesn't seem to work?
31
- sed -e 's/grep version-script/grep no-thanks-version-script/' <configure > configure.temp && mv configure.temp configure
32
-
33
- patch -p0 <<'EOF' &&
34
- --- Makefile.in
35
- +++ Makefile.in
36
- @@ -1285,7 +1285,7 @@
37
- # do evil things to libpng to cause libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@ to be used
38
- install-exec-hook:
39
- cd $(DESTDIR)$(bindir); rm -f libpng-config
40
- - cd $(DESTDIR)$(bindir); $(LN_S) $(PNGLIB_BASENAME)-config libpng-config
41
- + -cd $(DESTDIR)$(bindir); $(LN_S) $(PNGLIB_BASENAME)-config libpng-config
42
- @set -x;\
43
- cd $(DESTDIR)$(libdir);\
44
- for ext in a la so so.@PNGLIB_MAJOR@@PNGLIB_MINOR@.@PNGLIB_RELEASE@ sl dylib; do\
45
- EOF
46
-
47
- lt_cv_deplibs_check_method='pass_all' CC='gcc -mtune=pentium3 -mthreads -mms-bitfields' CPPFLAGS="-I /devel/dist/${ARCH}/${ZLIB}/include" LDFLAGS="-L/devel/dist/${ARCH}/${ZLIB}/lib -Wl,--enable-auto-image-base" CFLAGS=-O2 ./configure --disable-static --without-binconfigs --prefix=$TARGET &&
48
- make install &&
49
-
50
- rm -f /tmp/$RUNZIP /tmp/$DEVZIP &&
51
-
52
- (cd /devel/target/$HEX &&
53
- zip /tmp/$RUNZIP bin/libpng14-14.dll &&
54
- zip -r -D /tmp/$DEVZIP include &&
55
- zip /tmp/$DEVZIP lib/libpng14.dll.a &&
56
- pexports bin/libpng14-14.dll >lib/libpng.def &&
57
- lib -machine:X86 -def:lib/libpng.def -name:libpng14-14.dll -out:lib/libpng.lib &&
58
- zip /tmp/$DEVZIP lib/libpng.def lib/libpng.lib &&
59
- zip /tmp/$DEVZIP lib/pkgconfig/libpng*.pc &&
60
- zip -r -D /tmp/$DEVZIP share/man &&
61
-
62
- :
63
-
64
- )
65
-
66
- ) 2>&1 | tee /devel/src/tml/packaging/$THIS.log &&
67
-
68
- (cd /devel && zip /tmp/$DEVZIP src/tml/packaging/$THIS.{sh,log}) &&
69
- manifestify /tmp/$RUNZIP /tmp/$DEVZIP &&
70
-
71
- :
@@ -1,42 +0,0 @@
1
- ++ UPSTREAM_ZIP=/c/tmp/downloads/zlib125-dll.zip
2
- ++ T=/tmp/zlib-2800
3
- ++ rm -rf /tmp/zlib-2800
4
- ++ mkdir -p c:/devel/target/ee1c4ab00601277bb705856f12c8e5e0/bin c:/devel/target/ee1c4ab00601277bb705856f12c8e5e0/include c:/devel/target/ee1c4ab00601277bb705856f12c8e5e0/lib /tmp/zlib-2800
5
- ++ cd /tmp/zlib-2800
6
- ++ unzip /c/tmp/downloads/zlib125-dll.zip
7
- Archive: c:/tmp/downloads/zlib125-dll.zip
8
- inflating: DLL_FAQ.txt
9
- creating: include/
10
- inflating: include/zconf.h
11
- inflating: include/zlib.h
12
- creating: lib/
13
- inflating: lib/zdll.lib
14
- inflating: lib/zlib.def
15
- inflating: README.txt
16
- creating: test/
17
- inflating: test/example_d.exe
18
- inflating: test/minigzip_d.exe
19
- inflating: USAGE.txt
20
- inflating: zlib1.dll
21
- ++ dos2unix include/zlib.h
22
- include/zlib.h: done.
23
- ++ dos2unix include/zconf.h
24
- include/zconf.h: done.
25
- ++ patch -p0
26
- patching file include/zlib.h
27
- patching file include/zconf.h
28
- ++ pexports zlib1.dll
29
- ++ dlltool --input-def zlib.def --dllname zlib1.dll --output-lib libz.dll.a
30
- ++ cp zlib1.dll c:/devel/target/ee1c4ab00601277bb705856f12c8e5e0/bin
31
- ++ cp lib/zdll.lib libz.dll.a zlib.def c:/devel/target/ee1c4ab00601277bb705856f12c8e5e0/lib
32
- ++ cp include/zlib.h include/zconf.h c:/devel/target/ee1c4ab00601277bb705856f12c8e5e0/include
33
- ++ rm -f /tmp/zlib_1.2.5-2_win32.zip /tmp/zlib-dev_1.2.5-2_win32.zip
34
- ++ cd /devel/target/ee1c4ab00601277bb705856f12c8e5e0
35
- ++ zip /tmp/zlib_1.2.5-2_win32.zip bin/zlib1.dll
36
- adding: bin/zlib1.dll (200 bytes security) (deflated 44%)
37
- ++ zip -r -D /tmp/zlib-dev_1.2.5-2_win32.zip lib include
38
- adding: lib/libz.dll.a (200 bytes security) (deflated 93%)
39
- adding: lib/zdll.lib (200 bytes security) (deflated 92%)
40
- adding: lib/zlib.def (200 bytes security) (deflated 59%)
41
- adding: include/zconf.h (200 bytes security) (deflated 70%)
42
- adding: include/zlib.h (200 bytes security) (deflated 72%)
@@ -1,189 +0,0 @@
1
- # This is a shell script that calls functions and scripts from
2
- # tml@iki.fi's personal work environment. It is not expected to be
3
- # usable unmodified by others, and is included only for reference.
4
-
5
- MOD=zlib
6
- VER=1.2.5
7
- REV=2
8
- ARCH=win32
9
-
10
- THIS=${MOD}_${VER}-${REV}_${ARCH}
11
-
12
- RUNZIP=${THIS}.zip
13
- DEVZIP=${MOD}-dev_${VER}-${REV}_${ARCH}.zip
14
-
15
- HEX=`echo $THIS | md5sum | cut -d' ' -f1`
16
- TARGET=c:/devel/target/$HEX
17
-
18
- usedev
19
-
20
- (
21
-
22
- set -x
23
-
24
- UPSTREAM_ZIP=/c/tmp/downloads/zlib125-dll.zip
25
- T=/tmp/zlib-$$
26
-
27
- rm -rf $T &&
28
-
29
- mkdir -p $TARGET/{bin,include,lib} $T &&
30
-
31
- cd $T
32
- unzip $UPSTREAM_ZIP &&
33
-
34
- dos2unix include/zlib.h &&
35
- dos2unix include/zconf.h &&
36
-
37
- patch -p0 <<'EOF'
38
- --- include/zlib.h
39
- +++ include/zlib.h
40
- @@ -1556,44 +1556,20 @@
41
- inflateBackInit_((strm), (windowBits), (window), \
42
- ZLIB_VERSION, sizeof(z_stream))
43
-
44
- +/* LFS conventions have no meaning on Windows. Looking for feature
45
- + * macros like _LARGEFILE64_SOURCE or _FILE_OFFSET_BITS on Windows is
46
- + * wrong. So make sure any such macros misguidedly defined by the
47
- + * user have no effect. Windows has large file support, but the
48
- + * official zlib DLL has not been built to provide the 64-bit offset
49
- + * APIs, sigh. So we have just patched out the 64-bit offset API
50
- + * from this header file.
51
- + */
52
- -/* provide 64-bit offset functions if _LARGEFILE64_SOURCE defined, and/or
53
- - * change the regular functions to 64 bits if _FILE_OFFSET_BITS is 64 (if
54
- - * both are true, the application gets the *64 functions, and the regular
55
- - * functions are changed to 64 bits) -- in case these are set on systems
56
- - * without large file support, _LFS64_LARGEFILE must also be true
57
- - */
58
- -#if defined(_LARGEFILE64_SOURCE) && _LFS64_LARGEFILE-0
59
- - ZEXTERN gzFile ZEXPORT gzopen64 OF((const char *, const char *));
60
- - ZEXTERN z_off64_t ZEXPORT gzseek64 OF((gzFile, z_off64_t, int));
61
- - ZEXTERN z_off64_t ZEXPORT gztell64 OF((gzFile));
62
- - ZEXTERN z_off64_t ZEXPORT gzoffset64 OF((gzFile));
63
- - ZEXTERN uLong ZEXPORT adler32_combine64 OF((uLong, uLong, z_off64_t));
64
- - ZEXTERN uLong ZEXPORT crc32_combine64 OF((uLong, uLong, z_off64_t));
65
- -#endif
66
- -
67
- -#if !defined(ZLIB_INTERNAL) && _FILE_OFFSET_BITS-0 == 64 && _LFS64_LARGEFILE-0
68
- -# define gzopen gzopen64
69
- -# define gzseek gzseek64
70
- -# define gztell gztell64
71
- -# define gzoffset gzoffset64
72
- -# define adler32_combine adler32_combine64
73
- -# define crc32_combine crc32_combine64
74
- -# ifdef _LARGEFILE64_SOURCE
75
- - ZEXTERN gzFile ZEXPORT gzopen64 OF((const char *, const char *));
76
- - ZEXTERN z_off_t ZEXPORT gzseek64 OF((gzFile, z_off_t, int));
77
- - ZEXTERN z_off_t ZEXPORT gztell64 OF((gzFile));
78
- - ZEXTERN z_off_t ZEXPORT gzoffset64 OF((gzFile));
79
- - ZEXTERN uLong ZEXPORT adler32_combine64 OF((uLong, uLong, z_off_t));
80
- - ZEXTERN uLong ZEXPORT crc32_combine64 OF((uLong, uLong, z_off_t));
81
- -# endif
82
- -#else
83
- ZEXTERN gzFile ZEXPORT gzopen OF((const char *, const char *));
84
- ZEXTERN z_off_t ZEXPORT gzseek OF((gzFile, z_off_t, int));
85
- ZEXTERN z_off_t ZEXPORT gztell OF((gzFile));
86
- ZEXTERN z_off_t ZEXPORT gzoffset OF((gzFile));
87
- ZEXTERN uLong ZEXPORT adler32_combine OF((uLong, uLong, z_off_t));
88
- ZEXTERN uLong ZEXPORT crc32_combine OF((uLong, uLong, z_off_t));
89
- -#endif
90
-
91
- /* hack for buggy compilers */
92
- #if !defined(ZUTIL_H) && !defined(NO_DUMMY_DECL)
93
- --- include/zconf.h
94
- +++ include/zconf.h
95
- @@ -270,7 +270,31 @@
96
- # endif
97
- #endif
98
-
99
- +/* When a specific build of zlib is done on Windows, it is either a
100
- + * DLL or not. That build should have a specific corresponding zconf.h
101
- + * distributed. The zconf.h thus knows a priori whether the
102
- + * corresponding library was built as a DLL or not. Requiring the
103
- + * library user to define ZLIB_DLL when compiling his code, intending
104
- + * to link against the import library for such a DLL build, is
105
- + * silly. Instead just unconditionally define ZLIB_DLL here as the
106
- + * official Windows build of zlib is a DLL, period.
107
- + *
108
- + * Similarly, when a specific build of zlib is done on (32-bit)
109
- + * Windows, it either uses the WINAPI calling convention or not. A
110
- + * user of a prebuilt library can not choose later. So it is pointless
111
- + * to require the user to define ZLIB_WINAPI when compiling. Instead,
112
- + * just have a specific copy of this zconf.h that corresponds to that
113
- + * build of zlib. For the case of the official build, it doe not use WINAPI,
114
- + * so ignore any attempt by a misguided user to use it.
115
- + */
116
- +
117
- +#undef ZLIB_DLL
118
- +#define ZLIB_DLL 1
119
- +
120
- +#undef ZLIB_WINAPI
121
- +
122
- #if defined(WINDOWS) || defined(WIN32)
123
- + /* NOTE: Bogus. See above comment about ZLIB_DLL */
124
- /* If building or using zlib as a DLL, define ZLIB_DLL.
125
- * This is not mandatory, but it offers a little performance increase.
126
- */
127
- @@ -283,6 +307,8 @@
128
- # endif
129
- # endif
130
- # endif /* ZLIB_DLL */
131
- +
132
- + /* NOTE: Bogus. See above comment about ZLIB_WINAPI */
133
- /* If building or using zlib with the WINAPI/WINAPIV calling convention,
134
- * define ZLIB_WINAPI.
135
- * Caution: the standard ZLIB1.DLL is NOT compiled using ZLIB_WINAPI.
136
- @@ -364,17 +390,24 @@
137
- # include <sys/types.h> /* for off_t */
138
- #endif
139
-
140
- +/* LFS conventions have no meaning on Windows. Looking for feature
141
- + * macros like _LARGEFILE64_SOURCE or _FILE_OFFSET_BITS on Windows is
142
- + * wrong. So make sure any such macros misguidedly defined by the user
143
- + * have no effect. Windows has large file support, but the official zlib
144
- + * DLL has not been built to provide the 64-bit offset APIs, sigh.
145
- + */
146
- +
147
- /* a little trick to accommodate both "#define _LARGEFILE64_SOURCE" and
148
- * "#define _LARGEFILE64_SOURCE 1" as requesting 64-bit operations, (even
149
- * though the former does not conform to the LFS document), but considering
150
- * both "#undef _LARGEFILE64_SOURCE" and "#define _LARGEFILE64_SOURCE 0" as
151
- * equivalently requesting no 64-bit operations
152
- */
153
- -#if -_LARGEFILE64_SOURCE - -1 == 1
154
- +#if !defined(_WIN32) && -_LARGEFILE64_SOURCE - -1 == 1
155
- # undef _LARGEFILE64_SOURCE
156
- #endif
157
-
158
- -#if defined(Z_HAVE_UNISTD_H) || defined(_LARGEFILE64_SOURCE)
159
- +#if !defined(_WIN32) && (defined(Z_HAVE_UNISTD_H) || defined(_LARGEFILE64_SOURCE))
160
- # include <unistd.h> /* for SEEK_* and off_t */
161
- # ifdef VMS
162
- # include <unixio.h> /* for off_t */
163
- @@ -394,7 +426,7 @@
164
- # define z_off_t long
165
- #endif
166
-
167
- -#if defined(_LARGEFILE64_SOURCE) && _LFS64_LARGEFILE-0
168
- +#if !defined(_WIN32) && (defined(_LARGEFILE64_SOURCE) && _LFS64_LARGEFILE-0)
169
- # define z_off64_t off64_t
170
- #else
171
- # define z_off64_t z_off_t
172
- EOF
173
-
174
- pexports zlib1.dll >zlib.def &&
175
- dlltool --input-def zlib.def --dllname zlib1.dll --output-lib libz.dll.a &&
176
- cp zlib1.dll $TARGET/bin &&
177
- cp lib/zdll.lib libz.dll.a zlib.def $TARGET/lib &&
178
- cp include/zlib.h include/zconf.h $TARGET/include &&
179
-
180
- rm -f /tmp/$RUNZIP /tmp/$DEVZIP &&
181
- (cd /devel/target/$HEX &&
182
- zip /tmp/$RUNZIP bin/zlib1.dll &&
183
- zip -r -D /tmp/$DEVZIP lib include
184
- )
185
-
186
- ) 2>&1 | tee /devel/src/tml/packaging/$THIS.log
187
-
188
- (cd /devel && zip /tmp/$DEVZIP src/tml/packaging/$THIS.{sh,log}) &&
189
- manifestify /tmp/$RUNZIP /tmp/$DEVZIP