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.
- data/NEWS +2 -2
- data/Rakefile +44 -7
- data/ext/cairo/cairo.def +28 -1
- data/ext/cairo/extconf.rb +14 -16
- data/ext/cairo/rb_cairo.c +4 -1
- data/ext/cairo/rb_cairo.h +65 -1
- data/ext/cairo/rb_cairo_constants.c +150 -3
- data/ext/cairo/rb_cairo_context.c +17 -0
- data/ext/cairo/rb_cairo_device.c +406 -0
- data/ext/cairo/rb_cairo_exception.c +83 -32
- data/ext/cairo/rb_cairo_io.c +166 -0
- data/ext/cairo/rb_cairo_io.h +44 -0
- data/ext/cairo/rb_cairo_matrix.c +1 -1
- data/ext/cairo/rb_cairo_private.h +3 -0
- data/ext/cairo/rb_cairo_region.c +385 -0
- data/ext/cairo/rb_cairo_surface.c +674 -199
- data/lib/1.8/cairo.so +0 -0
- data/lib/1.9/cairo.so +0 -0
- data/samples/blur.rb +2 -3
- data/samples/{pac2.rb → pac-nomralize.rb} +5 -6
- data/samples/pac-tee.rb +170 -0
- data/samples/pac.rb +2 -3
- data/samples/png.rb +2 -3
- data/samples/scalable.rb +2 -3
- data/samples/text-on-path.rb +2 -3
- data/samples/text2.rb +2 -3
- data/test/cairo-test-utils.rb +15 -0
- data/test/run-test.rb +5 -4
- data/test/test_context.rb +4 -4
- data/test/test_font_face.rb +34 -21
- data/test/test_recording_surface.rb +18 -0
- data/test/test_region.rb +102 -0
- data/test/test_script_device.rb +46 -0
- data/test/test_script_surface.rb +13 -0
- data/test/test_surface.rb +14 -4
- data/test/test_tee_surface.rb +32 -0
- data/test/test_xml_device.rb +22 -0
- data/test/test_xml_surface.rb +32 -0
- data/tmp/i386-mingw32/cairo/1.9.2/rbconfig.rb +1 -1
- data/vendor/local/bin/libcairo-2.dll +0 -0
- data/vendor/local/include/cairo/cairo-deprecated.h +1 -16
- data/vendor/local/include/cairo/cairo-features.h +7 -0
- data/vendor/local/include/cairo/cairo-ft.h +16 -9
- data/vendor/local/include/cairo/cairo-gobject.h +186 -0
- data/vendor/local/include/cairo/cairo-pdf.h +27 -1
- data/vendor/local/include/cairo/cairo-ps.h +1 -1
- data/vendor/local/include/cairo/cairo-script-interpreter.h +117 -0
- data/vendor/local/include/cairo/cairo-svg.h +1 -1
- data/vendor/local/include/cairo/cairo-version.h +2 -2
- data/vendor/local/include/cairo/cairo-win32.h +1 -1
- data/vendor/local/include/cairo/cairo.h +382 -26
- data/vendor/local/lib/cairo.def +44 -0
- data/vendor/local/lib/cairo.lib +0 -0
- data/vendor/local/lib/libcairo.dll.a +0 -0
- data/vendor/local/lib/pkgconfig/cairo-fc.pc +12 -0
- data/vendor/local/lib/pkgconfig/cairo-ft.pc +4 -4
- data/vendor/local/lib/pkgconfig/cairo-gobject.pc +12 -0
- data/vendor/local/lib/pkgconfig/cairo-pdf.pc +3 -3
- data/vendor/local/lib/pkgconfig/cairo-png.pc +3 -3
- data/vendor/local/lib/pkgconfig/cairo-ps.pc +3 -3
- data/vendor/local/lib/pkgconfig/cairo-svg.pc +3 -3
- data/vendor/local/lib/pkgconfig/cairo-win32-font.pc +3 -3
- data/vendor/local/lib/pkgconfig/cairo-win32.pc +3 -3
- data/vendor/local/lib/pkgconfig/cairo.pc +4 -4
- data/vendor/local/manifest/{cairo-dev_1.8.10-4_win32.mft → cairo-dev_1.10.0-1_win32.mft} +34 -27
- data/vendor/local/manifest/cairo_1.10.0-1_win32.mft +5 -0
- data/vendor/local/share/doc/{cairo_1.8.10-4_win32 → cairo_1.10.0-1_win32}/COPYING +9 -8
- data/vendor/local/share/doc/{cairo_1.8.10-4_win32 → cairo_1.10.0-1_win32}/COPYING-LGPL-2.1 +2 -2
- data/vendor/local/share/doc/{cairo_1.8.10-4_win32 → cairo_1.10.0-1_win32}/COPYING-MPL-1.1 +0 -0
- data/vendor/local/share/gtk-doc/html/cairo/bindings-errors.html +4 -14
- data/vendor/local/share/gtk-doc/html/cairo/bindings-fonts.html +5 -15
- data/vendor/local/share/gtk-doc/html/cairo/bindings-memory.html +7 -17
- data/vendor/local/share/gtk-doc/html/cairo/bindings-overloading.html +6 -16
- data/vendor/local/share/gtk-doc/html/cairo/bindings-path.html +6 -16
- data/vendor/local/share/gtk-doc/html/cairo/bindings-patterns.html +23 -28
- data/vendor/local/share/gtk-doc/html/cairo/bindings-return-values.html +3 -13
- data/vendor/local/share/gtk-doc/html/cairo/bindings-streams.html +3 -13
- data/vendor/local/share/gtk-doc/html/cairo/bindings-surfaces.html +7 -17
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Error-handling.html +373 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-FreeType-Fonts.html +330 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Image-Surfaces.html +478 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-PDF-Surfaces.html +344 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-PNG-Support.html +320 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Paths.html +1291 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-PostScript-Surfaces.html +622 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Quartz-(CGFont)-Fonts.html +134 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Quartz-Surfaces.html +210 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Regions.html +834 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-SVG-Surfaces.html +318 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Transformations.html +410 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Types.html +169 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-User-Fonts.html +715 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Version-Information.html +410 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Win32-Fonts.html +335 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Win32-Surfaces.html +291 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-XLib-Surfaces.html +470 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-device-t.html +595 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-font-face-t.html +384 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-font-options-t.html +644 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-matrix-t.html +574 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-pattern-t.html +1457 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-scaled-font-t.html +1076 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-surface-t.html +1396 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-t.html +2743 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-drawing.html +13 -20
- data/vendor/local/share/gtk-doc/html/cairo/cairo-fonts.html +13 -23
- data/vendor/local/share/gtk-doc/html/cairo/cairo-support.html +11 -21
- data/vendor/local/share/gtk-doc/html/cairo/cairo-surfaces.html +19 -26
- data/vendor/local/share/gtk-doc/html/cairo/cairo-text.html +279 -326
- data/vendor/local/share/gtk-doc/html/cairo/cairo.devhelp +411 -355
- data/vendor/local/share/gtk-doc/html/cairo/cairo.devhelp2 +579 -480
- data/vendor/local/share/gtk-doc/html/cairo/index-1.10.html +147 -0
- data/vendor/local/share/gtk-doc/html/cairo/index-1.2.html +88 -65
- data/vendor/local/share/gtk-doc/html/cairo/index-1.4.html +72 -47
- data/vendor/local/share/gtk-doc/html/cairo/index-1.6.html +43 -32
- data/vendor/local/share/gtk-doc/html/cairo/index-1.8.html +42 -41
- data/vendor/local/share/gtk-doc/html/cairo/index-all.html +542 -345
- data/vendor/local/share/gtk-doc/html/cairo/index.html +36 -39
- data/vendor/local/share/gtk-doc/html/cairo/index.sgml +674 -444
- data/vendor/local/share/gtk-doc/html/cairo/language-bindings.html +6 -16
- data/vendor/local/share/gtk-doc/html/cairo/style.css +152 -54
- data/vendor/local/src/tml/packaging/cairo_1.10.0-1_win32.log +1262 -0
- data/vendor/local/src/tml/packaging/{cairo_1.8.10-4_win32.sh → cairo_1.10.0-1_win32.sh} +3 -3
- metadata +137 -389
- data/doc/doc.css +0 -91
- data/doc/en/cairo-antialias.html +0 -38
- data/doc/en/cairo-clip-not-representable-error.html +0 -47
- data/doc/en/cairo-color-base.html +0 -69
- data/doc/en/cairo-color-cmyk.html +0 -157
- data/doc/en/cairo-color-hsv.html +0 -137
- data/doc/en/cairo-color-rgb.html +0 -142
- data/doc/en/cairo-color-x11.html +0 -173
- data/doc/en/cairo-color.html +0 -238
- data/doc/en/cairo-content.html +0 -37
- data/doc/en/cairo-context-blur.html +0 -39
- data/doc/en/cairo-context-circle.html +0 -39
- data/doc/en/cairo-context-color.html +0 -39
- data/doc/en/cairo-context-path.html +0 -44
- data/doc/en/cairo-context-rectangle.html +0 -39
- data/doc/en/cairo-context-triangle.html +0 -39
- data/doc/en/cairo-context.html +0 -643
- data/doc/en/cairo-error.html +0 -44
- data/doc/en/cairo-extend.html +0 -38
- data/doc/en/cairo-file-not-found.html +0 -47
- data/doc/en/cairo-fill-rule.html +0 -36
- data/doc/en/cairo-filter.html +0 -40
- data/doc/en/cairo-font-extents.html +0 -129
- data/doc/en/cairo-font-face.html +0 -38
- data/doc/en/cairo-font-options.html +0 -139
- data/doc/en/cairo-font-slant.html +0 -37
- data/doc/en/cairo-font-type-mismatch.html +0 -47
- data/doc/en/cairo-font-weight.html +0 -36
- data/doc/en/cairo-format.html +0 -46
- data/doc/en/cairo-glyph.html +0 -99
- data/doc/en/cairo-gradient-pattern.html +0 -74
- data/doc/en/cairo-hint-metrics.html +0 -37
- data/doc/en/cairo-hint-style.html +0 -39
- data/doc/en/cairo-image-surface.html +0 -82
- data/doc/en/cairo-invalid-clusters.html +0 -47
- data/doc/en/cairo-invalid-content-error.html +0 -47
- data/doc/en/cairo-invalid-dash-error.html +0 -47
- data/doc/en/cairo-invalid-dsc-comment-error.html +0 -47
- data/doc/en/cairo-invalid-format-error.html +0 -47
- data/doc/en/cairo-invalid-index-error.html +0 -47
- data/doc/en/cairo-invalid-matrix-error.html +0 -47
- data/doc/en/cairo-invalid-path-data-error.html +0 -47
- data/doc/en/cairo-invalid-pop-group-error.html +0 -47
- data/doc/en/cairo-invalid-restore-error.html +0 -47
- data/doc/en/cairo-invalid-slant.html +0 -47
- data/doc/en/cairo-invalid-status-error.html +0 -47
- data/doc/en/cairo-invalid-stride-error.html +0 -47
- data/doc/en/cairo-invalid-string-error.html +0 -47
- data/doc/en/cairo-invalid-visual-error.html +0 -47
- data/doc/en/cairo-invalid-weight.html +0 -47
- data/doc/en/cairo-line-cap.html +0 -37
- data/doc/en/cairo-line-join.html +0 -37
- data/doc/en/cairo-linear-pattern.html +0 -60
- data/doc/en/cairo-matrix.html +0 -259
- data/doc/en/cairo-negative-count.html +0 -47
- data/doc/en/cairo-no-current-point-error.html +0 -47
- data/doc/en/cairo-null-pointer-error.html +0 -47
- data/doc/en/cairo-operator.html +0 -48
- data/doc/en/cairo-paper-parse-error.html +0 -47
- data/doc/en/cairo-paper-unknown-paper-name.html +0 -66
- data/doc/en/cairo-paper-unknown-unit.html +0 -66
- data/doc/en/cairo-paper-unrecognized-paper-description.html +0 -66
- data/doc/en/cairo-paper.html +0 -184
- data/doc/en/cairo-path-close-path.html +0 -49
- data/doc/en/cairo-path-curve-to.html +0 -49
- data/doc/en/cairo-path-data-type.html +0 -38
- data/doc/en/cairo-path-data.html +0 -98
- data/doc/en/cairo-path-line-to.html +0 -49
- data/doc/en/cairo-path-move-to.html +0 -49
- data/doc/en/cairo-path.html +0 -155
- data/doc/en/cairo-pattern-type-mismatch-error.html +0 -47
- data/doc/en/cairo-pattern.html +0 -99
- data/doc/en/cairo-pdf-surface.html +0 -57
- data/doc/en/cairo-point.html +0 -74
- data/doc/en/cairo-ps-level.html +0 -49
- data/doc/en/cairo-ps-surface.html +0 -92
- data/doc/en/cairo-quartz-image-surface.html +0 -57
- data/doc/en/cairo-quartz-surface.html +0 -57
- data/doc/en/cairo-radial-pattern.html +0 -60
- data/doc/en/cairo-read-error.html +0 -47
- data/doc/en/cairo-rectangle.html +0 -89
- data/doc/en/cairo-scaled-font.html +0 -94
- data/doc/en/cairo-solid-pattern.html +0 -62
- data/doc/en/cairo-subpixel-order.html +0 -39
- data/doc/en/cairo-surface-finished-error.html +0 -47
- data/doc/en/cairo-surface-pattern.html +0 -57
- data/doc/en/cairo-surface-type-mismatch-error.html +0 -47
- data/doc/en/cairo-surface.html +0 -121
- data/doc/en/cairo-svg-surface.html +0 -77
- data/doc/en/cairo-svg-version.html +0 -49
- data/doc/en/cairo-temp-file-error.html +0 -47
- data/doc/en/cairo-text-cluster-flag.html +0 -35
- data/doc/en/cairo-text-cluster.html +0 -84
- data/doc/en/cairo-text-extents.html +0 -144
- data/doc/en/cairo-toy-font-face.html +0 -67
- data/doc/en/cairo-user-font-error.html +0 -47
- data/doc/en/cairo-user-font-face-text-to-glyphs-data.html +0 -94
- data/doc/en/cairo-user-font-face.html +0 -72
- data/doc/en/cairo-user-font-immutable.html +0 -47
- data/doc/en/cairo-win32-printing-surface.html +0 -57
- data/doc/en/cairo-win32-surface.html +0 -62
- data/doc/en/cairo-write-error.html +0 -47
- data/doc/en/cairo.html +0 -131
- data/doc/en/index.html +0 -1154
- data/doc/index.html +0 -18
- data/doc/ja/cairo-antialias.html +0 -57
- data/doc/ja/cairo-clip-not-representable-error.html +0 -56
- data/doc/ja/cairo-color-base.html +0 -75
- data/doc/ja/cairo-color-cmyk.html +0 -152
- data/doc/ja/cairo-color-hsv.html +0 -135
- data/doc/ja/cairo-color-rgb.html +0 -145
- data/doc/ja/cairo-color-x11.html +0 -183
- data/doc/ja/cairo-color.html +0 -317
- data/doc/ja/cairo-content.html +0 -51
- data/doc/ja/cairo-context-blur.html +0 -53
- data/doc/ja/cairo-context-circle.html +0 -54
- data/doc/ja/cairo-context-color.html +0 -52
- data/doc/ja/cairo-context-path.html +0 -77
- data/doc/ja/cairo-context-rectangle.html +0 -60
- data/doc/ja/cairo-context-triangle.html +0 -47
- data/doc/ja/cairo-context.html +0 -1542
- data/doc/ja/cairo-error.html +0 -56
- data/doc/ja/cairo-extend.html +0 -56
- data/doc/ja/cairo-file-not-found.html +0 -51
- data/doc/ja/cairo-fill-rule.html +0 -58
- data/doc/ja/cairo-filter.html +0 -43
- data/doc/ja/cairo-font-extents.html +0 -164
- data/doc/ja/cairo-font-face.html +0 -55
- data/doc/ja/cairo-font-options.html +0 -189
- data/doc/ja/cairo-font-slant.html +0 -50
- data/doc/ja/cairo-font-type-mismatch.html +0 -52
- data/doc/ja/cairo-font-weight.html +0 -47
- data/doc/ja/cairo-format.html +0 -81
- data/doc/ja/cairo-glyph.html +0 -115
- data/doc/ja/cairo-gradient-pattern.html +0 -119
- data/doc/ja/cairo-hint-metrics.html +0 -57
- data/doc/ja/cairo-hint-style.html +0 -64
- data/doc/ja/cairo-image-surface.html +0 -131
- data/doc/ja/cairo-invalid-clusters.html +0 -55
- data/doc/ja/cairo-invalid-content-error.html +0 -54
- data/doc/ja/cairo-invalid-dash-error.html +0 -54
- data/doc/ja/cairo-invalid-dsc-comment-error.html +0 -54
- data/doc/ja/cairo-invalid-format-error.html +0 -54
- data/doc/ja/cairo-invalid-index-error.html +0 -54
- data/doc/ja/cairo-invalid-matrix-error.html +0 -54
- data/doc/ja/cairo-invalid-path-data-error.html +0 -54
- data/doc/ja/cairo-invalid-pop-group-error.html +0 -54
- data/doc/ja/cairo-invalid-restore-error.html +0 -55
- data/doc/ja/cairo-invalid-slant.html +0 -57
- data/doc/ja/cairo-invalid-status-error.html +0 -55
- data/doc/ja/cairo-invalid-stride-error.html +0 -55
- data/doc/ja/cairo-invalid-string-error.html +0 -54
- data/doc/ja/cairo-invalid-visual-error.html +0 -57
- data/doc/ja/cairo-invalid-weight.html +0 -57
- data/doc/ja/cairo-line-cap.html +0 -50
- data/doc/ja/cairo-line-join.html +0 -53
- data/doc/ja/cairo-linear-pattern.html +0 -87
- data/doc/ja/cairo-matrix.html +0 -354
- data/doc/ja/cairo-negative-count.html +0 -52
- data/doc/ja/cairo-no-current-point-error.html +0 -54
- data/doc/ja/cairo-null-pointer-error.html +0 -54
- data/doc/ja/cairo-operator.html +0 -51
- data/doc/ja/cairo-paper-parse-error.html +0 -55
- data/doc/ja/cairo-paper-unknown-paper-name.html +0 -76
- data/doc/ja/cairo-paper-unknown-unit.html +0 -75
- data/doc/ja/cairo-paper-unrecognized-paper-description.html +0 -76
- data/doc/ja/cairo-paper.html +0 -357
- data/doc/ja/cairo-path-close-path.html +0 -57
- data/doc/ja/cairo-path-curve-to.html +0 -70
- data/doc/ja/cairo-path-data-type.html +0 -53
- data/doc/ja/cairo-path-data.html +0 -127
- data/doc/ja/cairo-path-line-to.html +0 -62
- data/doc/ja/cairo-path-move-to.html +0 -62
- data/doc/ja/cairo-path.html +0 -144
- data/doc/ja/cairo-pattern-type-mismatch-error.html +0 -56
- data/doc/ja/cairo-pattern.html +0 -128
- data/doc/ja/cairo-pdf-surface.html +0 -86
- data/doc/ja/cairo-point.html +0 -90
- data/doc/ja/cairo-ps-level.html +0 -62
- data/doc/ja/cairo-ps-surface.html +0 -214
- data/doc/ja/cairo-quartz-image-surface.html +0 -75
- data/doc/ja/cairo-quartz-surface.html +0 -93
- data/doc/ja/cairo-radial-pattern.html +0 -93
- data/doc/ja/cairo-read-error.html +0 -55
- data/doc/ja/cairo-rectangle.html +0 -109
- data/doc/ja/cairo-scaled-font.html +0 -180
- data/doc/ja/cairo-solid-pattern.html +0 -87
- data/doc/ja/cairo-subpixel-order.html +0 -57
- data/doc/ja/cairo-surface-finished-error.html +0 -54
- data/doc/ja/cairo-surface-pattern.html +0 -68
- data/doc/ja/cairo-surface-type-mismatch-error.html +0 -56
- data/doc/ja/cairo-surface.html +0 -213
- data/doc/ja/cairo-svg-surface.html +0 -114
- data/doc/ja/cairo-svg-version.html +0 -66
- data/doc/ja/cairo-temp-file-error.html +0 -50
- data/doc/ja/cairo-text-cluster-flag.html +0 -46
- data/doc/ja/cairo-text-cluster.html +0 -102
- data/doc/ja/cairo-text-extents.html +0 -163
- data/doc/ja/cairo-toy-font-face.html +0 -107
- data/doc/ja/cairo-user-font-error.html +0 -55
- data/doc/ja/cairo-user-font-face-text-to-glyphs-data.html +0 -156
- data/doc/ja/cairo-user-font-face.html +0 -268
- data/doc/ja/cairo-user-font-immutable.html +0 -54
- data/doc/ja/cairo-win32-printing-surface.html +0 -80
- data/doc/ja/cairo-win32-surface.html +0 -100
- data/doc/ja/cairo-write-error.html +0 -55
- data/doc/ja/cairo.html +0 -177
- data/doc/ja/index.html +0 -1156
- data/pkg-config.rb +0 -313
- data/test-unit/Rakefile +0 -30
- data/test-unit/bin/testrb +0 -5
- data/test-unit/lib/test/unit.rb +0 -280
- data/test-unit/lib/test/unit/assertionfailederror.rb +0 -14
- data/test-unit/lib/test/unit/assertions.rb +0 -722
- data/test-unit/lib/test/unit/attribute.rb +0 -125
- data/test-unit/lib/test/unit/autorunner.rb +0 -254
- data/test-unit/lib/test/unit/collector.rb +0 -43
- data/test-unit/lib/test/unit/collector/descendant.rb +0 -23
- data/test-unit/lib/test/unit/collector/dir.rb +0 -108
- data/test-unit/lib/test/unit/collector/load.rb +0 -135
- data/test-unit/lib/test/unit/collector/objectspace.rb +0 -34
- data/test-unit/lib/test/unit/color.rb +0 -61
- data/test-unit/lib/test/unit/diff.rb +0 -524
- data/test-unit/lib/test/unit/error.rb +0 -124
- data/test-unit/lib/test/unit/exceptionhandler.rb +0 -39
- data/test-unit/lib/test/unit/failure.rb +0 -110
- data/test-unit/lib/test/unit/fixture.rb +0 -185
- data/test-unit/lib/test/unit/notification.rb +0 -125
- data/test-unit/lib/test/unit/omission.rb +0 -143
- data/test-unit/lib/test/unit/pending.rb +0 -146
- data/test-unit/lib/test/unit/priority.rb +0 -146
- data/test-unit/lib/test/unit/runner/console.rb +0 -46
- data/test-unit/lib/test/unit/runner/emacs.rb +0 -8
- data/test-unit/lib/test/unit/testcase.rb +0 -281
- data/test-unit/lib/test/unit/testresult.rb +0 -89
- data/test-unit/lib/test/unit/testsuite.rb +0 -110
- data/test-unit/lib/test/unit/ui/console/outputlevel.rb +0 -14
- data/test-unit/lib/test/unit/ui/console/testrunner.rb +0 -195
- data/test-unit/lib/test/unit/ui/emacs/testrunner.rb +0 -49
- data/test-unit/lib/test/unit/ui/testrunner.rb +0 -20
- data/test-unit/lib/test/unit/ui/testrunnermediator.rb +0 -77
- data/test-unit/lib/test/unit/ui/testrunnerutilities.rb +0 -41
- data/test-unit/lib/test/unit/util/backtracefilter.rb +0 -41
- data/test-unit/lib/test/unit/util/observable.rb +0 -90
- data/test-unit/lib/test/unit/util/procwrapper.rb +0 -48
- data/test-unit/lib/test/unit/version.rb +0 -7
- data/test-unit/sample/adder.rb +0 -13
- data/test-unit/sample/subtracter.rb +0 -12
- data/test-unit/sample/tc_adder.rb +0 -18
- data/test-unit/sample/tc_subtracter.rb +0 -18
- data/test-unit/sample/ts_examples.rb +0 -7
- data/test-unit/test/collector/test_descendant.rb +0 -135
- data/test-unit/test/collector/test_dir.rb +0 -406
- data/test-unit/test/collector/test_load.rb +0 -333
- data/test-unit/test/collector/test_objectspace.rb +0 -98
- data/test-unit/test/run-test.rb +0 -13
- data/test-unit/test/test_assertions.rb +0 -693
- data/test-unit/test/test_attribute.rb +0 -86
- data/test-unit/test/test_color.rb +0 -37
- data/test-unit/test/test_diff.rb +0 -477
- data/test-unit/test/test_emacs_runner.rb +0 -60
- data/test-unit/test/test_error.rb +0 -26
- data/test-unit/test/test_failure.rb +0 -33
- data/test-unit/test/test_fixture.rb +0 -252
- data/test-unit/test/test_notification.rb +0 -33
- data/test-unit/test/test_omission.rb +0 -81
- data/test-unit/test/test_pending.rb +0 -70
- data/test-unit/test/test_priority.rb +0 -89
- data/test-unit/test/test_testcase.rb +0 -430
- data/test-unit/test/test_testresult.rb +0 -113
- data/test-unit/test/test_testsuite.rb +0 -129
- data/test-unit/test/testunit_test_util.rb +0 -14
- data/test-unit/test/ui/test_testrunmediator.rb +0 -20
- data/test-unit/test/util/test_backtracefilter.rb +0 -41
- data/test-unit/test/util/test_observable.rb +0 -102
- data/test-unit/test/util/test_procwrapper.rb +0 -36
- data/test/test_pkg_config.rb +0 -123
- data/vendor/local/include/libpng14/png.h +0 -2701
- data/vendor/local/include/libpng14/pngconf.h +0 -1525
- data/vendor/local/include/png.h +0 -2701
- data/vendor/local/include/pngconf.h +0 -1525
- data/vendor/local/include/zconf.h +0 -461
- data/vendor/local/include/zlib.h +0 -1589
- data/vendor/local/lib/libpng.def +0 -192
- data/vendor/local/lib/libpng.lib +0 -0
- data/vendor/local/lib/libpng14.dll.a +0 -0
- data/vendor/local/lib/libz.dll.a +0 -0
- data/vendor/local/lib/pkgconfig/libpng.pc +0 -11
- data/vendor/local/lib/pkgconfig/libpng14.pc +0 -11
- data/vendor/local/lib/zdll.lib +0 -0
- data/vendor/local/lib/zlib.def +0 -67
- data/vendor/local/manifest/cairo_1.8.10-4_win32.mft +0 -5
- data/vendor/local/manifest/libpng-dev_1.4.3-1_win32.mft +0 -15
- data/vendor/local/manifest/zlib-dev_1.2.5-2_win32.mft +0 -8
- data/vendor/local/share/gtk-doc/html/cairo/cairo-context.html +0 -2643
- data/vendor/local/share/gtk-doc/html/cairo/cairo-error-status.html +0 -360
- data/vendor/local/share/gtk-doc/html/cairo/cairo-font-face.html +0 -408
- data/vendor/local/share/gtk-doc/html/cairo/cairo-font-options.html +0 -678
- data/vendor/local/share/gtk-doc/html/cairo/cairo-ft-font.html +0 -319
- data/vendor/local/share/gtk-doc/html/cairo/cairo-image-surface.html +0 -473
- data/vendor/local/share/gtk-doc/html/cairo/cairo-matrix.html +0 -596
- data/vendor/local/share/gtk-doc/html/cairo/cairo-paths.html +0 -1274
- data/vendor/local/share/gtk-doc/html/cairo/cairo-pattern.html +0 -1485
- data/vendor/local/share/gtk-doc/html/cairo/cairo-pdf-surface.html +0 -238
- data/vendor/local/share/gtk-doc/html/cairo/cairo-png-functions.html +0 -341
- data/vendor/local/share/gtk-doc/html/cairo/cairo-ps-surface.html +0 -622
- data/vendor/local/share/gtk-doc/html/cairo/cairo-quartz-font.html +0 -151
- data/vendor/local/share/gtk-doc/html/cairo/cairo-quartz-surface.html +0 -219
- data/vendor/local/share/gtk-doc/html/cairo/cairo-scaled-font.html +0 -1023
- data/vendor/local/share/gtk-doc/html/cairo/cairo-surface.html +0 -1026
- data/vendor/local/share/gtk-doc/html/cairo/cairo-svg-surface.html +0 -321
- data/vendor/local/share/gtk-doc/html/cairo/cairo-transformations.html +0 -436
- data/vendor/local/share/gtk-doc/html/cairo/cairo-types.html +0 -133
- data/vendor/local/share/gtk-doc/html/cairo/cairo-user-font.html +0 -735
- data/vendor/local/share/gtk-doc/html/cairo/cairo-version-info.html +0 -345
- data/vendor/local/share/gtk-doc/html/cairo/cairo-win32-font.html +0 -358
- data/vendor/local/share/gtk-doc/html/cairo/cairo-win32-surface.html +0 -312
- data/vendor/local/share/gtk-doc/html/cairo/cairo-xlib-surface.html +0 -492
- data/vendor/local/share/man/man3/libpng.3 +0 -4455
- data/vendor/local/share/man/man3/libpngpf.3 +0 -808
- data/vendor/local/share/man/man5/png.5 +0 -74
- data/vendor/local/src/tml/packaging/cairo_1.8.10-4_win32.log +0 -920
- data/vendor/local/src/tml/packaging/libpng_1.4.3-1_win32.log +0 -272
- data/vendor/local/src/tml/packaging/libpng_1.4.3-1_win32.sh +0 -71
- data/vendor/local/src/tml/packaging/zlib_1.2.5-2_win32.log +0 -42
- data/vendor/local/src/tml/packaging/zlib_1.2.5-2_win32.sh +0 -189
@@ -1,74 +0,0 @@
|
|
1
|
-
.TH PNG 5 "June 26, 2010"
|
2
|
-
.SH NAME
|
3
|
-
png \- Portable Network Graphics (PNG) format
|
4
|
-
.SH DESCRIPTION
|
5
|
-
PNG (Portable Network Graphics) is an extensible file format for the
|
6
|
-
lossless, portable, well-compressed storage of raster images. PNG provides
|
7
|
-
a patent-free replacement for GIF and can also replace many
|
8
|
-
common uses of TIFF. Indexed-color, grayscale, and truecolor images are
|
9
|
-
supported, plus an optional alpha channel. Sample depths range from
|
10
|
-
1 to 16 bits.
|
11
|
-
.br
|
12
|
-
|
13
|
-
PNG is designed to work well in online viewing applications, such as the
|
14
|
-
World Wide Web, so it is fully streamable with a progressive display
|
15
|
-
option. PNG is robust, providing both full file integrity checking and
|
16
|
-
fast, simple detection of common transmission errors. Also, PNG can store
|
17
|
-
gamma and chromaticity data for improved color matching on heterogeneous
|
18
|
-
platforms.
|
19
|
-
|
20
|
-
.SH "SEE ALSO"
|
21
|
-
.IR libpng(3), zlib(3), deflate(5), and zlib(5)
|
22
|
-
.LP
|
23
|
-
PNG specification (second edition), November 2003:
|
24
|
-
.IP
|
25
|
-
.br
|
26
|
-
<http://www.w3.org/TR/2003/REC-PNG-20031110/
|
27
|
-
PNG 1.2 specification, July 1999:
|
28
|
-
.IP
|
29
|
-
.br
|
30
|
-
http://www.libpng.org/pub/png
|
31
|
-
.LP
|
32
|
-
PNG 1.0 specification, October 1996:
|
33
|
-
.IP
|
34
|
-
.br
|
35
|
-
RFC 2083
|
36
|
-
.IP
|
37
|
-
.br
|
38
|
-
ftp://ds.internic.net/rfc/rfc2083.txt
|
39
|
-
.br
|
40
|
-
or (as a W3C Recommendation) at
|
41
|
-
.br
|
42
|
-
http://www.w3.org/TR/REC-png.html
|
43
|
-
.SH AUTHORS
|
44
|
-
This man page: Glenn Randers-Pehrson
|
45
|
-
.LP
|
46
|
-
Portable Network Graphics (PNG) Specification (Second Edition)
|
47
|
-
Information technology - Computer graphics and image processing -
|
48
|
-
Portable Network Graphics (PNG): Functional specification.
|
49
|
-
ISO/IEC 15948:2003 (E) (November 10, 2003): David Duce and others.
|
50
|
-
.LP
|
51
|
-
Portable Network Graphics (PNG) Specification Version 1.2 (July 8, 1999):
|
52
|
-
Glenn Randers-Pehrson and others (png-list).
|
53
|
-
.LP
|
54
|
-
Portable Network Graphics (PNG) Specification Version 1.0 (October 1, 1996):
|
55
|
-
Thomas Boutell and others (png-list).
|
56
|
-
.LP
|
57
|
-
|
58
|
-
|
59
|
-
.SH COPYRIGHT NOTICE
|
60
|
-
.LP
|
61
|
-
This man page is Copyright (c) 1998-2006 Glenn Randers-Pehrson. See png.h
|
62
|
-
for conditions of use and distribution.
|
63
|
-
.LP
|
64
|
-
The PNG Specification (Second Edition) is
|
65
|
-
Copyright (c) 2003 W3C. (MIT, ERCIM, Keio), All Rights Reserved.
|
66
|
-
.LP
|
67
|
-
The PNG-1.2 specification is copyright (c) 1999 Glenn Randers-Pehrson.
|
68
|
-
See the specification for conditions of use and distribution.
|
69
|
-
.LP
|
70
|
-
The PNG-1.0 specification is copyright (c) 1996 Massachusetts Institute of
|
71
|
-
Technology. See the specification for conditions of use and distribution.
|
72
|
-
.LP
|
73
|
-
.\" end of man page
|
74
|
-
|
@@ -1,920 +0,0 @@
|
|
1
|
-
++ sed -e 's/need_relink=yes/need_relink=no # no way --tml/'
|
2
|
-
++ mv build/ltmain.temp build/ltmain.sh
|
3
|
-
++ sed -e 's!file /!dont-want-to-use-file!'
|
4
|
-
++ mv configure.temp configure
|
5
|
-
+++ latest --arch=win32 glib pkg-config pixman libpng fontconfig freetype
|
6
|
-
++ DEPS='glib-2.24.2-1 pkg-config-0.23-3 pixman-0.18.4-1 libpng-1.4.0-1 fontconfig-2.8.0-2 freetype-2.3.12-1'
|
7
|
-
++ PKG_CONFIG_PATH=/dummy
|
8
|
-
++ for D in '$DEPS'
|
9
|
-
++ PATH='/devel/dist/win32/glib-2.24.2-1/bin:/opt/MSVS6/VC98/Bin:/opt/MSVS6/Common/MSDev98/Bin:/opt/MSVS6/Common/Tools:/opt/misc/bin:/opt/gnu/bin:/opt/mingw/bin:/opt/svn/bin:/opt/local/bin:/c/Windows/Microsoft.NET/Framework/v3.5:/c/Windows/Microsoft.NET/Framework/v2.0.50727:/opt/xemacs/XEmacs-21.4.22/i586-pc-win32:/bin:/c/Windows/system32:/c/Windows:/c/Windows/System32/Wbem:/c/Windows/System32/WindowsPowerShell/v1.0/:/c/Program Files (x86)/QuickTime/QTSystem/'
|
10
|
-
++ PKG_CONFIG_PATH=/devel/dist/win32/glib-2.24.2-1/lib/pkgconfig:/dummy
|
11
|
-
++ for D in '$DEPS'
|
12
|
-
++ PATH='/devel/dist/win32/pkg-config-0.23-3/bin:/devel/dist/win32/glib-2.24.2-1/bin:/opt/MSVS6/VC98/Bin:/opt/MSVS6/Common/MSDev98/Bin:/opt/MSVS6/Common/Tools:/opt/misc/bin:/opt/gnu/bin:/opt/mingw/bin:/opt/svn/bin:/opt/local/bin:/c/Windows/Microsoft.NET/Framework/v3.5:/c/Windows/Microsoft.NET/Framework/v2.0.50727:/opt/xemacs/XEmacs-21.4.22/i586-pc-win32:/bin:/c/Windows/system32:/c/Windows:/c/Windows/System32/Wbem:/c/Windows/System32/WindowsPowerShell/v1.0/:/c/Program Files (x86)/QuickTime/QTSystem/'
|
13
|
-
++ PKG_CONFIG_PATH=/devel/dist/win32/pkg-config-0.23-3/lib/pkgconfig:/devel/dist/win32/glib-2.24.2-1/lib/pkgconfig:/dummy
|
14
|
-
++ for D in '$DEPS'
|
15
|
-
++ PATH='/devel/dist/win32/pixman-0.18.4-1/bin:/devel/dist/win32/pkg-config-0.23-3/bin:/devel/dist/win32/glib-2.24.2-1/bin:/opt/MSVS6/VC98/Bin:/opt/MSVS6/Common/MSDev98/Bin:/opt/MSVS6/Common/Tools:/opt/misc/bin:/opt/gnu/bin:/opt/mingw/bin:/opt/svn/bin:/opt/local/bin:/c/Windows/Microsoft.NET/Framework/v3.5:/c/Windows/Microsoft.NET/Framework/v2.0.50727:/opt/xemacs/XEmacs-21.4.22/i586-pc-win32:/bin:/c/Windows/system32:/c/Windows:/c/Windows/System32/Wbem:/c/Windows/System32/WindowsPowerShell/v1.0/:/c/Program Files (x86)/QuickTime/QTSystem/'
|
16
|
-
++ PKG_CONFIG_PATH=/devel/dist/win32/pixman-0.18.4-1/lib/pkgconfig:/devel/dist/win32/pkg-config-0.23-3/lib/pkgconfig:/devel/dist/win32/glib-2.24.2-1/lib/pkgconfig:/dummy
|
17
|
-
++ for D in '$DEPS'
|
18
|
-
++ PATH='/devel/dist/win32/libpng-1.4.0-1/bin:/devel/dist/win32/pixman-0.18.4-1/bin:/devel/dist/win32/pkg-config-0.23-3/bin:/devel/dist/win32/glib-2.24.2-1/bin:/opt/MSVS6/VC98/Bin:/opt/MSVS6/Common/MSDev98/Bin:/opt/MSVS6/Common/Tools:/opt/misc/bin:/opt/gnu/bin:/opt/mingw/bin:/opt/svn/bin:/opt/local/bin:/c/Windows/Microsoft.NET/Framework/v3.5:/c/Windows/Microsoft.NET/Framework/v2.0.50727:/opt/xemacs/XEmacs-21.4.22/i586-pc-win32:/bin:/c/Windows/system32:/c/Windows:/c/Windows/System32/Wbem:/c/Windows/System32/WindowsPowerShell/v1.0/:/c/Program Files (x86)/QuickTime/QTSystem/'
|
19
|
-
++ PKG_CONFIG_PATH=/devel/dist/win32/libpng-1.4.0-1/lib/pkgconfig:/devel/dist/win32/pixman-0.18.4-1/lib/pkgconfig:/devel/dist/win32/pkg-config-0.23-3/lib/pkgconfig:/devel/dist/win32/glib-2.24.2-1/lib/pkgconfig:/dummy
|
20
|
-
++ for D in '$DEPS'
|
21
|
-
++ PATH='/devel/dist/win32/fontconfig-2.8.0-2/bin:/devel/dist/win32/libpng-1.4.0-1/bin:/devel/dist/win32/pixman-0.18.4-1/bin:/devel/dist/win32/pkg-config-0.23-3/bin:/devel/dist/win32/glib-2.24.2-1/bin:/opt/MSVS6/VC98/Bin:/opt/MSVS6/Common/MSDev98/Bin:/opt/MSVS6/Common/Tools:/opt/misc/bin:/opt/gnu/bin:/opt/mingw/bin:/opt/svn/bin:/opt/local/bin:/c/Windows/Microsoft.NET/Framework/v3.5:/c/Windows/Microsoft.NET/Framework/v2.0.50727:/opt/xemacs/XEmacs-21.4.22/i586-pc-win32:/bin:/c/Windows/system32:/c/Windows:/c/Windows/System32/Wbem:/c/Windows/System32/WindowsPowerShell/v1.0/:/c/Program Files (x86)/QuickTime/QTSystem/'
|
22
|
-
++ PKG_CONFIG_PATH=/devel/dist/win32/fontconfig-2.8.0-2/lib/pkgconfig:/devel/dist/win32/libpng-1.4.0-1/lib/pkgconfig:/devel/dist/win32/pixman-0.18.4-1/lib/pkgconfig:/devel/dist/win32/pkg-config-0.23-3/lib/pkgconfig:/devel/dist/win32/glib-2.24.2-1/lib/pkgconfig:/dummy
|
23
|
-
++ for D in '$DEPS'
|
24
|
-
++ PATH='/devel/dist/win32/freetype-2.3.12-1/bin:/devel/dist/win32/fontconfig-2.8.0-2/bin:/devel/dist/win32/libpng-1.4.0-1/bin:/devel/dist/win32/pixman-0.18.4-1/bin:/devel/dist/win32/pkg-config-0.23-3/bin:/devel/dist/win32/glib-2.24.2-1/bin:/opt/MSVS6/VC98/Bin:/opt/MSVS6/Common/MSDev98/Bin:/opt/MSVS6/Common/Tools:/opt/misc/bin:/opt/gnu/bin:/opt/mingw/bin:/opt/svn/bin:/opt/local/bin:/c/Windows/Microsoft.NET/Framework/v3.5:/c/Windows/Microsoft.NET/Framework/v2.0.50727:/opt/xemacs/XEmacs-21.4.22/i586-pc-win32:/bin:/c/Windows/system32:/c/Windows:/c/Windows/System32/Wbem:/c/Windows/System32/WindowsPowerShell/v1.0/:/c/Program Files (x86)/QuickTime/QTSystem/'
|
25
|
-
++ PKG_CONFIG_PATH=/devel/dist/win32/freetype-2.3.12-1/lib/pkgconfig:/devel/dist/win32/fontconfig-2.8.0-2/lib/pkgconfig:/devel/dist/win32/libpng-1.4.0-1/lib/pkgconfig:/devel/dist/win32/pixman-0.18.4-1/lib/pkgconfig:/devel/dist/win32/pkg-config-0.23-3/lib/pkgconfig:/devel/dist/win32/glib-2.24.2-1/lib/pkgconfig:/dummy
|
26
|
-
+++ latest --arch=win32 zlib
|
27
|
-
++ ZLIB=zlib-1.2.4-2
|
28
|
-
++ png_REQUIRES=libpng
|
29
|
-
++ CC='gcc -mms-bitfields -mthreads'
|
30
|
-
++ CPPFLAGS=-I/devel/dist/win32/zlib-1.2.4-2/include
|
31
|
-
++ LDFLAGS=-L/devel/dist/win32/zlib-1.2.4-2/lib
|
32
|
-
++ CFLAGS=-O2
|
33
|
-
++ ./configure --disable-static --enable-ft=yes --prefix=c:/devel/target/1c95f04ba92ba301d7056b59ff23aa94
|
34
|
-
checking for a BSD-compatible install... /opt/local/bin/install -c
|
35
|
-
checking whether build environment is sane... yes
|
36
|
-
checking for a thread-safe mkdir -p... /bin/mkdir -p
|
37
|
-
checking for gawk... gawk
|
38
|
-
checking whether make sets $(MAKE)... yes
|
39
|
-
checking build system type... i686-pc-mingw32
|
40
|
-
checking host system type... i686-pc-mingw32
|
41
|
-
checking for as... as
|
42
|
-
checking for dlltool... dlltool
|
43
|
-
checking for objdump... objdump
|
44
|
-
checking for style of include used by make... GNU
|
45
|
-
checking for gcc... gcc -mms-bitfields -mthreads
|
46
|
-
checking whether the C compiler works... yes
|
47
|
-
checking for C compiler default output file name... a.exe
|
48
|
-
checking for suffix of executables... .exe
|
49
|
-
checking whether we are cross compiling... no
|
50
|
-
checking for suffix of object files... o
|
51
|
-
checking whether we are using the GNU C compiler... yes
|
52
|
-
checking whether gcc -mms-bitfields -mthreads accepts -g... yes
|
53
|
-
checking for gcc -mms-bitfields -mthreads option to accept ISO C89... none needed
|
54
|
-
checking dependency style of gcc -mms-bitfields -mthreads... gcc3
|
55
|
-
checking for a sed that does not truncate output... /bin/sed
|
56
|
-
checking for grep that handles long lines and -e... /bin/grep
|
57
|
-
checking for egrep... /bin/grep -E
|
58
|
-
checking for fgrep... /bin/grep -F
|
59
|
-
checking for ld used by gcc -mms-bitfields -mthreads... c:/opt/mingw/mingw32/bin/ld.exe
|
60
|
-
checking if the linker (c:/opt/mingw/mingw32/bin/ld.exe) is GNU ld... yes
|
61
|
-
checking for BSD- or MS-compatible name lister (nm)... /opt/mingw/bin/nm
|
62
|
-
checking the name lister (/opt/mingw/bin/nm) interface... BSD nm
|
63
|
-
checking whether ln -s works... yes
|
64
|
-
checking the maximum length of command line arguments... 8192
|
65
|
-
checking whether the shell understands some XSI constructs... yes
|
66
|
-
checking whether the shell understands "+="... yes
|
67
|
-
checking for c:/opt/mingw/mingw32/bin/ld.exe option to reload object files... -r
|
68
|
-
checking for objdump... (cached) objdump
|
69
|
-
checking how to recognize dependent libraries... file_magic file format pei*-i386(.*architecture: i386)?
|
70
|
-
checking for ar... ar
|
71
|
-
checking for strip... strip
|
72
|
-
checking for ranlib... ranlib
|
73
|
-
checking command to parse /opt/mingw/bin/nm output from gcc -mms-bitfields -mthreads object... ok
|
74
|
-
checking how to run the C preprocessor... gcc -mms-bitfields -mthreads -E
|
75
|
-
checking for ANSI C header files... yes
|
76
|
-
checking for sys/types.h... yes
|
77
|
-
checking for sys/stat.h... yes
|
78
|
-
checking for stdlib.h... yes
|
79
|
-
checking for string.h... yes
|
80
|
-
checking for memory.h... yes
|
81
|
-
checking for strings.h... yes
|
82
|
-
checking for inttypes.h... yes
|
83
|
-
checking for stdint.h... yes
|
84
|
-
checking for unistd.h... yes
|
85
|
-
checking for dlfcn.h... no
|
86
|
-
checking for objdir... .libs
|
87
|
-
checking if gcc -mms-bitfields -mthreads supports -fno-rtti -fno-exceptions... no
|
88
|
-
checking for gcc -mms-bitfields -mthreads option to produce PIC... -DDLL_EXPORT -DPIC
|
89
|
-
checking if gcc -mms-bitfields -mthreads PIC flag -DDLL_EXPORT -DPIC works... yes
|
90
|
-
checking if gcc -mms-bitfields -mthreads static flag -static works... yes
|
91
|
-
checking if gcc -mms-bitfields -mthreads supports -c -o file.o... yes
|
92
|
-
checking if gcc -mms-bitfields -mthreads supports -c -o file.o... (cached) yes
|
93
|
-
checking whether the gcc -mms-bitfields -mthreads linker (c:/opt/mingw/mingw32/bin/ld.exe) supports shared libraries... yes
|
94
|
-
checking whether -lc should be explicitly linked in... yes
|
95
|
-
checking dynamic linker characteristics... Win32 ld.exe
|
96
|
-
checking how to hardcode library paths into programs... immediate
|
97
|
-
checking whether stripping libraries is possible... yes
|
98
|
-
checking if libtool supports shared libraries... yes
|
99
|
-
checking whether to build shared libraries... yes
|
100
|
-
checking whether to build static libraries... no
|
101
|
-
checking for bash... /bin/bash
|
102
|
-
checking if dolt supports this host... no, falling back to libtool
|
103
|
-
checking for pkg-config... /devel/dist/win32/pkg-config-0.23-3/bin/pkg-config
|
104
|
-
checking pkg-config is at least version 0.9.0... yes
|
105
|
-
checking whether to build gtk-doc documentation... no
|
106
|
-
checking for gtkdoc-check... no
|
107
|
-
checking for find... /bin/find
|
108
|
-
checking for xargs... /bin/xargs
|
109
|
-
checking for gcc... (cached) gcc -mms-bitfields -mthreads
|
110
|
-
checking whether we are using the GNU C compiler... (cached) yes
|
111
|
-
checking whether gcc -mms-bitfields -mthreads accepts -g... (cached) yes
|
112
|
-
checking for gcc -mms-bitfields -mthreads option to accept ISO C89... (cached) none needed
|
113
|
-
checking dependency style of gcc -mms-bitfields -mthreads... (cached) gcc3
|
114
|
-
checking how to run the C preprocessor... gcc -mms-bitfields -mthreads -E
|
115
|
-
checking for g++... g++
|
116
|
-
checking whether we are using the GNU C++ compiler... yes
|
117
|
-
checking whether g++ accepts -g... yes
|
118
|
-
checking dependency style of g++... gcc3
|
119
|
-
checking whether we are using the GNU C++ compiler... (cached) yes
|
120
|
-
checking whether g++ accepts -g... (cached) yes
|
121
|
-
checking dependency style of g++... (cached) gcc3
|
122
|
-
checking how to run the C++ preprocessor... g++ -E
|
123
|
-
checking for ld used by g++... c:/opt/mingw/mingw32/bin/ld.exe
|
124
|
-
checking if the linker (c:/opt/mingw/mingw32/bin/ld.exe) is GNU ld... yes
|
125
|
-
checking whether the g++ linker (c:/opt/mingw/mingw32/bin/ld.exe) supports shared libraries... yes
|
126
|
-
checking for g++ option to produce PIC... -DDLL_EXPORT -DPIC
|
127
|
-
checking if g++ PIC flag -DDLL_EXPORT -DPIC works... yes
|
128
|
-
checking if g++ static flag -static works... yes
|
129
|
-
checking if g++ supports -c -o file.o... yes
|
130
|
-
checking if g++ supports -c -o file.o... (cached) yes
|
131
|
-
checking whether the g++ linker (c:/opt/mingw/mingw32/bin/ld.exe) supports shared libraries... yes
|
132
|
-
checking dynamic linker characteristics... Win32 ld.exe
|
133
|
-
checking how to hardcode library paths into programs... immediate
|
134
|
-
checking whether gcc -mms-bitfields -mthreads and cc understand -c and -o together... yes
|
135
|
-
checking for inline... inline
|
136
|
-
checking for pkg-config... (cached) /devel/dist/win32/pkg-config-0.23-3/bin/pkg-config
|
137
|
-
checking pkg-config is at least version 0.9.0... yes
|
138
|
-
checking whether byte ordering is bigendian... no
|
139
|
-
checking whether float word ordering is bigendian... no
|
140
|
-
checking for native atomic primitives... none
|
141
|
-
checking whether atomic ops require a memory barrier... no
|
142
|
-
checking for native Win32... yes
|
143
|
-
checking for Sun Solaris (non-POSIX ctime_r)... no
|
144
|
-
checking for cos in -lm... yes
|
145
|
-
checking for sched_yield in -lrt... no
|
146
|
-
checking for stdint.h... (cached) yes
|
147
|
-
checking for inttypes.h... (cached) yes
|
148
|
-
checking sys/int_types.h usability... no
|
149
|
-
checking sys/int_types.h presence... no
|
150
|
-
checking for sys/int_types.h... no
|
151
|
-
checking for uint64_t... yes
|
152
|
-
checking for uint128_t... no
|
153
|
-
checking fcntl.h usability... yes
|
154
|
-
checking fcntl.h presence... yes
|
155
|
-
checking for fcntl.h... yes
|
156
|
-
checking for unistd.h... (cached) yes
|
157
|
-
checking signal.h usability... yes
|
158
|
-
checking signal.h presence... yes
|
159
|
-
checking for signal.h... yes
|
160
|
-
checking for sys/stat.h... (cached) yes
|
161
|
-
checking sys/socket.h usability... no
|
162
|
-
checking sys/socket.h presence... no
|
163
|
-
checking for sys/socket.h... no
|
164
|
-
checking sys/poll.h usability... no
|
165
|
-
checking sys/poll.h presence... no
|
166
|
-
checking for sys/poll.h... no
|
167
|
-
checking sys/un.h usability... no
|
168
|
-
checking sys/un.h presence... no
|
169
|
-
checking for sys/un.h... no
|
170
|
-
checking sched.h usability... no
|
171
|
-
checking sched.h presence... no
|
172
|
-
checking for sched.h... no
|
173
|
-
checking fenv.h usability... yes
|
174
|
-
checking fenv.h presence... yes
|
175
|
-
checking for fenv.h... yes
|
176
|
-
checking for feenableexcept... no
|
177
|
-
checking for fedisableexcept... no
|
178
|
-
checking libgen.h usability... yes
|
179
|
-
checking libgen.h presence... yes
|
180
|
-
checking for libgen.h... yes
|
181
|
-
checking byteswap.h usability... no
|
182
|
-
checking byteswap.h presence... no
|
183
|
-
checking for byteswap.h... no
|
184
|
-
checking for signal.h... (cached) yes
|
185
|
-
checking setjmp.h usability... yes
|
186
|
-
checking setjmp.h presence... yes
|
187
|
-
checking for setjmp.h... yes
|
188
|
-
checking for vasnprintf... no
|
189
|
-
checking for link... no
|
190
|
-
checking for ctime_r... no
|
191
|
-
checking for drand48... no
|
192
|
-
checking for flockfile... no
|
193
|
-
checking windows.h usability... yes
|
194
|
-
checking windows.h presence... yes
|
195
|
-
checking for windows.h... yes
|
196
|
-
checking for supported warning flags...
|
197
|
-
checking whether gcc -mms-bitfields -mthreads supports -Wall... no
|
198
|
-
checking whether gcc -mms-bitfields -mthreads supports -Wextra... no
|
199
|
-
checking whether gcc -mms-bitfields -mthreads supports -Wsign-compare... no
|
200
|
-
checking whether gcc -mms-bitfields -mthreads supports -Werror-implicit-function-declaration... no
|
201
|
-
checking whether gcc -mms-bitfields -mthreads supports -Wpointer-arith... no
|
202
|
-
checking whether gcc -mms-bitfields -mthreads supports -Wwrite-strings... no
|
203
|
-
checking whether gcc -mms-bitfields -mthreads supports -Wstrict-prototypes... no
|
204
|
-
checking whether gcc -mms-bitfields -mthreads supports -Wmissing-prototypes... no
|
205
|
-
checking whether gcc -mms-bitfields -mthreads supports -Wmissing-declarations... no
|
206
|
-
checking whether gcc -mms-bitfields -mthreads supports -Wnested-externs... no
|
207
|
-
checking whether gcc -mms-bitfields -mthreads supports -Wpacked... no
|
208
|
-
checking whether gcc -mms-bitfields -mthreads supports -Wswitch-enum... no
|
209
|
-
checking whether gcc -mms-bitfields -mthreads supports -Wmissing-format-attribute... no
|
210
|
-
checking whether gcc -mms-bitfields -mthreads supports -Wstrict-aliasing=2... no
|
211
|
-
checking whether gcc -mms-bitfields -mthreads supports -Winit-self... no
|
212
|
-
checking whether gcc -mms-bitfields -mthreads supports -Wunsafe-loop-optimizations... no
|
213
|
-
checking whether gcc -mms-bitfields -mthreads supports -Wdeclaration-after-statement... no
|
214
|
-
checking whether gcc -mms-bitfields -mthreads supports -Wold-style-definition... no
|
215
|
-
checking whether gcc -mms-bitfields -mthreads supports -Wno-missing-field-initializers... no
|
216
|
-
checking whether gcc -mms-bitfields -mthreads supports -Wno-unused-parameter... no
|
217
|
-
checking whether gcc -mms-bitfields -mthreads supports -Wno-attributes... no
|
218
|
-
checking whether gcc -mms-bitfields -mthreads supports -Wno-long-long... no
|
219
|
-
checking whether gcc -mms-bitfields -mthreads supports -Winline... no
|
220
|
-
checking whether gcc -mms-bitfields -mthreads supports -fno-strict-aliasing... no
|
221
|
-
checking whether gcc -mms-bitfields -mthreads supports -fno-common... no
|
222
|
-
checking whether gcc -mms-bitfields -mthreads supports -Wp,-D_FORTIFY_SOURCE=2... no
|
223
|
-
checking which warning flags were supported...
|
224
|
-
checking how to enable unused result warnings...
|
225
|
-
checking how to allow undefined symbols in shared libraries used by test suite... checking whether gcc -mms-bitfields -mthreads supports -Wl,--allow-shlib-undefined... no
|
226
|
-
|
227
|
-
checking for VALGRIND... no
|
228
|
-
no
|
229
|
-
checking for compress in -lz... yes
|
230
|
-
checking zlib.h usability... yes
|
231
|
-
checking zlib.h presence... yes
|
232
|
-
checking for zlib.h... yes
|
233
|
-
checking for X... no
|
234
|
-
checking for cairo's Xlib surface backend feature...
|
235
|
-
checking for xlib... no
|
236
|
-
no
|
237
|
-
checking whether cairo's Xlib surface backend feature could be enabled... no (requires X development libraries)
|
238
|
-
checking for cairo's Xlib Xrender surface backend feature...
|
239
|
-
checking whether cairo's Xlib Xrender surface backend feature could be enabled... no (requires --enable-xlib)
|
240
|
-
checking for cairo's Quartz surface backend feature...
|
241
|
-
checking ApplicationServices/ApplicationServices.h usability... no
|
242
|
-
checking ApplicationServices/ApplicationServices.h presence... no
|
243
|
-
checking for ApplicationServices/ApplicationServices.h... no
|
244
|
-
checking CoreGraphics/CoreGraphics.h usability... no
|
245
|
-
checking CoreGraphics/CoreGraphics.h presence... no
|
246
|
-
checking for CoreGraphics/CoreGraphics.h... no
|
247
|
-
checking whether cairo's Quartz surface backend feature could be enabled... no (requires CoreGraphics framework)
|
248
|
-
checking for cairo's Quartz font backend feature...
|
249
|
-
checking whether cairo's Quartz font backend feature could be enabled... no (requires CoreGraphics framework)
|
250
|
-
checking for cairo's Microsoft Windows surface backend feature...
|
251
|
-
checking whether cairo's Microsoft Windows surface backend feature could be enabled... yes
|
252
|
-
checking for cairo's Microsoft Windows font backend feature...
|
253
|
-
checking whether cairo's Microsoft Windows font backend feature could be enabled... yes
|
254
|
-
checking for gs... no
|
255
|
-
configure: WARNING: Win32 Printing backend will not be tested since ghostscript is not available
|
256
|
-
checking for cairo's PNG functions feature...
|
257
|
-
checking for png... yes
|
258
|
-
checking whether cairo's PNG functions feature could be enabled... yes
|
259
|
-
checking for cairo's FreeType font backend feature...
|
260
|
-
checking for FONTCONFIG... yes
|
261
|
-
checking for FcFini... yes
|
262
|
-
checking for FREETYPE... yes
|
263
|
-
checking whether cairo's FreeType font backend feature could be enabled... yes
|
264
|
-
checking for FT_Bitmap_Size.y_ppem... yes
|
265
|
-
checking for FT_GlyphSlot_Embolden... yes
|
266
|
-
checking for FT_Load_Sfnt_Table... yes
|
267
|
-
checking for FT_Library_SetLcdFilter... yes
|
268
|
-
checking pthread.h usability... no
|
269
|
-
checking pthread.h presence... no
|
270
|
-
checking for pthread.h... no
|
271
|
-
checking for cairo's PostScript surface backend feature...
|
272
|
-
checking whether cairo's PostScript surface backend feature could be enabled... yes
|
273
|
-
checking for gs... no
|
274
|
-
configure: WARNING: PS backend will not be tested since ghostscript is not available
|
275
|
-
checking for LIBSPECTRE... no
|
276
|
-
no
|
277
|
-
checking for cairo's PDF surface backend feature...
|
278
|
-
checking whether cairo's PDF surface backend feature could be enabled... yes
|
279
|
-
checking for POPPLER... no
|
280
|
-
no
|
281
|
-
configure: WARNING: PDF backend will not be tested since poppler >= 0.9.2 is not available
|
282
|
-
checking for cairo's SVG surface backend feature...
|
283
|
-
checking whether cairo's SVG surface backend feature could be enabled... yes
|
284
|
-
checking for LIBRSVG... no
|
285
|
-
no
|
286
|
-
configure: WARNING: SVG backend will not be tested since librsvg >= 2.15.0 is not available
|
287
|
-
checking for cairo's image surface backend feature...
|
288
|
-
checking for pixman... yes
|
289
|
-
checking whether cairo's image surface backend feature could be enabled... yes
|
290
|
-
checking for cairo's user font backend feature...
|
291
|
-
checking whether cairo's user font backend feature could be enabled... yes
|
292
|
-
checking for gtk... no
|
293
|
-
no
|
294
|
-
configure: creating ./config.status
|
295
|
-
config.status: creating src/cairo.pc
|
296
|
-
config.status: creating cairo-uninstalled.pc
|
297
|
-
config.status: creating src/cairo-win32.pc
|
298
|
-
config.status: creating cairo-win32-uninstalled.pc
|
299
|
-
config.status: creating src/cairo-win32-font.pc
|
300
|
-
config.status: creating cairo-win32-font-uninstalled.pc
|
301
|
-
config.status: creating src/cairo-png.pc
|
302
|
-
config.status: creating cairo-png-uninstalled.pc
|
303
|
-
config.status: creating src/cairo-ft.pc
|
304
|
-
config.status: creating cairo-ft-uninstalled.pc
|
305
|
-
config.status: creating src/cairo-ps.pc
|
306
|
-
config.status: creating cairo-ps-uninstalled.pc
|
307
|
-
config.status: creating src/cairo-pdf.pc
|
308
|
-
config.status: creating cairo-pdf-uninstalled.pc
|
309
|
-
config.status: creating src/cairo-svg.pc
|
310
|
-
config.status: creating cairo-svg-uninstalled.pc
|
311
|
-
config.status: creating Makefile
|
312
|
-
config.status: creating boilerplate/Makefile
|
313
|
-
config.status: creating src/Makefile
|
314
|
-
config.status: creating test/Makefile
|
315
|
-
config.status: creating test/pdiff/Makefile
|
316
|
-
config.status: creating perf/Makefile
|
317
|
-
config.status: creating util/Makefile
|
318
|
-
config.status: creating doc/Makefile
|
319
|
-
config.status: creating doc/public/Makefile
|
320
|
-
config.status: creating config.h
|
321
|
-
config.status: executing depfiles commands
|
322
|
-
config.status: executing libtool commands
|
323
|
-
config.status: executing ./build/Makefile.win32.features commands
|
324
|
-
config.status: creating ./build/Makefile.win32.features
|
325
|
-
config.status: ./build/Makefile.win32.features is unchanged
|
326
|
-
config.status: executing ./src/Makefile.am.features commands
|
327
|
-
config.status: creating ./src/Makefile.am.features
|
328
|
-
config.status: ./src/Makefile.am.features is unchanged
|
329
|
-
config.status: executing ./src/Makefile.win32.features commands
|
330
|
-
config.status: creating ./src/Makefile.win32.features
|
331
|
-
config.status: ./src/Makefile.win32.features is unchanged
|
332
|
-
config.status: executing ./boilerplate/Makefile.am.features commands
|
333
|
-
config.status: creating ./boilerplate/Makefile.am.features
|
334
|
-
config.status: ./boilerplate/Makefile.am.features is unchanged
|
335
|
-
config.status: executing ./boilerplate/Makefile.win32.features commands
|
336
|
-
config.status: creating ./boilerplate/Makefile.win32.features
|
337
|
-
config.status: ./boilerplate/Makefile.win32.features is unchanged
|
338
|
-
config.status: executing src/cairo-features.h commands
|
339
|
-
config.status: creating src/cairo-features.h
|
340
|
-
config.status: executing ./src/cairo-supported-features.h commands
|
341
|
-
config.status: creating ./src/cairo-supported-features.h
|
342
|
-
config.status: ./src/cairo-supported-features.h is unchanged
|
343
|
-
config.status: executing ./build/Makefile.win32.features-h commands
|
344
|
-
config.status: creating ./build/Makefile.win32.features-h
|
345
|
-
config.status: ./build/Makefile.win32.features-h is unchanged
|
346
|
-
|
347
|
-
cairo (version 1.8.10 [release]) will be compiled with:
|
348
|
-
|
349
|
-
The following surface backends:
|
350
|
-
Image: yes (always builtin)
|
351
|
-
Xlib: no (requires X development libraries)
|
352
|
-
Xlib Xrender: no (requires --enable-xlib)
|
353
|
-
Quartz: no (requires CoreGraphics framework)
|
354
|
-
Quartz-image: no (disabled, use --enable-quartz-image to enable)
|
355
|
-
XCB: no (disabled, use --enable-xcb to enable)
|
356
|
-
Win32: yes
|
357
|
-
OS2: no (disabled, use --enable-os2 to enable)
|
358
|
-
PostScript: yes
|
359
|
-
PDF: yes
|
360
|
-
SVG: yes
|
361
|
-
glitz: no (disabled, use --enable-glitz to enable)
|
362
|
-
BeOS: no (disabled, use --enable-beos to enable)
|
363
|
-
DirectFB: no (disabled, use --enable-directfb to enable)
|
364
|
-
|
365
|
-
The following font backends:
|
366
|
-
User: yes (always builtin)
|
367
|
-
FreeType: yes
|
368
|
-
Win32: yes
|
369
|
-
Quartz: no (requires CoreGraphics framework)
|
370
|
-
|
371
|
-
The following functions:
|
372
|
-
PNG functions: yes
|
373
|
-
|
374
|
-
And the following internal features:
|
375
|
-
gcov support: no
|
376
|
-
test surfaces: no (disabled, use --enable-test-surfaces to enable)
|
377
|
-
ps testing: no (requires ghostscript)
|
378
|
-
pdf testing: no (requires poppler-glib >= 0.9.2)
|
379
|
-
svg testing: no (requires librsvg-2.0 >= 2.15.0)
|
380
|
-
win32 printing testing: no (requires ghostscript)
|
381
|
-
|
382
|
-
|
383
|
-
++ make -j3 zips
|
384
|
-
make install-recursive
|
385
|
-
make[1]: Entering directory `/devel/src/freedesktop/cairo/1.8.10-4_win32'
|
386
|
-
Making install in src
|
387
|
-
make[2]: Entering directory `/devel/src/freedesktop/cairo/1.8.10-4_win32/src'
|
388
|
-
make install-am
|
389
|
-
make[3]: Entering directory `/devel/src/freedesktop/cairo/1.8.10-4_win32/src'
|
390
|
-
/bin/sh ../libtool --tag=CC --mode=compile gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-analysis-surface.lo -MD -MP -MF .deps/cairo-analysis-surface.Tpo -c -o cairo-analysis-surface.lo cairo-analysis-surface.c
|
391
|
-
/bin/sh ../libtool --tag=CC --mode=compile gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-arc.lo -MD -MP -MF .deps/cairo-arc.Tpo -c -o cairo-arc.lo cairo-arc.c
|
392
|
-
/bin/sh ../libtool --tag=CC --mode=compile gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-array.lo -MD -MP -MF .deps/cairo-array.Tpo -c -o cairo-array.lo cairo-array.c
|
393
|
-
libtool: compile: gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-analysis-surface.lo -MD -MP -MF .deps/cairo-analysis-surface.Tpo -c cairo-analysis-surface.c -DDLL_EXPORT -DPIC -o .libs/cairo-analysis-surface.o
|
394
|
-
libtool: compile: gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-arc.lo -MD -MP -MF .deps/cairo-arc.Tpo -c cairo-arc.c -DDLL_EXPORT -DPIC -o .libs/cairo-arc.o
|
395
|
-
libtool: compile: gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-array.lo -MD -MP -MF .deps/cairo-array.Tpo -c cairo-array.c -DDLL_EXPORT -DPIC -o .libs/cairo-array.o
|
396
|
-
mv -f .deps/cairo-arc.Tpo .deps/cairo-arc.Plo
|
397
|
-
/bin/sh ../libtool --tag=CC --mode=compile gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-atomic.lo -MD -MP -MF .deps/cairo-atomic.Tpo -c -o cairo-atomic.lo cairo-atomic.c
|
398
|
-
mv -f .deps/cairo-array.Tpo .deps/cairo-array.Plo
|
399
|
-
/bin/sh ../libtool --tag=CC --mode=compile gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-base85-stream.lo -MD -MP -MF .deps/cairo-base85-stream.Tpo -c -o cairo-base85-stream.lo cairo-base85-stream.c
|
400
|
-
mv -f .deps/cairo-analysis-surface.Tpo .deps/cairo-analysis-surface.Plo
|
401
|
-
/bin/sh ../libtool --tag=CC --mode=compile gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-bentley-ottmann.lo -MD -MP -MF .deps/cairo-bentley-ottmann.Tpo -c -o cairo-bentley-ottmann.lo cairo-bentley-ottmann.c
|
402
|
-
libtool: compile: gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-atomic.lo -MD -MP -MF .deps/cairo-atomic.Tpo -c cairo-atomic.c -DDLL_EXPORT -DPIC -o .libs/cairo-atomic.o
|
403
|
-
libtool: compile: gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-base85-stream.lo -MD -MP -MF .deps/cairo-base85-stream.Tpo -c cairo-base85-stream.c -DDLL_EXPORT -DPIC -o .libs/cairo-base85-stream.o
|
404
|
-
libtool: compile: gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-bentley-ottmann.lo -MD -MP -MF .deps/cairo-bentley-ottmann.Tpo -c cairo-bentley-ottmann.c -DDLL_EXPORT -DPIC -o .libs/cairo-bentley-ottmann.o
|
405
|
-
mv -f .deps/cairo-atomic.Tpo .deps/cairo-atomic.Plo
|
406
|
-
/bin/sh ../libtool --tag=CC --mode=compile gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo.lo -MD -MP -MF .deps/cairo.Tpo -c -o cairo.lo cairo.c
|
407
|
-
mv -f .deps/cairo-base85-stream.Tpo .deps/cairo-base85-stream.Plo
|
408
|
-
/bin/sh ../libtool --tag=CC --mode=compile gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-cache.lo -MD -MP -MF .deps/cairo-cache.Tpo -c -o cairo-cache.lo cairo-cache.c
|
409
|
-
libtool: compile: gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo.lo -MD -MP -MF .deps/cairo.Tpo -c cairo.c -DDLL_EXPORT -DPIC -o .libs/cairo.o
|
410
|
-
libtool: compile: gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-cache.lo -MD -MP -MF .deps/cairo-cache.Tpo -c cairo-cache.c -DDLL_EXPORT -DPIC -o .libs/cairo-cache.o
|
411
|
-
mv -f .deps/cairo-bentley-ottmann.Tpo .deps/cairo-bentley-ottmann.Plo
|
412
|
-
/bin/sh ../libtool --tag=CC --mode=compile gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-clip.lo -MD -MP -MF .deps/cairo-clip.Tpo -c -o cairo-clip.lo cairo-clip.c
|
413
|
-
libtool: compile: gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-clip.lo -MD -MP -MF .deps/cairo-clip.Tpo -c cairo-clip.c -DDLL_EXPORT -DPIC -o .libs/cairo-clip.o
|
414
|
-
mv -f .deps/cairo-cache.Tpo .deps/cairo-cache.Plo
|
415
|
-
/bin/sh ../libtool --tag=CC --mode=compile gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-color.lo -MD -MP -MF .deps/cairo-color.Tpo -c -o cairo-color.lo cairo-color.c
|
416
|
-
libtool: compile: gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-color.lo -MD -MP -MF .deps/cairo-color.Tpo -c cairo-color.c -DDLL_EXPORT -DPIC -o .libs/cairo-color.o
|
417
|
-
mv -f .deps/cairo.Tpo .deps/cairo.Plo
|
418
|
-
/bin/sh ../libtool --tag=CC --mode=compile gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-debug.lo -MD -MP -MF .deps/cairo-debug.Tpo -c -o cairo-debug.lo cairo-debug.c
|
419
|
-
mv -f .deps/cairo-clip.Tpo .deps/cairo-clip.Plo
|
420
|
-
/bin/sh ../libtool --tag=CC --mode=compile gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-fixed.lo -MD -MP -MF .deps/cairo-fixed.Tpo -c -o cairo-fixed.lo cairo-fixed.c
|
421
|
-
mv -f .deps/cairo-color.Tpo .deps/cairo-color.Plo
|
422
|
-
/bin/sh ../libtool --tag=CC --mode=compile gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-font-face.lo -MD -MP -MF .deps/cairo-font-face.Tpo -c -o cairo-font-face.lo cairo-font-face.c
|
423
|
-
libtool: compile: gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-debug.lo -MD -MP -MF .deps/cairo-debug.Tpo -c cairo-debug.c -DDLL_EXPORT -DPIC -o .libs/cairo-debug.o
|
424
|
-
libtool: compile: gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-fixed.lo -MD -MP -MF .deps/cairo-fixed.Tpo -c cairo-fixed.c -DDLL_EXPORT -DPIC -o .libs/cairo-fixed.o
|
425
|
-
libtool: compile: gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-font-face.lo -MD -MP -MF .deps/cairo-font-face.Tpo -c cairo-font-face.c -DDLL_EXPORT -DPIC -o .libs/cairo-font-face.o
|
426
|
-
mv -f .deps/cairo-debug.Tpo .deps/cairo-debug.Plo
|
427
|
-
/bin/sh ../libtool --tag=CC --mode=compile gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-font-face-twin.lo -MD -MP -MF .deps/cairo-font-face-twin.Tpo -c -o cairo-font-face-twin.lo cairo-font-face-twin.c
|
428
|
-
mv -f .deps/cairo-fixed.Tpo .deps/cairo-fixed.Plo
|
429
|
-
/bin/sh ../libtool --tag=CC --mode=compile gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-font-face-twin-data.lo -MD -MP -MF .deps/cairo-font-face-twin-data.Tpo -c -o cairo-font-face-twin-data.lo cairo-font-face-twin-data.c
|
430
|
-
libtool: compile: gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-font-face-twin.lo -MD -MP -MF .deps/cairo-font-face-twin.Tpo -c cairo-font-face-twin.c -DDLL_EXPORT -DPIC -o .libs/cairo-font-face-twin.o
|
431
|
-
mv -f .deps/cairo-font-face.Tpo .deps/cairo-font-face.Plo
|
432
|
-
/bin/sh ../libtool --tag=CC --mode=compile gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-font-options.lo -MD -MP -MF .deps/cairo-font-options.Tpo -c -o cairo-font-options.lo cairo-font-options.c
|
433
|
-
libtool: compile: gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-font-face-twin-data.lo -MD -MP -MF .deps/cairo-font-face-twin-data.Tpo -c cairo-font-face-twin-data.c -DDLL_EXPORT -DPIC -o .libs/cairo-font-face-twin-data.o
|
434
|
-
libtool: compile: gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-font-options.lo -MD -MP -MF .deps/cairo-font-options.Tpo -c cairo-font-options.c -DDLL_EXPORT -DPIC -o .libs/cairo-font-options.o
|
435
|
-
mv -f .deps/cairo-font-face-twin.Tpo .deps/cairo-font-face-twin.Plo
|
436
|
-
/bin/sh ../libtool --tag=CC --mode=compile gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-freelist.lo -MD -MP -MF .deps/cairo-freelist.Tpo -c -o cairo-freelist.lo cairo-freelist.c
|
437
|
-
mv -f .deps/cairo-font-face-twin-data.Tpo .deps/cairo-font-face-twin-data.Plo
|
438
|
-
/bin/sh ../libtool --tag=CC --mode=compile gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-gstate.lo -MD -MP -MF .deps/cairo-gstate.Tpo -c -o cairo-gstate.lo cairo-gstate.c
|
439
|
-
libtool: compile: gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-freelist.lo -MD -MP -MF .deps/cairo-freelist.Tpo -c cairo-freelist.c -DDLL_EXPORT -DPIC -o .libs/cairo-freelist.o
|
440
|
-
mv -f .deps/cairo-font-options.Tpo .deps/cairo-font-options.Plo
|
441
|
-
/bin/sh ../libtool --tag=CC --mode=compile gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-hash.lo -MD -MP -MF .deps/cairo-hash.Tpo -c -o cairo-hash.lo cairo-hash.c
|
442
|
-
libtool: compile: gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-gstate.lo -MD -MP -MF .deps/cairo-gstate.Tpo -c cairo-gstate.c -DDLL_EXPORT -DPIC -o .libs/cairo-gstate.o
|
443
|
-
libtool: compile: gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-hash.lo -MD -MP -MF .deps/cairo-hash.Tpo -c cairo-hash.c -DDLL_EXPORT -DPIC -o .libs/cairo-hash.o
|
444
|
-
mv -f .deps/cairo-freelist.Tpo .deps/cairo-freelist.Plo
|
445
|
-
/bin/sh ../libtool --tag=CC --mode=compile gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-hull.lo -MD -MP -MF .deps/cairo-hull.Tpo -c -o cairo-hull.lo cairo-hull.c
|
446
|
-
libtool: compile: gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-hull.lo -MD -MP -MF .deps/cairo-hull.Tpo -c cairo-hull.c -DDLL_EXPORT -DPIC -o .libs/cairo-hull.o
|
447
|
-
mv -f .deps/cairo-hash.Tpo .deps/cairo-hash.Plo
|
448
|
-
/bin/sh ../libtool --tag=CC --mode=compile gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-image-surface.lo -MD -MP -MF .deps/cairo-image-surface.Tpo -c -o cairo-image-surface.lo cairo-image-surface.c
|
449
|
-
mv -f .deps/cairo-gstate.Tpo .deps/cairo-gstate.Plo
|
450
|
-
/bin/sh ../libtool --tag=CC --mode=compile gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-lzw.lo -MD -MP -MF .deps/cairo-lzw.Tpo -c -o cairo-lzw.lo cairo-lzw.c
|
451
|
-
libtool: compile: gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-image-surface.lo -MD -MP -MF .deps/cairo-image-surface.Tpo -c cairo-image-surface.c -DDLL_EXPORT -DPIC -o .libs/cairo-image-surface.o
|
452
|
-
mv -f .deps/cairo-hull.Tpo .deps/cairo-hull.Plo
|
453
|
-
/bin/sh ../libtool --tag=CC --mode=compile gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-matrix.lo -MD -MP -MF .deps/cairo-matrix.Tpo -c -o cairo-matrix.lo cairo-matrix.c
|
454
|
-
libtool: compile: gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-lzw.lo -MD -MP -MF .deps/cairo-lzw.Tpo -c cairo-lzw.c -DDLL_EXPORT -DPIC -o .libs/cairo-lzw.o
|
455
|
-
libtool: compile: gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-matrix.lo -MD -MP -MF .deps/cairo-matrix.Tpo -c cairo-matrix.c -DDLL_EXPORT -DPIC -o .libs/cairo-matrix.o
|
456
|
-
mv -f .deps/cairo-image-surface.Tpo .deps/cairo-image-surface.Plo
|
457
|
-
mv -f .deps/cairo-lzw.Tpo .deps/cairo-lzw.Plo
|
458
|
-
/bin/sh ../libtool --tag=CC --mode=compile gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-meta-surface.lo -MD -MP -MF .deps/cairo-meta-surface.Tpo -c -o cairo-meta-surface.lo cairo-meta-surface.c
|
459
|
-
/bin/sh ../libtool --tag=CC --mode=compile gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-misc.lo -MD -MP -MF .deps/cairo-misc.Tpo -c -o cairo-misc.lo cairo-misc.c
|
460
|
-
mv -f .deps/cairo-matrix.Tpo .deps/cairo-matrix.Plo
|
461
|
-
/bin/sh ../libtool --tag=CC --mode=compile gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-mutex.lo -MD -MP -MF .deps/cairo-mutex.Tpo -c -o cairo-mutex.lo cairo-mutex.c
|
462
|
-
libtool: compile: gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-meta-surface.lo -MD -MP -MF .deps/cairo-meta-surface.Tpo -c cairo-meta-surface.c -DDLL_EXPORT -DPIC -o .libs/cairo-meta-surface.o
|
463
|
-
libtool: compile: gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-misc.lo -MD -MP -MF .deps/cairo-misc.Tpo -c cairo-misc.c -DDLL_EXPORT -DPIC -o .libs/cairo-misc.o
|
464
|
-
libtool: compile: gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-mutex.lo -MD -MP -MF .deps/cairo-mutex.Tpo -c cairo-mutex.c -DDLL_EXPORT -DPIC -o .libs/cairo-mutex.o
|
465
|
-
cairo-misc.c:611:1: warning: "WINVER" redefined
|
466
|
-
In file included from c:\opt\mingw\bin\../lib/gcc/mingw32/4.4.0/../../../../include/windows.h:48,
|
467
|
-
from cairo-mutex-impl-private.h:195,
|
468
|
-
from cairo-mutex-type-private.h:45,
|
469
|
-
from cairo-scaled-font-private.h:44,
|
470
|
-
from cairoint.h:354,
|
471
|
-
from cairo-misc.c:41:
|
472
|
-
c:\opt\mingw\bin\../lib/gcc/mingw32/4.4.0/../../../../include/windef.h:12:1: warning: this is the location of the previous definition
|
473
|
-
mv -f .deps/cairo-misc.Tpo .deps/cairo-misc.Plo
|
474
|
-
/bin/sh ../libtool --tag=CC --mode=compile gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-output-stream.lo -MD -MP -MF .deps/cairo-output-stream.Tpo -c -o cairo-output-stream.lo cairo-output-stream.c
|
475
|
-
mv -f .deps/cairo-meta-surface.Tpo .deps/cairo-meta-surface.Plo
|
476
|
-
mv -f .deps/cairo-mutex.Tpo .deps/cairo-mutex.Plo
|
477
|
-
/bin/sh ../libtool --tag=CC --mode=compile gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-paginated-surface.lo -MD -MP -MF .deps/cairo-paginated-surface.Tpo -c -o cairo-paginated-surface.lo cairo-paginated-surface.c
|
478
|
-
/bin/sh ../libtool --tag=CC --mode=compile gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-path-bounds.lo -MD -MP -MF .deps/cairo-path-bounds.Tpo -c -o cairo-path-bounds.lo cairo-path-bounds.c
|
479
|
-
libtool: compile: gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-output-stream.lo -MD -MP -MF .deps/cairo-output-stream.Tpo -c cairo-output-stream.c -DDLL_EXPORT -DPIC -o .libs/cairo-output-stream.o
|
480
|
-
libtool: compile: gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-paginated-surface.lo -MD -MP -MF .deps/cairo-paginated-surface.Tpo -c cairo-paginated-surface.c -DDLL_EXPORT -DPIC -o .libs/cairo-paginated-surface.o
|
481
|
-
libtool: compile: gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-path-bounds.lo -MD -MP -MF .deps/cairo-path-bounds.Tpo -c cairo-path-bounds.c -DDLL_EXPORT -DPIC -o .libs/cairo-path-bounds.o
|
482
|
-
mv -f .deps/cairo-output-stream.Tpo .deps/cairo-output-stream.Plo
|
483
|
-
/bin/sh ../libtool --tag=CC --mode=compile gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-path.lo -MD -MP -MF .deps/cairo-path.Tpo -c -o cairo-path.lo cairo-path.c
|
484
|
-
mv -f .deps/cairo-path-bounds.Tpo .deps/cairo-path-bounds.Plo
|
485
|
-
/bin/sh ../libtool --tag=CC --mode=compile gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-path-fill.lo -MD -MP -MF .deps/cairo-path-fill.Tpo -c -o cairo-path-fill.lo cairo-path-fill.c
|
486
|
-
mv -f .deps/cairo-paginated-surface.Tpo .deps/cairo-paginated-surface.Plo
|
487
|
-
/bin/sh ../libtool --tag=CC --mode=compile gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-path-fixed.lo -MD -MP -MF .deps/cairo-path-fixed.Tpo -c -o cairo-path-fixed.lo cairo-path-fixed.c
|
488
|
-
libtool: compile: gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-path.lo -MD -MP -MF .deps/cairo-path.Tpo -c cairo-path.c -DDLL_EXPORT -DPIC -o .libs/cairo-path.o
|
489
|
-
libtool: compile: gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-path-fill.lo -MD -MP -MF .deps/cairo-path-fill.Tpo -c cairo-path-fill.c -DDLL_EXPORT -DPIC -o .libs/cairo-path-fill.o
|
490
|
-
libtool: compile: gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-path-fixed.lo -MD -MP -MF .deps/cairo-path-fixed.Tpo -c cairo-path-fixed.c -DDLL_EXPORT -DPIC -o .libs/cairo-path-fixed.o
|
491
|
-
mv -f .deps/cairo-path.Tpo .deps/cairo-path.Plo
|
492
|
-
mv -f .deps/cairo-path-fill.Tpo .deps/cairo-path-fill.Plo
|
493
|
-
/bin/sh ../libtool --tag=CC --mode=compile gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-path-stroke.lo -MD -MP -MF .deps/cairo-path-stroke.Tpo -c -o cairo-path-stroke.lo cairo-path-stroke.c
|
494
|
-
/bin/sh ../libtool --tag=CC --mode=compile gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-pattern.lo -MD -MP -MF .deps/cairo-pattern.Tpo -c -o cairo-pattern.lo cairo-pattern.c
|
495
|
-
mv -f .deps/cairo-path-fixed.Tpo .deps/cairo-path-fixed.Plo
|
496
|
-
/bin/sh ../libtool --tag=CC --mode=compile gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-pen.lo -MD -MP -MF .deps/cairo-pen.Tpo -c -o cairo-pen.lo cairo-pen.c
|
497
|
-
libtool: compile: gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-pattern.lo -MD -MP -MF .deps/cairo-pattern.Tpo -c cairo-pattern.c -DDLL_EXPORT -DPIC -o .libs/cairo-pattern.o
|
498
|
-
libtool: compile: gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-path-stroke.lo -MD -MP -MF .deps/cairo-path-stroke.Tpo -c cairo-path-stroke.c -DDLL_EXPORT -DPIC -o .libs/cairo-path-stroke.o
|
499
|
-
libtool: compile: gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-pen.lo -MD -MP -MF .deps/cairo-pen.Tpo -c cairo-pen.c -DDLL_EXPORT -DPIC -o .libs/cairo-pen.o
|
500
|
-
mv -f .deps/cairo-pen.Tpo .deps/cairo-pen.Plo
|
501
|
-
/bin/sh ../libtool --tag=CC --mode=compile gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-polygon.lo -MD -MP -MF .deps/cairo-polygon.Tpo -c -o cairo-polygon.lo cairo-polygon.c
|
502
|
-
mv -f .deps/cairo-path-stroke.Tpo .deps/cairo-path-stroke.Plo
|
503
|
-
/bin/sh ../libtool --tag=CC --mode=compile gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-rectangle.lo -MD -MP -MF .deps/cairo-rectangle.Tpo -c -o cairo-rectangle.lo cairo-rectangle.c
|
504
|
-
mv -f .deps/cairo-pattern.Tpo .deps/cairo-pattern.Plo
|
505
|
-
/bin/sh ../libtool --tag=CC --mode=compile gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-region.lo -MD -MP -MF .deps/cairo-region.Tpo -c -o cairo-region.lo cairo-region.c
|
506
|
-
libtool: compile: gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-polygon.lo -MD -MP -MF .deps/cairo-polygon.Tpo -c cairo-polygon.c -DDLL_EXPORT -DPIC -o .libs/cairo-polygon.o
|
507
|
-
libtool: compile: gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-rectangle.lo -MD -MP -MF .deps/cairo-rectangle.Tpo -c cairo-rectangle.c -DDLL_EXPORT -DPIC -o .libs/cairo-rectangle.o
|
508
|
-
libtool: compile: gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-region.lo -MD -MP -MF .deps/cairo-region.Tpo -c cairo-region.c -DDLL_EXPORT -DPIC -o .libs/cairo-region.o
|
509
|
-
mv -f .deps/cairo-polygon.Tpo .deps/cairo-polygon.Plo
|
510
|
-
/bin/sh ../libtool --tag=CC --mode=compile gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-scaled-font.lo -MD -MP -MF .deps/cairo-scaled-font.Tpo -c -o cairo-scaled-font.lo cairo-scaled-font.c
|
511
|
-
mv -f .deps/cairo-rectangle.Tpo .deps/cairo-rectangle.Plo
|
512
|
-
/bin/sh ../libtool --tag=CC --mode=compile gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-skiplist.lo -MD -MP -MF .deps/cairo-skiplist.Tpo -c -o cairo-skiplist.lo cairo-skiplist.c
|
513
|
-
mv -f .deps/cairo-region.Tpo .deps/cairo-region.Plo
|
514
|
-
/bin/sh ../libtool --tag=CC --mode=compile gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-slope.lo -MD -MP -MF .deps/cairo-slope.Tpo -c -o cairo-slope.lo cairo-slope.c
|
515
|
-
libtool: compile: gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-scaled-font.lo -MD -MP -MF .deps/cairo-scaled-font.Tpo -c cairo-scaled-font.c -DDLL_EXPORT -DPIC -o .libs/cairo-scaled-font.o
|
516
|
-
libtool: compile: gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-skiplist.lo -MD -MP -MF .deps/cairo-skiplist.Tpo -c cairo-skiplist.c -DDLL_EXPORT -DPIC -o .libs/cairo-skiplist.o
|
517
|
-
libtool: compile: gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-slope.lo -MD -MP -MF .deps/cairo-slope.Tpo -c cairo-slope.c -DDLL_EXPORT -DPIC -o .libs/cairo-slope.o
|
518
|
-
mv -f .deps/cairo-slope.Tpo .deps/cairo-slope.Plo
|
519
|
-
/bin/sh ../libtool --tag=CC --mode=compile gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-spline.lo -MD -MP -MF .deps/cairo-spline.Tpo -c -o cairo-spline.lo cairo-spline.c
|
520
|
-
mv -f .deps/cairo-skiplist.Tpo .deps/cairo-skiplist.Plo
|
521
|
-
/bin/sh ../libtool --tag=CC --mode=compile gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-stroke-style.lo -MD -MP -MF .deps/cairo-stroke-style.Tpo -c -o cairo-stroke-style.lo cairo-stroke-style.c
|
522
|
-
mv -f .deps/cairo-scaled-font.Tpo .deps/cairo-scaled-font.Plo
|
523
|
-
/bin/sh ../libtool --tag=CC --mode=compile gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-surface.lo -MD -MP -MF .deps/cairo-surface.Tpo -c -o cairo-surface.lo cairo-surface.c
|
524
|
-
libtool: compile: gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-spline.lo -MD -MP -MF .deps/cairo-spline.Tpo -c cairo-spline.c -DDLL_EXPORT -DPIC -o .libs/cairo-spline.o
|
525
|
-
libtool: compile: gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-stroke-style.lo -MD -MP -MF .deps/cairo-stroke-style.Tpo -c cairo-stroke-style.c -DDLL_EXPORT -DPIC -o .libs/cairo-stroke-style.o
|
526
|
-
libtool: compile: gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-surface.lo -MD -MP -MF .deps/cairo-surface.Tpo -c cairo-surface.c -DDLL_EXPORT -DPIC -o .libs/cairo-surface.o
|
527
|
-
mv -f .deps/cairo-spline.Tpo .deps/cairo-spline.Plo
|
528
|
-
/bin/sh ../libtool --tag=CC --mode=compile gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-surface-fallback.lo -MD -MP -MF .deps/cairo-surface-fallback.Tpo -c -o cairo-surface-fallback.lo cairo-surface-fallback.c
|
529
|
-
mv -f .deps/cairo-stroke-style.Tpo .deps/cairo-stroke-style.Plo
|
530
|
-
/bin/sh ../libtool --tag=CC --mode=compile gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-system.lo -MD -MP -MF .deps/cairo-system.Tpo -c -o cairo-system.lo cairo-system.c
|
531
|
-
libtool: compile: gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-surface-fallback.lo -MD -MP -MF .deps/cairo-surface-fallback.Tpo -c cairo-surface-fallback.c -DDLL_EXPORT -DPIC -o .libs/cairo-surface-fallback.o
|
532
|
-
libtool: compile: gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-system.lo -MD -MP -MF .deps/cairo-system.Tpo -c cairo-system.c -DDLL_EXPORT -DPIC -o .libs/cairo-system.o
|
533
|
-
cairo-system.c:58:1: warning: "WINVER" redefined
|
534
|
-
In file included from c:\opt\mingw\bin\../lib/gcc/mingw32/4.4.0/../../../../include/windows.h:48,
|
535
|
-
from cairo-mutex-impl-private.h:195,
|
536
|
-
from cairo-mutex-type-private.h:45,
|
537
|
-
from cairo-scaled-font-private.h:44,
|
538
|
-
from cairoint.h:354,
|
539
|
-
from cairo-system.c:48:
|
540
|
-
c:\opt\mingw\bin\../lib/gcc/mingw32/4.4.0/../../../../include/windef.h:12:1: warning: this is the location of the previous definition
|
541
|
-
mv -f .deps/cairo-surface.Tpo .deps/cairo-surface.Plo
|
542
|
-
/bin/sh ../libtool --tag=CC --mode=compile gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-traps.lo -MD -MP -MF .deps/cairo-traps.Tpo -c -o cairo-traps.lo cairo-traps.c
|
543
|
-
mv -f .deps/cairo-system.Tpo .deps/cairo-system.Plo
|
544
|
-
/bin/sh ../libtool --tag=CC --mode=compile gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-unicode.lo -MD -MP -MF .deps/cairo-unicode.Tpo -c -o cairo-unicode.lo cairo-unicode.c
|
545
|
-
mv -f .deps/cairo-surface-fallback.Tpo .deps/cairo-surface-fallback.Plo
|
546
|
-
/bin/sh ../libtool --tag=CC --mode=compile gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-user-font.lo -MD -MP -MF .deps/cairo-user-font.Tpo -c -o cairo-user-font.lo cairo-user-font.c
|
547
|
-
libtool: compile: gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-traps.lo -MD -MP -MF .deps/cairo-traps.Tpo -c cairo-traps.c -DDLL_EXPORT -DPIC -o .libs/cairo-traps.o
|
548
|
-
libtool: compile: gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-unicode.lo -MD -MP -MF .deps/cairo-unicode.Tpo -c cairo-unicode.c -DDLL_EXPORT -DPIC -o .libs/cairo-unicode.o
|
549
|
-
libtool: compile: gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-user-font.lo -MD -MP -MF .deps/cairo-user-font.Tpo -c cairo-user-font.c -DDLL_EXPORT -DPIC -o .libs/cairo-user-font.o
|
550
|
-
mv -f .deps/cairo-unicode.Tpo .deps/cairo-unicode.Plo
|
551
|
-
/bin/sh ../libtool --tag=CC --mode=compile gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-version.lo -MD -MP -MF .deps/cairo-version.Tpo -c -o cairo-version.lo cairo-version.c
|
552
|
-
mv -f .deps/cairo-traps.Tpo .deps/cairo-traps.Plo
|
553
|
-
/bin/sh ../libtool --tag=CC --mode=compile gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-wideint.lo -MD -MP -MF .deps/cairo-wideint.Tpo -c -o cairo-wideint.lo cairo-wideint.c
|
554
|
-
mv -f .deps/cairo-user-font.Tpo .deps/cairo-user-font.Plo
|
555
|
-
/bin/sh ../libtool --tag=CC --mode=compile gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-cff-subset.lo -MD -MP -MF .deps/cairo-cff-subset.Tpo -c -o cairo-cff-subset.lo cairo-cff-subset.c
|
556
|
-
libtool: compile: gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-version.lo -MD -MP -MF .deps/cairo-version.Tpo -c cairo-version.c -DDLL_EXPORT -DPIC -o .libs/cairo-version.o
|
557
|
-
libtool: compile: gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-wideint.lo -MD -MP -MF .deps/cairo-wideint.Tpo -c cairo-wideint.c -DDLL_EXPORT -DPIC -o .libs/cairo-wideint.o
|
558
|
-
libtool: compile: gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-cff-subset.lo -MD -MP -MF .deps/cairo-cff-subset.Tpo -c cairo-cff-subset.c -DDLL_EXPORT -DPIC -o .libs/cairo-cff-subset.o
|
559
|
-
mv -f .deps/cairo-version.Tpo .deps/cairo-version.Plo
|
560
|
-
/bin/sh ../libtool --tag=CC --mode=compile gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-scaled-font-subsets.lo -MD -MP -MF .deps/cairo-scaled-font-subsets.Tpo -c -o cairo-scaled-font-subsets.lo cairo-scaled-font-subsets.c
|
561
|
-
mv -f .deps/cairo-wideint.Tpo .deps/cairo-wideint.Plo
|
562
|
-
libtool: compile: gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-scaled-font-subsets.lo -MD -MP -MF .deps/cairo-scaled-font-subsets.Tpo -c cairo-scaled-font-subsets.c -DDLL_EXPORT -DPIC -o .libs/cairo-scaled-font-subsets.o
|
563
|
-
/bin/sh ../libtool --tag=CC --mode=compile gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-truetype-subset.lo -MD -MP -MF .deps/cairo-truetype-subset.Tpo -c -o cairo-truetype-subset.lo cairo-truetype-subset.c
|
564
|
-
libtool: compile: gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-truetype-subset.lo -MD -MP -MF .deps/cairo-truetype-subset.Tpo -c cairo-truetype-subset.c -DDLL_EXPORT -DPIC -o .libs/cairo-truetype-subset.o
|
565
|
-
mv -f .deps/cairo-cff-subset.Tpo .deps/cairo-cff-subset.Plo
|
566
|
-
/bin/sh ../libtool --tag=CC --mode=compile gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-type1-fallback.lo -MD -MP -MF .deps/cairo-type1-fallback.Tpo -c -o cairo-type1-fallback.lo cairo-type1-fallback.c
|
567
|
-
mv -f .deps/cairo-scaled-font-subsets.Tpo .deps/cairo-scaled-font-subsets.Plo
|
568
|
-
/bin/sh ../libtool --tag=CC --mode=compile gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-type1-subset.lo -MD -MP -MF .deps/cairo-type1-subset.Tpo -c -o cairo-type1-subset.lo cairo-type1-subset.c
|
569
|
-
libtool: compile: gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-type1-fallback.lo -MD -MP -MF .deps/cairo-type1-fallback.Tpo -c cairo-type1-fallback.c -DDLL_EXPORT -DPIC -o .libs/cairo-type1-fallback.o
|
570
|
-
libtool: compile: gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-type1-subset.lo -MD -MP -MF .deps/cairo-type1-subset.Tpo -c cairo-type1-subset.c -DDLL_EXPORT -DPIC -o .libs/cairo-type1-subset.o
|
571
|
-
mv -f .deps/cairo-truetype-subset.Tpo .deps/cairo-truetype-subset.Plo
|
572
|
-
/bin/sh ../libtool --tag=CC --mode=compile gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-type3-glyph-surface.lo -MD -MP -MF .deps/cairo-type3-glyph-surface.Tpo -c -o cairo-type3-glyph-surface.lo cairo-type3-glyph-surface.c
|
573
|
-
libtool: compile: gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-type3-glyph-surface.lo -MD -MP -MF .deps/cairo-type3-glyph-surface.Tpo -c cairo-type3-glyph-surface.c -DDLL_EXPORT -DPIC -o .libs/cairo-type3-glyph-surface.o
|
574
|
-
mv -f .deps/cairo-type1-fallback.Tpo .deps/cairo-type1-fallback.Plo
|
575
|
-
/bin/sh ../libtool --tag=CC --mode=compile gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-pdf-operators.lo -MD -MP -MF .deps/cairo-pdf-operators.Tpo -c -o cairo-pdf-operators.lo cairo-pdf-operators.c
|
576
|
-
mv -f .deps/cairo-type1-subset.Tpo .deps/cairo-type1-subset.Plo
|
577
|
-
/bin/sh ../libtool --tag=CC --mode=compile gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-win32-surface.lo -MD -MP -MF .deps/cairo-win32-surface.Tpo -c -o cairo-win32-surface.lo cairo-win32-surface.c
|
578
|
-
libtool: compile: gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-pdf-operators.lo -MD -MP -MF .deps/cairo-pdf-operators.Tpo -c cairo-pdf-operators.c -DDLL_EXPORT -DPIC -o .libs/cairo-pdf-operators.o
|
579
|
-
mv -f .deps/cairo-type3-glyph-surface.Tpo .deps/cairo-type3-glyph-surface.Plo
|
580
|
-
/bin/sh ../libtool --tag=CC --mode=compile gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-win32-printing-surface.lo -MD -MP -MF .deps/cairo-win32-printing-surface.Tpo -c -o cairo-win32-printing-surface.lo cairo-win32-printing-surface.c
|
581
|
-
libtool: compile: gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-win32-surface.lo -MD -MP -MF .deps/cairo-win32-surface.Tpo -c cairo-win32-surface.c -DDLL_EXPORT -DPIC -o .libs/cairo-win32-surface.o
|
582
|
-
cairo-win32-surface.c: In function '_cairo_win32_print_gdi_error':
|
583
|
-
cairo-win32-surface.c:96: warning: passing argument 5 of 'FormatMessageW' from incompatible pointer type
|
584
|
-
c:\opt\mingw\bin\../lib/gcc/mingw32/4.4.0/../../../../include/winbase.h:1385: note: expected 'LPWSTR' but argument is of type 'CHAR *'
|
585
|
-
cairo-win32-surface.c:99: warning: passing argument 2 of 'fwprintf' from incompatible pointer type
|
586
|
-
c:\opt\mingw\bin\../lib/gcc/mingw32/4.4.0/../../../../include/stdio.h:563: note: expected 'const wchar_t *' but argument is of type 'char *'
|
587
|
-
libtool: compile: gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-win32-printing-surface.lo -MD -MP -MF .deps/cairo-win32-printing-surface.Tpo -c cairo-win32-printing-surface.c -DDLL_EXPORT -DPIC -o .libs/cairo-win32-printing-surface.o
|
588
|
-
mv -f .deps/cairo-pdf-operators.Tpo .deps/cairo-pdf-operators.Plo
|
589
|
-
/bin/sh ../libtool --tag=CC --mode=compile gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-win32-font.lo -MD -MP -MF .deps/cairo-win32-font.Tpo -c -o cairo-win32-font.lo cairo-win32-font.c
|
590
|
-
mv -f .deps/cairo-win32-surface.Tpo .deps/cairo-win32-surface.Plo
|
591
|
-
/bin/sh ../libtool --tag=CC --mode=compile gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-png.lo -MD -MP -MF .deps/cairo-png.Tpo -c -o cairo-png.lo cairo-png.c
|
592
|
-
libtool: compile: gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-win32-font.lo -MD -MP -MF .deps/cairo-win32-font.Tpo -c cairo-win32-font.c -DDLL_EXPORT -DPIC -o .libs/cairo-win32-font.o
|
593
|
-
mv -f .deps/cairo-win32-printing-surface.Tpo .deps/cairo-win32-printing-surface.Plo
|
594
|
-
/bin/sh ../libtool --tag=CC --mode=compile gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-ft-font.lo -MD -MP -MF .deps/cairo-ft-font.Tpo -c -o cairo-ft-font.lo cairo-ft-font.c
|
595
|
-
libtool: compile: gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-png.lo -MD -MP -MF .deps/cairo-png.Tpo -c cairo-png.c -DDLL_EXPORT -DPIC -o .libs/cairo-png.o
|
596
|
-
libtool: compile: gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-ft-font.lo -MD -MP -MF .deps/cairo-ft-font.Tpo -c cairo-ft-font.c -DDLL_EXPORT -DPIC -o .libs/cairo-ft-font.o
|
597
|
-
mv -f .deps/cairo-win32-font.Tpo .deps/cairo-win32-font.Plo
|
598
|
-
/bin/sh ../libtool --tag=CC --mode=compile gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-ps-surface.lo -MD -MP -MF .deps/cairo-ps-surface.Tpo -c -o cairo-ps-surface.lo cairo-ps-surface.c
|
599
|
-
mv -f .deps/cairo-png.Tpo .deps/cairo-png.Plo
|
600
|
-
/bin/sh ../libtool --tag=CC --mode=compile gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-pdf-surface.lo -MD -MP -MF .deps/cairo-pdf-surface.Tpo -c -o cairo-pdf-surface.lo cairo-pdf-surface.c
|
601
|
-
libtool: compile: gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-ps-surface.lo -MD -MP -MF .deps/cairo-ps-surface.Tpo -c cairo-ps-surface.c -DDLL_EXPORT -DPIC -o .libs/cairo-ps-surface.o
|
602
|
-
libtool: compile: gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-pdf-surface.lo -MD -MP -MF .deps/cairo-pdf-surface.Tpo -c cairo-pdf-surface.c -DDLL_EXPORT -DPIC -o .libs/cairo-pdf-surface.o
|
603
|
-
mv -f .deps/cairo-ft-font.Tpo .deps/cairo-ft-font.Plo
|
604
|
-
/bin/sh ../libtool --tag=CC --mode=compile gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-deflate-stream.lo -MD -MP -MF .deps/cairo-deflate-stream.Tpo -c -o cairo-deflate-stream.lo cairo-deflate-stream.c
|
605
|
-
libtool: compile: gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-deflate-stream.lo -MD -MP -MF .deps/cairo-deflate-stream.Tpo -c cairo-deflate-stream.c -DDLL_EXPORT -DPIC -o .libs/cairo-deflate-stream.o
|
606
|
-
mv -f .deps/cairo-deflate-stream.Tpo .deps/cairo-deflate-stream.Plo
|
607
|
-
mv -f .deps/cairo-ps-surface.Tpo .deps/cairo-ps-surface.Plo
|
608
|
-
/bin/sh ../libtool --tag=CC --mode=compile gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-svg-surface.lo -MD -MP -MF .deps/cairo-svg-surface.Tpo -c -o cairo-svg-surface.lo cairo-svg-surface.c
|
609
|
-
Generating cairo.def
|
610
|
-
libtool: compile: gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I.. -I. -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT cairo-svg-surface.lo -MD -MP -MF .deps/cairo-svg-surface.Tpo -c cairo-svg-surface.c -DDLL_EXPORT -DPIC -o .libs/cairo-svg-surface.o
|
611
|
-
mv -f .deps/cairo-pdf-surface.Tpo .deps/cairo-pdf-surface.Plo
|
612
|
-
mv -f .deps/cairo-svg-surface.Tpo .deps/cairo-svg-surface.Plo
|
613
|
-
/bin/sh ../libtool --tag=CC --mode=link gcc -mms-bitfields -mthreads -O2 -version-info 10802:10:10800 -no-undefined -export-symbols cairo.def -L/devel/dist/win32/zlib-1.2.4-2/lib -o libcairo.la -rpath c:/devel/target/1c95f04ba92ba301d7056b59ff23aa94/lib cairo-analysis-surface.lo cairo-arc.lo cairo-array.lo cairo-atomic.lo cairo-base85-stream.lo cairo-bentley-ottmann.lo cairo.lo cairo-cache.lo cairo-clip.lo cairo-color.lo cairo-debug.lo cairo-fixed.lo cairo-font-face.lo cairo-font-face-twin.lo cairo-font-face-twin-data.lo cairo-font-options.lo cairo-freelist.lo cairo-gstate.lo cairo-hash.lo cairo-hull.lo cairo-image-surface.lo cairo-lzw.lo cairo-matrix.lo cairo-meta-surface.lo cairo-misc.lo cairo-mutex.lo cairo-output-stream.lo cairo-paginated-surface.lo cairo-path-bounds.lo cairo-path.lo cairo-path-fill.lo cairo-path-fixed.lo cairo-path-stroke.lo cairo-pattern.lo cairo-pen.lo cairo-polygon.lo cairo-rectangle.lo cairo-region.lo cairo-scaled-font.lo cairo-skiplist.lo cairo-slope.lo cairo-spline.lo cairo-stroke-style.lo cairo-surface.lo cairo-surface-fallback.lo cairo-system.lo cairo-traps.lo cairo-unicode.lo cairo-user-font.lo cairo-version.lo cairo-wideint.lo cairo-cff-subset.lo cairo-scaled-font-subsets.lo cairo-truetype-subset.lo cairo-type1-fallback.lo cairo-type1-subset.lo cairo-type3-glyph-surface.lo cairo-pdf-operators.lo cairo-win32-surface.lo cairo-win32-printing-surface.lo cairo-win32-font.lo cairo-png.lo cairo-ft-font.lo cairo-ps-surface.lo cairo-pdf-surface.lo cairo-deflate-stream.lo cairo-svg-surface.lo -Lc:/devel/dist/win32/pixman-0.18.4-1/lib -lpixman-1 -Lc:/devel/dist/win32/freetype-2.3.12-1/lib -lfreetype -Lc:/devel/dist/win32/fontconfig-2.8.0-2/lib -lfontconfig -Lc:/devel/dist/win32/libpng-1.4.0-1/lib -lpng14 -lgdi32 -lmsimg32 -lm -lz -lz -lm -lm
|
614
|
-
libtool: link: if test "x`/bin/sed 1q cairo.def`" = xEXPORTS; then cp cairo.def .libs/libcairo-2.dll.def; else echo EXPORTS > .libs/libcairo-2.dll.def; cat cairo.def >> .libs/libcairo-2.dll.def; fi
|
615
|
-
libtool: link: gcc -mms-bitfields -mthreads -shared .libs/libcairo-2.dll.def .libs/cairo-analysis-surface.o .libs/cairo-arc.o .libs/cairo-array.o .libs/cairo-atomic.o .libs/cairo-base85-stream.o .libs/cairo-bentley-ottmann.o .libs/cairo.o .libs/cairo-cache.o .libs/cairo-clip.o .libs/cairo-color.o .libs/cairo-debug.o .libs/cairo-fixed.o .libs/cairo-font-face.o .libs/cairo-font-face-twin.o .libs/cairo-font-face-twin-data.o .libs/cairo-font-options.o .libs/cairo-freelist.o .libs/cairo-gstate.o .libs/cairo-hash.o .libs/cairo-hull.o .libs/cairo-image-surface.o .libs/cairo-lzw.o .libs/cairo-matrix.o .libs/cairo-meta-surface.o .libs/cairo-misc.o .libs/cairo-mutex.o .libs/cairo-output-stream.o .libs/cairo-paginated-surface.o .libs/cairo-path-bounds.o .libs/cairo-path.o .libs/cairo-path-fill.o .libs/cairo-path-fixed.o .libs/cairo-path-stroke.o .libs/cairo-pattern.o .libs/cairo-pen.o .libs/cairo-polygon.o .libs/cairo-rectangle.o .libs/cairo-region.o .libs/cairo-scaled-font.o .libs/cairo-skiplist.o .libs/cairo-slope.o .libs/cairo-spline.o .libs/cairo-stroke-style.o .libs/cairo-surface.o .libs/cairo-surface-fallback.o .libs/cairo-system.o .libs/cairo-traps.o .libs/cairo-unicode.o .libs/cairo-user-font.o .libs/cairo-version.o .libs/cairo-wideint.o .libs/cairo-cff-subset.o .libs/cairo-scaled-font-subsets.o .libs/cairo-truetype-subset.o .libs/cairo-type1-fallback.o .libs/cairo-type1-subset.o .libs/cairo-type3-glyph-surface.o .libs/cairo-pdf-operators.o .libs/cairo-win32-surface.o .libs/cairo-win32-printing-surface.o .libs/cairo-win32-font.o .libs/cairo-png.o .libs/cairo-ft-font.o .libs/cairo-ps-surface.o .libs/cairo-pdf-surface.o .libs/cairo-deflate-stream.o .libs/cairo-svg-surface.o -L/devel/dist/win32/zlib-1.2.4-2/lib -Lc:/devel/dist/win32/pixman-0.18.4-1/lib -lpixman-1 -Lc:/devel/dist/win32/freetype-2.3.12-1/lib -lfreetype -Lc:/devel/dist/win32/fontconfig-2.8.0-2/lib -lfontconfig -Lc:/devel/dist/win32/libpng-1.4.0-1/lib -lpng14 -lgdi32 -lmsimg32 -lz -mms-bitfields -mthreads -mthreads -o .libs/libcairo-2.dll -Wl,--enable-auto-image-base -Xlinker --out-implib -Xlinker .libs/libcairo.dll.a
|
616
|
-
Creating library file: .libs/libcairo.dll.a
|
617
|
-
libtool: link: ( cd ".libs" && rm -f "libcairo.la" && ln -s "../libcairo.la" "libcairo.la" )
|
618
|
-
make[4]: Entering directory `/devel/src/freedesktop/cairo/1.8.10-4_win32/src'
|
619
|
-
test -z "c:/devel/target/1c95f04ba92ba301d7056b59ff23aa94/lib" || /bin/mkdir -p "c:/devel/target/1c95f04ba92ba301d7056b59ff23aa94/lib"
|
620
|
-
test -z "c:/devel/target/1c95f04ba92ba301d7056b59ff23aa94/include/cairo" || /bin/mkdir -p "c:/devel/target/1c95f04ba92ba301d7056b59ff23aa94/include/cairo"
|
621
|
-
test -z "c:/devel/target/1c95f04ba92ba301d7056b59ff23aa94/include/cairo" || /bin/mkdir -p "c:/devel/target/1c95f04ba92ba301d7056b59ff23aa94/include/cairo"
|
622
|
-
/bin/sh ../libtool --mode=install /opt/local/bin/install -c libcairo.la 'c:/devel/target/1c95f04ba92ba301d7056b59ff23aa94/lib'
|
623
|
-
/opt/local/bin/install -c -m 644 cairo-features.h 'c:/devel/target/1c95f04ba92ba301d7056b59ff23aa94/include/cairo'
|
624
|
-
/opt/local/bin/install -c -m 644 cairo.h cairo-deprecated.h cairo-win32.h cairo-ft.h cairo-ps.h cairo-pdf.h cairo-svg.h ../cairo-version.h 'c:/devel/target/1c95f04ba92ba301d7056b59ff23aa94/include/cairo'
|
625
|
-
test -z "c:/devel/target/1c95f04ba92ba301d7056b59ff23aa94/lib/pkgconfig" || /bin/mkdir -p "c:/devel/target/1c95f04ba92ba301d7056b59ff23aa94/lib/pkgconfig"
|
626
|
-
/opt/local/bin/install -c -m 644 cairo.pc cairo-win32.pc cairo-win32-font.pc cairo-png.pc cairo-ft.pc cairo-ps.pc cairo-pdf.pc cairo-svg.pc 'c:/devel/target/1c95f04ba92ba301d7056b59ff23aa94/lib/pkgconfig'
|
627
|
-
libtool: install: /opt/local/bin/install -c .libs/libcairo.dll.a c:/devel/target/1c95f04ba92ba301d7056b59ff23aa94/lib/libcairo.dll.a
|
628
|
-
libtool: install: base_file=`basename libcairo.la`
|
629
|
-
libtool: install: dlpath=`/bin/sh 2>&1 -c '. .libs/'libcairo.la'i; echo libcairo-2.dll'`
|
630
|
-
libtool: install: dldir=c:/devel/target/1c95f04ba92ba301d7056b59ff23aa94/lib/`dirname ../bin/libcairo-2.dll`
|
631
|
-
libtool: install: test -d c:/devel/target/1c95f04ba92ba301d7056b59ff23aa94/lib/../bin || mkdir -p c:/devel/target/1c95f04ba92ba301d7056b59ff23aa94/lib/../bin
|
632
|
-
libtool: install: /opt/local/bin/install -c .libs/libcairo-2.dll c:/devel/target/1c95f04ba92ba301d7056b59ff23aa94/lib/../bin/libcairo-2.dll
|
633
|
-
libtool: install: chmod a+x c:/devel/target/1c95f04ba92ba301d7056b59ff23aa94/lib/../bin/libcairo-2.dll
|
634
|
-
libtool: install: if test -n '' && test -n 'strip --strip-unneeded'; then eval 'strip --strip-unneeded c:/devel/target/1c95f04ba92ba301d7056b59ff23aa94/lib/../bin/libcairo-2.dll' || exit 0; fi
|
635
|
-
libtool: install: /opt/local/bin/install -c .libs/libcairo.lai c:/devel/target/1c95f04ba92ba301d7056b59ff23aa94/lib/libcairo.la
|
636
|
-
----------------------------------------------------------------------
|
637
|
-
Libraries have been installed in:
|
638
|
-
c:/devel/target/1c95f04ba92ba301d7056b59ff23aa94/lib
|
639
|
-
|
640
|
-
If you ever happen to want to link against installed libraries
|
641
|
-
in a given directory, LIBDIR, you must either use libtool, and
|
642
|
-
specify the full pathname of the library, or use the `-LLIBDIR'
|
643
|
-
flag during linking and do at least one of the following:
|
644
|
-
- add LIBDIR to the `PATH' environment variable
|
645
|
-
during execution
|
646
|
-
- add LIBDIR to the `LD_RUN_PATH' environment variable
|
647
|
-
during linking
|
648
|
-
- use the `-LLIBDIR' linker flag
|
649
|
-
|
650
|
-
See any operating system documentation about shared libraries for
|
651
|
-
more information, such as the ld(1) and ld.so(8) manual pages.
|
652
|
-
----------------------------------------------------------------------
|
653
|
-
make[4]: Leaving directory `/devel/src/freedesktop/cairo/1.8.10-4_win32/src'
|
654
|
-
make[3]: Leaving directory `/devel/src/freedesktop/cairo/1.8.10-4_win32/src'
|
655
|
-
make[2]: Leaving directory `/devel/src/freedesktop/cairo/1.8.10-4_win32/src'
|
656
|
-
Making install in doc
|
657
|
-
make[2]: Entering directory `/devel/src/freedesktop/cairo/1.8.10-4_win32/doc'
|
658
|
-
make install-recursive
|
659
|
-
make[3]: Entering directory `/devel/src/freedesktop/cairo/1.8.10-4_win32/doc'
|
660
|
-
Making install in public
|
661
|
-
make[4]: Entering directory `/devel/src/freedesktop/cairo/1.8.10-4_win32/doc/public'
|
662
|
-
make install-am
|
663
|
-
make[5]: Entering directory `/devel/src/freedesktop/cairo/1.8.10-4_win32/doc/public'
|
664
|
-
make[6]: Entering directory `/devel/src/freedesktop/cairo/1.8.10-4_win32/doc/public'
|
665
|
-
make[6]: Nothing to be done for `install-exec-am'.
|
666
|
-
installfiles=`echo ./html/*`; \
|
667
|
-
if test "$installfiles" = './html/*'; \
|
668
|
-
then echo '-- Nothing to install' ; \
|
669
|
-
else \
|
670
|
-
/bin/sh /devel/src/freedesktop/cairo/1.8.10-4_win32/build/install-sh -d c:/devel/target/1c95f04ba92ba301d7056b59ff23aa94/share/gtk-doc/html/cairo; \
|
671
|
-
for i in $installfiles; do \
|
672
|
-
echo '-- Installing '$i ; \
|
673
|
-
/opt/local/bin/install -c -m 644 $i c:/devel/target/1c95f04ba92ba301d7056b59ff23aa94/share/gtk-doc/html/cairo; \
|
674
|
-
done; \
|
675
|
-
echo '-- Installing ./html/index.sgml' ; \
|
676
|
-
/opt/local/bin/install -c -m 644 ./html/index.sgml c:/devel/target/1c95f04ba92ba301d7056b59ff23aa94/share/gtk-doc/html/cairo || :; \
|
677
|
-
which gtkdoc-rebase >/dev/null && \
|
678
|
-
gtkdoc-rebase --relative --dest-dir= --html-dir=c:/devel/target/1c95f04ba92ba301d7056b59ff23aa94/share/gtk-doc/html/cairo ; \
|
679
|
-
fi
|
680
|
-
-- Installing ./html/bindings-errors.html
|
681
|
-
-- Installing ./html/bindings-fonts.html
|
682
|
-
-- Installing ./html/bindings-memory.html
|
683
|
-
-- Installing ./html/bindings-overloading.html
|
684
|
-
-- Installing ./html/bindings-path.html
|
685
|
-
-- Installing ./html/bindings-patterns.html
|
686
|
-
-- Installing ./html/bindings-return-values.html
|
687
|
-
-- Installing ./html/bindings-streams.html
|
688
|
-
-- Installing ./html/bindings-surfaces.html
|
689
|
-
-- Installing ./html/cairo-context.html
|
690
|
-
-- Installing ./html/cairo-drawing.html
|
691
|
-
-- Installing ./html/cairo-error-status.html
|
692
|
-
-- Installing ./html/cairo-font-face.html
|
693
|
-
-- Installing ./html/cairo-font-options.html
|
694
|
-
-- Installing ./html/cairo-fonts.html
|
695
|
-
-- Installing ./html/cairo-ft-font.html
|
696
|
-
-- Installing ./html/cairo-image-surface.html
|
697
|
-
-- Installing ./html/cairo-matrix.html
|
698
|
-
-- Installing ./html/cairo-paths.html
|
699
|
-
-- Installing ./html/cairo-pattern.html
|
700
|
-
-- Installing ./html/cairo-pdf-surface.html
|
701
|
-
-- Installing ./html/cairo-png-functions.html
|
702
|
-
-- Installing ./html/cairo-ps-surface.html
|
703
|
-
-- Installing ./html/cairo-quartz-font.html
|
704
|
-
-- Installing ./html/cairo-quartz-surface.html
|
705
|
-
-- Installing ./html/cairo-scaled-font.html
|
706
|
-
-- Installing ./html/cairo-support.html
|
707
|
-
-- Installing ./html/cairo-surface.html
|
708
|
-
-- Installing ./html/cairo-surfaces.html
|
709
|
-
-- Installing ./html/cairo-svg-surface.html
|
710
|
-
-- Installing ./html/cairo-text.html
|
711
|
-
-- Installing ./html/cairo-transformations.html
|
712
|
-
-- Installing ./html/cairo-types.html
|
713
|
-
-- Installing ./html/cairo-user-font.html
|
714
|
-
-- Installing ./html/cairo-version-info.html
|
715
|
-
-- Installing ./html/cairo-win32-font.html
|
716
|
-
-- Installing ./html/cairo-win32-surface.html
|
717
|
-
-- Installing ./html/cairo-xlib-surface.html
|
718
|
-
-- Installing ./html/cairo.devhelp
|
719
|
-
-- Installing ./html/cairo.devhelp2
|
720
|
-
-- Installing ./html/home.png
|
721
|
-
-- Installing ./html/index-1.2.html
|
722
|
-
-- Installing ./html/index-1.4.html
|
723
|
-
-- Installing ./html/index-1.6.html
|
724
|
-
-- Installing ./html/index-1.8.html
|
725
|
-
-- Installing ./html/index-all.html
|
726
|
-
-- Installing ./html/index.html
|
727
|
-
-- Installing ./html/index.sgml
|
728
|
-
-- Installing ./html/language-bindings.html
|
729
|
-
-- Installing ./html/left.png
|
730
|
-
-- Installing ./html/right.png
|
731
|
-
-- Installing ./html/style.css
|
732
|
-
-- Installing ./html/up.png
|
733
|
-
-- Installing ./html/index.sgml
|
734
|
-
which: gtkdoc-rebase: unknown command
|
735
|
-
make[6]: [install-data-local] Error 1 (ignored)
|
736
|
-
make[6]: Leaving directory `/devel/src/freedesktop/cairo/1.8.10-4_win32/doc/public'
|
737
|
-
make[5]: Leaving directory `/devel/src/freedesktop/cairo/1.8.10-4_win32/doc/public'
|
738
|
-
make[4]: Leaving directory `/devel/src/freedesktop/cairo/1.8.10-4_win32/doc/public'
|
739
|
-
make[4]: Entering directory `/devel/src/freedesktop/cairo/1.8.10-4_win32/doc'
|
740
|
-
make[5]: Entering directory `/devel/src/freedesktop/cairo/1.8.10-4_win32/doc'
|
741
|
-
make[5]: Nothing to be done for `install-exec-am'.
|
742
|
-
make[5]: Nothing to be done for `install-data-am'.
|
743
|
-
make[5]: Leaving directory `/devel/src/freedesktop/cairo/1.8.10-4_win32/doc'
|
744
|
-
make[4]: Leaving directory `/devel/src/freedesktop/cairo/1.8.10-4_win32/doc'
|
745
|
-
make[3]: Leaving directory `/devel/src/freedesktop/cairo/1.8.10-4_win32/doc'
|
746
|
-
make[2]: Leaving directory `/devel/src/freedesktop/cairo/1.8.10-4_win32/doc'
|
747
|
-
Making install in util
|
748
|
-
make[2]: Entering directory `/devel/src/freedesktop/cairo/1.8.10-4_win32/util'
|
749
|
-
make install-am
|
750
|
-
make[3]: Entering directory `/devel/src/freedesktop/cairo/1.8.10-4_win32/util'
|
751
|
-
make[4]: Entering directory `/devel/src/freedesktop/cairo/1.8.10-4_win32/util'
|
752
|
-
make[4]: Nothing to be done for `install-exec-am'.
|
753
|
-
make[4]: Nothing to be done for `install-data-am'.
|
754
|
-
make[4]: Leaving directory `/devel/src/freedesktop/cairo/1.8.10-4_win32/util'
|
755
|
-
make[3]: Leaving directory `/devel/src/freedesktop/cairo/1.8.10-4_win32/util'
|
756
|
-
make[2]: Leaving directory `/devel/src/freedesktop/cairo/1.8.10-4_win32/util'
|
757
|
-
Making install in boilerplate
|
758
|
-
make[2]: Entering directory `/devel/src/freedesktop/cairo/1.8.10-4_win32/boilerplate'
|
759
|
-
make install-am
|
760
|
-
make[3]: Entering directory `/devel/src/freedesktop/cairo/1.8.10-4_win32/boilerplate'
|
761
|
-
make[4]: Entering directory `/devel/src/freedesktop/cairo/1.8.10-4_win32/boilerplate'
|
762
|
-
make[4]: Nothing to be done for `install-exec-am'.
|
763
|
-
make[4]: Nothing to be done for `install-data-am'.
|
764
|
-
make[4]: Leaving directory `/devel/src/freedesktop/cairo/1.8.10-4_win32/boilerplate'
|
765
|
-
make[3]: Leaving directory `/devel/src/freedesktop/cairo/1.8.10-4_win32/boilerplate'
|
766
|
-
make[2]: Leaving directory `/devel/src/freedesktop/cairo/1.8.10-4_win32/boilerplate'
|
767
|
-
Making install in test
|
768
|
-
make[2]: Entering directory `/devel/src/freedesktop/cairo/1.8.10-4_win32/test'
|
769
|
-
make install-recursive
|
770
|
-
make[3]: Entering directory `/devel/src/freedesktop/cairo/1.8.10-4_win32/test'
|
771
|
-
Making install in pdiff
|
772
|
-
make[4]: Entering directory `/devel/src/freedesktop/cairo/1.8.10-4_win32/test/pdiff'
|
773
|
-
make install-am
|
774
|
-
make[5]: Entering directory `/devel/src/freedesktop/cairo/1.8.10-4_win32/test/pdiff'
|
775
|
-
/bin/sh ../../libtool --tag=CC --mode=compile gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I../.. -I../../src -I../../src -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT lpyramid.lo -MD -MP -MF .deps/lpyramid.Tpo -c -o lpyramid.lo lpyramid.c
|
776
|
-
/bin/sh ../../libtool --tag=CC --mode=compile gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I../.. -I../../src -I../../src -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT pdiff.lo -MD -MP -MF .deps/pdiff.Tpo -c -o pdiff.lo pdiff.c
|
777
|
-
libtool: compile: gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I../.. -I../../src -I../../src -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT pdiff.lo -MD -MP -MF .deps/pdiff.Tpo -c pdiff.c -DDLL_EXPORT -DPIC -o .libs/pdiff.o
|
778
|
-
libtool: compile: gcc -mms-bitfields -mthreads -DHAVE_CONFIG_H -I. -I../.. -I../../src -I../../src -Ic:/devel/dist/win32/pixman-0.18.4-1/include/pixman-1 -Ic:/devel/dist/win32/freetype-2.3.12-1/include/freetype2 -Ic:/devel/dist/win32/freetype-2.3.12-1/include -Ic:/devel/dist/win32/fontconfig-2.8.0-2/include -Ic:/devel/dist/win32/libpng-1.4.0-1/include/libpng14 -I/devel/dist/win32/zlib-1.2.4-2/include -O2 -MT lpyramid.lo -MD -MP -MF .deps/lpyramid.Tpo -c lpyramid.c -DDLL_EXPORT -DPIC -o .libs/lpyramid.o
|
779
|
-
mv -f .deps/lpyramid.Tpo .deps/lpyramid.Plo
|
780
|
-
mv -f .deps/pdiff.Tpo .deps/pdiff.Plo
|
781
|
-
/bin/sh ../../libtool --tag=CC --mode=link gcc -mms-bitfields -mthreads -O2 -L/devel/dist/win32/zlib-1.2.4-2/lib -o libpdiff.la lpyramid.lo pdiff.lo -lm
|
782
|
-
libtool: link: ar cru .libs/libpdiff.a .libs/lpyramid.o .libs/pdiff.o
|
783
|
-
libtool: link: ranlib .libs/libpdiff.a
|
784
|
-
libtool: link: ( cd ".libs" && rm -f "libpdiff.la" && ln -s "../libpdiff.la" "libpdiff.la" )
|
785
|
-
make[6]: Entering directory `/devel/src/freedesktop/cairo/1.8.10-4_win32/test/pdiff'
|
786
|
-
make[6]: Nothing to be done for `install-exec-am'.
|
787
|
-
make[6]: Nothing to be done for `install-data-am'.
|
788
|
-
make[6]: Leaving directory `/devel/src/freedesktop/cairo/1.8.10-4_win32/test/pdiff'
|
789
|
-
make[5]: Leaving directory `/devel/src/freedesktop/cairo/1.8.10-4_win32/test/pdiff'
|
790
|
-
make[4]: Leaving directory `/devel/src/freedesktop/cairo/1.8.10-4_win32/test/pdiff'
|
791
|
-
Making install in .
|
792
|
-
make[4]: Entering directory `/devel/src/freedesktop/cairo/1.8.10-4_win32/test'
|
793
|
-
make[5]: Entering directory `/devel/src/freedesktop/cairo/1.8.10-4_win32/test'
|
794
|
-
make[5]: Nothing to be done for `install-exec-am'.
|
795
|
-
make[5]: Nothing to be done for `install-data-am'.
|
796
|
-
make[5]: Leaving directory `/devel/src/freedesktop/cairo/1.8.10-4_win32/test'
|
797
|
-
make[4]: Leaving directory `/devel/src/freedesktop/cairo/1.8.10-4_win32/test'
|
798
|
-
make[3]: Leaving directory `/devel/src/freedesktop/cairo/1.8.10-4_win32/test'
|
799
|
-
make[2]: Leaving directory `/devel/src/freedesktop/cairo/1.8.10-4_win32/test'
|
800
|
-
Making install in perf
|
801
|
-
make[2]: Entering directory `/devel/src/freedesktop/cairo/1.8.10-4_win32/perf'
|
802
|
-
make install-am
|
803
|
-
make[3]: Entering directory `/devel/src/freedesktop/cairo/1.8.10-4_win32/perf'
|
804
|
-
make[4]: Entering directory `/devel/src/freedesktop/cairo/1.8.10-4_win32/perf'
|
805
|
-
make[4]: Nothing to be done for `install-exec-am'.
|
806
|
-
make[4]: Nothing to be done for `install-data-am'.
|
807
|
-
make[4]: Leaving directory `/devel/src/freedesktop/cairo/1.8.10-4_win32/perf'
|
808
|
-
make[3]: Leaving directory `/devel/src/freedesktop/cairo/1.8.10-4_win32/perf'
|
809
|
-
make[2]: Leaving directory `/devel/src/freedesktop/cairo/1.8.10-4_win32/perf'
|
810
|
-
make[2]: Entering directory `/devel/src/freedesktop/cairo/1.8.10-4_win32'
|
811
|
-
make[3]: Entering directory `/devel/src/freedesktop/cairo/1.8.10-4_win32'
|
812
|
-
make[3]: Nothing to be done for `install-exec-am'.
|
813
|
-
make[3]: Nothing to be done for `install-data-am'.
|
814
|
-
make[3]: Leaving directory `/devel/src/freedesktop/cairo/1.8.10-4_win32'
|
815
|
-
make[2]: Leaving directory `/devel/src/freedesktop/cairo/1.8.10-4_win32'
|
816
|
-
make[1]: Leaving directory `/devel/src/freedesktop/cairo/1.8.10-4_win32'
|
817
|
-
rm -f cairo-1.8.10.zip
|
818
|
-
rm -f cairo-dev-1.8.10.zip
|
819
|
-
pwd=`pwd`; cd c:/devel/target/1c95f04ba92ba301d7056b59ff23aa94; \
|
820
|
-
zip "$pwd"/cairo-1.8.10.zip bin/libcairo-2.dll
|
821
|
-
pwd=`pwd`; cd c:/devel/target/1c95f04ba92ba301d7056b59ff23aa94; \
|
822
|
-
zip -r "$pwd"/cairo-dev-1.8.10.zip include/cairo lib/libcairo.dll.a lib/cairo.lib lib/pkgconfig/cairo.pc lib/pkgconfig/cairo-*.pc share/gtk-doc/html/cairo
|
823
|
-
adding: bin/libcairo-2.dll adding: include/cairo/ (200 bytes security) (stored 0%)
|
824
|
-
adding: include/cairo/cairo-deprecated.h (200 bytes security) (deflated 73%)
|
825
|
-
adding: include/cairo/cairo-features.h (200 bytes security) (deflated 64%)
|
826
|
-
adding: include/cairo/cairo-ft.h (200 bytes security) (deflated 56%)
|
827
|
-
adding: include/cairo/cairo-pdf.h (200 bytes security) (deflated 55%)
|
828
|
-
adding: include/cairo/cairo-ps.h (200 bytes security) (deflated 62%)
|
829
|
-
adding: include/cairo/cairo-svg.h (200 bytes security) (deflated 57%)
|
830
|
-
adding: include/cairo/cairo-version.h (200 bytes security) (deflated 55%)
|
831
|
-
adding: include/cairo/cairo-win32.h (200 bytes security) (deflated 65%)
|
832
|
-
adding: include/cairo/cairo.h (200 bytes security) (deflated 76%)
|
833
|
-
adding: lib/libcairo.dll.a (200 bytes security) (deflated 93%)
|
834
|
-
adding: lib/pkgconfig/cairo.pc (200 bytes security) (deflated 32%)
|
835
|
-
adding: lib/pkgconfig/cairo-ft.pc (200 bytes security) (deflated 30%)
|
836
|
-
adding: lib/pkgconfig/cairo-pdf.pc (200 bytes security) (deflated 28%)
|
837
|
-
adding: lib/pkgconfig/cairo-png.pc (200 bytes security) (deflated 29%)
|
838
|
-
adding: lib/pkgconfig/cairo-ps.pc (200 bytes security) (deflated 29%)
|
839
|
-
adding: lib/pkgconfig/cairo-svg.pc (200 bytes security) (deflated 28%)
|
840
|
-
adding: lib/pkgconfig/cairo-win32-font.pc (200 bytes security) (deflated 30%)
|
841
|
-
adding: lib/pkgconfig/cairo-win32.pc (200 bytes security) (deflated 29%)
|
842
|
-
adding: share/gtk-doc/html/cairo/ (200 bytes security) (stored 0%)
|
843
|
-
adding: share/gtk-doc/html/cairo/bindings-errors.html (200 bytes security) (deflated 63%)
|
844
|
-
adding: share/gtk-doc/html/cairo/bindings-fonts.html (200 bytes security) (deflated 65%)
|
845
|
-
adding: share/gtk-doc/html/cairo/bindings-memory.html (200 bytes security) (deflated 65%)
|
846
|
-
adding: share/gtk-doc/html/cairo/bindings-overloading.html (200 bytes security) (deflated 67%)
|
847
|
-
adding: share/gtk-doc/html/cairo/bindings-path.html (200 bytes security) (deflated 67%)
|
848
|
-
adding: share/gtk-doc/html/cairo/bindings-patterns.html (200 bytes security) (deflated 74%)
|
849
|
-
adding: share/gtk-doc/html/cairo/bindings-return-values.html (200 bytes security) (deflated 66%)
|
850
|
-
adding: share/gtk-doc/html/cairo/bindings-streams.html (200 bytes security) (deflated 63%)
|
851
|
-
adding: share/gtk-doc/html/cairo/bindings-surfaces.html (200 bytes security) (deflated 65%)
|
852
|
-
adding: share/gtk-doc/html/cairo/cairo-context.html (200 bytes security) (deflated 88%)
|
853
|
-
adding: share/gtk-doc/html/cairo/cairo-drawing.html (200 bytes security) (deflated 68%)
|
854
|
-
adding: share/gtk-doc/html/cairo/cairo-error-status.html (200 bytes security) (deflated 78%)
|
855
|
-
adding: share/gtk-doc/html/cairo/cairo-font-face.html (200 bytes security) (deflated 84%)
|
856
|
-
adding: share/gtk-doc/html/cairo/cairo-font-options.html (200 bytes security) (deflated 88%)
|
857
|
-
adding: share/gtk-doc/html/cairo/cairo-fonts.html (200 bytes security) (deflated 69%)
|
858
|
-
adding: share/gtk-doc/html/cairo/cairo-ft-font.html (200 bytes security) (deflated 81%)
|
859
|
-
adding: share/gtk-doc/html/cairo/cairo-image-surface.html (200 bytes security) (deflated 82%)
|
860
|
-
adding: share/gtk-doc/html/cairo/cairo-matrix.html (200 bytes security) (deflated 88%)
|
861
|
-
adding: share/gtk-doc/html/cairo/cairo-paths.html (200 bytes security) (deflated 87%)
|
862
|
-
adding: share/gtk-doc/html/cairo/cairo-pattern.html (200 bytes security) (deflated 90%)
|
863
|
-
adding: share/gtk-doc/html/cairo/cairo-pdf-surface.html (200 bytes security) (deflated 80%)
|
864
|
-
adding: share/gtk-doc/html/cairo/cairo-png-functions.html (200 bytes security) (deflated 84%)
|
865
|
-
adding: share/gtk-doc/html/cairo/cairo-ps-surface.html (200 bytes security) (deflated 84%)
|
866
|
-
adding: share/gtk-doc/html/cairo/cairo-quartz-font.html (200 bytes security) (deflated 77%)
|
867
|
-
adding: share/gtk-doc/html/cairo/cairo-quartz-surface.html (200 bytes security) (deflated 77%)
|
868
|
-
adding: share/gtk-doc/html/cairo/cairo-scaled-font.html (200 bytes security) (deflated 87%)
|
869
|
-
adding: share/gtk-doc/html/cairo/cairo-support.html (200 bytes security) (deflated 66%)
|
870
|
-
adding: share/gtk-doc/html/cairo/cairo-surface.html (200 bytes security) (deflated 86%)
|
871
|
-
adding: share/gtk-doc/html/cairo/cairo-surfaces.html (200 bytes security) (deflated 71%)
|
872
|
-
adding: share/gtk-doc/html/cairo/cairo-svg-surface.html (200 bytes security) (deflated 82%)
|
873
|
-
adding: share/gtk-doc/html/cairo/cairo-text.html (200 bytes security) (deflated 60%)
|
874
|
-
(200 bytes security) (deflated 86%)
|
875
|
-
adding: share/gtk-doc/html/cairo/cairo-transformations.html (200 bytes security) (deflated 86%)
|
876
|
-
adding: share/gtk-doc/html/cairo/cairo-types.html (200 bytes security) (deflated 70%)
|
877
|
-
adding: share/gtk-doc/html/cairo/cairo-user-font.html (200 bytes security) (deflated 87%)
|
878
|
-
adding: share/gtk-doc/html/cairo/cairo-version-info.html (200 bytes security) (deflated 78%)
|
879
|
-
adding: share/gtk-doc/html/cairo/cairo-win32-font.html (200 bytes security) (deflated 86%)
|
880
|
-
adding: share/gtk-doc/html/cairo/cairo-win32-surface.html (200 bytes security) (deflated 83%)
|
881
|
-
adding: share/gtk-doc/html/cairo/cairo-xlib-surface.html (200 bytes security) (deflated 85%)
|
882
|
-
adding: share/gtk-doc/html/cairo/cairo.devhelp (200 bytes security) (deflated 88%)
|
883
|
-
adding: share/gtk-doc/html/cairo/cairo.devhelp2 (200 bytes security) (deflated 89%)
|
884
|
-
adding: share/gtk-doc/html/cairo/home.png (200 bytes security) (stored 0%)
|
885
|
-
adding: share/gtk-doc/html/cairo/index-1.2.html (200 bytes security) (deflated 82%)
|
886
|
-
adding: share/gtk-doc/html/cairo/index-1.4.html (200 bytes security) (deflated 80%)
|
887
|
-
adding: share/gtk-doc/html/cairo/index-1.6.html (200 bytes security) (deflated 73%)
|
888
|
-
adding: share/gtk-doc/html/cairo/index-1.8.html (200 bytes security) (deflated 80%)
|
889
|
-
adding: share/gtk-doc/html/cairo/index-all.html (200 bytes security) (deflated 88%)
|
890
|
-
adding: share/gtk-doc/html/cairo/index.html (200 bytes security) (deflated 78%)
|
891
|
-
adding: share/gtk-doc/html/cairo/index.sgml (200 bytes security) (deflated 90%)
|
892
|
-
adding: share/gtk-doc/html/cairo/language-bindings.html (200 bytes security) (deflated 63%)
|
893
|
-
adding: share/gtk-doc/html/cairo/left.png (200 bytes security) (stored 0%)
|
894
|
-
adding: share/gtk-doc/html/cairo/right.png (200 bytes security) (stored 0%)
|
895
|
-
adding: share/gtk-doc/html/cairo/style.css (200 bytes security) (deflated 67%)
|
896
|
-
adding: share/gtk-doc/html/cairo/up.png (200 bytes security) (stored 0%)
|
897
|
-
zip warning: name not matched: lib/cairo.lib
|
898
|
-
++ cp cairo-1.8.10.zip /tmp/cairo_1.8.10-4_win32.zip
|
899
|
-
++ cp cairo-dev-1.8.10.zip /tmp/cairo-dev_1.8.10-4_win32.zip
|
900
|
-
++ cp -p src/cairo.def /devel/target/1c95f04ba92ba301d7056b59ff23aa94/lib
|
901
|
-
++ mkdir -p /devel/target/1c95f04ba92ba301d7056b59ff23aa94/share/doc/cairo_1.8.10-4_win32
|
902
|
-
++ cp -p COPYING COPYING-LGPL-2.1 COPYING-MPL-1.1 /devel/target/1c95f04ba92ba301d7056b59ff23aa94/share/doc/cairo_1.8.10-4_win32
|
903
|
-
++ cd /devel/target/1c95f04ba92ba301d7056b59ff23aa94
|
904
|
-
++ cd lib
|
905
|
-
++ lib.exe -machine:X86 -def:cairo.def -out:cairo.lib
|
906
|
-
Microsoft (R) Library Manager Version 6.00.8447
|
907
|
-
Copyright (C) Microsoft Corp 1992-1998. All rights reserved.
|
908
|
-
|
909
|
-
Creating library cairo.lib and object cairo.exp
|
910
|
-
++ zip /tmp/cairo-dev_1.8.10-4_win32.zip lib/cairo.def lib/cairo.lib
|
911
|
-
adding: lib/cairo.def (200 bytes security) (deflated 79%)
|
912
|
-
adding: lib/cairo.lib (200 bytes security) (deflated 87%)
|
913
|
-
++ zip -r -D /tmp/cairo_1.8.10-4_win32.zip share/doc/cairo_1.8.10-4_win32
|
914
|
-
adding: share/doc/cairo_1.8.10-4_win32/COPYING (200 bytes security) (deflated 55%)
|
915
|
-
adding: share/doc/cairo_1.8.10-4_win32/COPYING-LGPL-2.1 (200 bytes security) (deflated 65%)
|
916
|
-
adding: share/doc/cairo_1.8.10-4_win32/COPYING-MPL-1.1 (200 bytes security) (deflated 68%)
|
917
|
-
++ sed -e 's/ pixman-1 >= 0.12.0//'
|
918
|
-
++ mv lib/pkgconfig/cairo.pc.temp lib/pkgconfig/cairo.pc
|
919
|
-
++ zip /tmp/cairo-dev_1.8.10-4_win32.zip lib/pkgconfig/cairo.pc
|
920
|
-
updating: lib/pkgconfig/cairo.pc (200 bytes security) (deflated 33%)
|