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
@@ -6,24 +6,14 @@
|
|
6
6
|
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
|
7
7
|
<link rel="home" href="index.html" title="Cairo: A Vector Graphics Library">
|
8
8
|
<link rel="up" href="index.html" title="Cairo: A Vector Graphics Library">
|
9
|
-
<link rel="prev" href="index-1.
|
9
|
+
<link rel="prev" href="index-1.10.html" title="Index of new symbols in 1.10">
|
10
10
|
<link rel="next" href="bindings-memory.html" title="Memory management">
|
11
|
-
<meta name="generator" content="GTK-Doc V1.
|
11
|
+
<meta name="generator" content="GTK-Doc V1.15 (XML mode)">
|
12
12
|
<link rel="stylesheet" href="style.css" type="text/css">
|
13
|
-
<link rel="chapter" href="cairo-drawing.html" title="Drawing">
|
14
|
-
<link rel="chapter" href="cairo-fonts.html" title="Fonts">
|
15
|
-
<link rel="chapter" href="cairo-surfaces.html" title="Surfaces">
|
16
|
-
<link rel="chapter" href="cairo-support.html" title="Utilities">
|
17
|
-
<link rel="index" href="index-all.html" title="Index">
|
18
|
-
<link rel="index" href="index-1.2.html" title="Index of new symbols in 1.2">
|
19
|
-
<link rel="index" href="index-1.4.html" title="Index of new symbols in 1.4">
|
20
|
-
<link rel="index" href="index-1.6.html" title="Index of new symbols in 1.6">
|
21
|
-
<link rel="index" href="index-1.8.html" title="Index of new symbols in 1.8">
|
22
|
-
<link rel="appendix" href="language-bindings.html" title="Appendix A. Creating a language binding for cairo">
|
23
13
|
</head>
|
24
14
|
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
25
15
|
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
|
26
|
-
<td><a accesskey="p" href="index-1.
|
16
|
+
<td><a accesskey="p" href="index-1.10.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
|
27
17
|
<td> </td>
|
28
18
|
<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
|
29
19
|
<th width="100%" align="center">Cairo: A Vector Graphics Library</th>
|
@@ -46,7 +36,7 @@
|
|
46
36
|
<div class="titlepage"><div><div><h2 class="title" style="clear: both">
|
47
37
|
<a name="bindings-general"></a>General considerations</h2></div></div></div>
|
48
38
|
<p>
|
49
|
-
The naming of the central <a class="link" href="cairo-
|
39
|
+
The naming of the central <a class="link" href="cairo-cairo-t.html#cairo-t" title="cairo_t"><span class="type">cairo_t</span></a> type is a
|
50
40
|
special exception. The object is “a cairo context” not “a
|
51
41
|
cairo”, and names such as <span class="type">cairo_t</span> rather than
|
52
42
|
<span class="type">cairo_context_t</span> and
|
@@ -78,6 +68,6 @@
|
|
78
68
|
</div>
|
79
69
|
<div class="footer">
|
80
70
|
<hr>
|
81
|
-
Generated by GTK-Doc V1.
|
71
|
+
Generated by GTK-Doc V1.15</div>
|
82
72
|
</body>
|
83
|
-
</html>
|
73
|
+
</html>
|
@@ -1,13 +1,15 @@
|
|
1
1
|
.synopsis, .classsynopsis
|
2
2
|
{
|
3
|
-
|
4
|
-
|
3
|
+
/* tango:aluminium 1/2 */
|
4
|
+
background: #eeeeec;
|
5
|
+
border: solid 1px #d3d7cf;
|
5
6
|
padding: 0.5em;
|
6
7
|
}
|
7
8
|
.programlisting
|
8
9
|
{
|
9
|
-
|
10
|
-
|
10
|
+
/* tango:sky blue 0/1 */
|
11
|
+
background: #e6f3ff;
|
12
|
+
border: solid 1px #729fcf;
|
11
13
|
padding: 0.5em;
|
12
14
|
}
|
13
15
|
.variablelist
|
@@ -20,64 +22,63 @@
|
|
20
22
|
vertical-align: top;
|
21
23
|
}
|
22
24
|
|
23
|
-
/* this is needed so that the local anchors are displayed below the naviagtion */
|
24
25
|
@media screen {
|
25
26
|
sup a.footnote
|
26
27
|
{
|
27
28
|
position: relative;
|
28
29
|
top: 0em ! important;
|
30
|
+
|
29
31
|
}
|
30
|
-
|
32
|
+
/* this is needed so that the local anchors are displayed below the naviagtion */
|
33
|
+
div.footnote a[name], div.refnamediv a[name], div.refsect1 a[name], div.refsect2 a[name], div.index a[name], div.glossary a[name], div.sect1 a[name]
|
31
34
|
{
|
32
35
|
position: relative;
|
33
|
-
top:
|
36
|
+
padding-top:4.5em;
|
34
37
|
}
|
38
|
+
/* this seems to be a bug in the xsl style sheets when generating indexes */
|
39
|
+
div.index div.index
|
40
|
+
{
|
41
|
+
top: 0em;
|
42
|
+
}
|
43
|
+
/* make space for the fixed navigation bar and add space at the bottom so that
|
44
|
+
* link targets appear somewhat close to top
|
45
|
+
*/
|
46
|
+
body
|
47
|
+
{
|
48
|
+
padding-top: 3.2em;
|
49
|
+
padding-bottom: 20em;
|
50
|
+
}
|
51
|
+
/* style and size the navigation bar */
|
35
52
|
table.navigation#top
|
36
53
|
{
|
37
|
-
|
38
|
-
|
54
|
+
position: fixed;
|
55
|
+
/* tango:scarlet red 0/1 */
|
56
|
+
background: #ffe6e6;
|
57
|
+
border: solid 1px #ef2929;
|
39
58
|
margin-top: 0;
|
40
59
|
margin-bottom: 0;
|
41
|
-
position: fixed;
|
42
60
|
top: 0;
|
43
61
|
left: 0;
|
44
|
-
height:
|
45
|
-
z-index:
|
62
|
+
height: 3em;
|
63
|
+
z-index: 10;
|
46
64
|
}
|
47
|
-
.navigation a
|
65
|
+
.navigation a, .navigation a:visited
|
48
66
|
{
|
49
|
-
|
67
|
+
/* tango:scarlet red 3 */
|
68
|
+
color: #a40000;
|
50
69
|
}
|
51
|
-
.navigation a:
|
70
|
+
.navigation a:hover
|
52
71
|
{
|
53
|
-
|
72
|
+
/* tango:scarlet red 1 */
|
73
|
+
color: #ef2929;
|
54
74
|
}
|
55
75
|
td.shortcuts
|
56
76
|
{
|
57
|
-
|
77
|
+
/* tango:scarlet red 1 */
|
78
|
+
color: #ef2929;
|
58
79
|
font-size: 80%;
|
59
80
|
white-space: nowrap;
|
60
81
|
}
|
61
|
-
div.refentry, div.chapter, div.reference, div.part, div.book, div.glossary, div.sect1, div.appendix, div.preface
|
62
|
-
{
|
63
|
-
position: relative;
|
64
|
-
top: 3em;
|
65
|
-
z-index: 0;
|
66
|
-
}
|
67
|
-
div.glossary, div.index
|
68
|
-
{
|
69
|
-
position: relative;
|
70
|
-
top: 2em;
|
71
|
-
z-index: 0;
|
72
|
-
}
|
73
|
-
div.refnamediv
|
74
|
-
{
|
75
|
-
margin-top: 2em;
|
76
|
-
}
|
77
|
-
body
|
78
|
-
{
|
79
|
-
padding-bottom: 20em;
|
80
|
-
}
|
81
82
|
}
|
82
83
|
@media print {
|
83
84
|
table.navigation {
|
@@ -87,13 +88,14 @@
|
|
87
88
|
div.titlepage table.navigation {
|
88
89
|
visibility: visible;
|
89
90
|
display: table;
|
90
|
-
|
91
|
-
|
91
|
+
/* tango:scarlet red 0/1 */
|
92
|
+
background: #ffe6e6;
|
93
|
+
border: solid 1px #ef2929;
|
92
94
|
margin-top: 0;
|
93
95
|
margin-bottom: 0;
|
94
96
|
top: 0;
|
95
97
|
left: 0;
|
96
|
-
height:
|
98
|
+
height: 3em;
|
97
99
|
}
|
98
100
|
}
|
99
101
|
|
@@ -102,7 +104,6 @@
|
|
102
104
|
font-size: 200%;
|
103
105
|
}
|
104
106
|
|
105
|
-
|
106
107
|
div.gallery-float
|
107
108
|
{
|
108
109
|
float: left;
|
@@ -116,44 +117,48 @@ div.gallery-spacer
|
|
116
117
|
{
|
117
118
|
clear: both;
|
118
119
|
}
|
119
|
-
|
120
|
+
|
121
|
+
a, a:visited
|
120
122
|
{
|
121
123
|
text-decoration: none;
|
124
|
+
/* tango:sky blue 2 */
|
125
|
+
color: #3465a4;
|
122
126
|
}
|
123
127
|
a:hover
|
124
128
|
{
|
125
129
|
text-decoration: underline;
|
126
|
-
|
130
|
+
/* tango:sky blue 1 */
|
131
|
+
color: #729fcf;
|
127
132
|
}
|
128
133
|
|
129
134
|
div.table table
|
130
135
|
{
|
131
136
|
border-collapse: collapse;
|
132
137
|
border-spacing: 0px;
|
133
|
-
|
134
|
-
border
|
135
|
-
border-width: 1px;
|
138
|
+
/* tango:aluminium 3 */
|
139
|
+
border: solid 1px #babdb6;
|
136
140
|
}
|
137
141
|
|
138
142
|
div.table table td, div.table table th
|
139
143
|
{
|
140
|
-
|
141
|
-
border
|
142
|
-
border-width: 1px;
|
144
|
+
/* tango:aluminium 3 */
|
145
|
+
border: solid 1px #babdb6;
|
143
146
|
padding: 3px;
|
144
147
|
vertical-align: top;
|
145
148
|
}
|
146
149
|
|
147
150
|
div.table table th
|
148
151
|
{
|
149
|
-
|
152
|
+
/* tango:aluminium 2 */
|
153
|
+
background-color: #d3d7cf;
|
150
154
|
}
|
151
155
|
|
152
156
|
hr
|
153
157
|
{
|
154
|
-
|
155
|
-
|
156
|
-
|
158
|
+
/* tango:aluminium 3 */
|
159
|
+
color: #babdb6;
|
160
|
+
background: #babdb6;
|
161
|
+
border: none 0px;
|
157
162
|
height: 1px;
|
158
163
|
clear: both;
|
159
164
|
}
|
@@ -161,7 +166,100 @@ hr
|
|
161
166
|
.footer
|
162
167
|
{
|
163
168
|
padding-top: 3.5em;
|
164
|
-
|
169
|
+
/* tango:aluminium 3 */
|
170
|
+
color: #babdb6;
|
165
171
|
text-align: center;
|
166
172
|
font-size: 80%;
|
167
173
|
}
|
174
|
+
|
175
|
+
.warning
|
176
|
+
{
|
177
|
+
/* tango:orange 0/1 */
|
178
|
+
background: #ffeed9;
|
179
|
+
border-color: #ffb04f;
|
180
|
+
}
|
181
|
+
.note
|
182
|
+
{
|
183
|
+
/* tango:chameleon 0/0.5 */
|
184
|
+
background: #d8ffb2;
|
185
|
+
border-color: #abf562;
|
186
|
+
}
|
187
|
+
.note, .warning
|
188
|
+
{
|
189
|
+
padding: 0.5em;
|
190
|
+
border-width: 1px;
|
191
|
+
border-style: solid;
|
192
|
+
}
|
193
|
+
.note h3, .warning h3
|
194
|
+
{
|
195
|
+
margin-top: 0.0em
|
196
|
+
}
|
197
|
+
.note p, .warning p
|
198
|
+
{
|
199
|
+
margin-bottom: 0.0em
|
200
|
+
}
|
201
|
+
|
202
|
+
/* blob links */
|
203
|
+
h2 .extralinks, h3 .extralinks
|
204
|
+
{
|
205
|
+
float: right;
|
206
|
+
/* tango:aluminium 3 */
|
207
|
+
color: #babdb6;
|
208
|
+
font-size: 80%;
|
209
|
+
font-weight: normal;
|
210
|
+
}
|
211
|
+
|
212
|
+
.annotation
|
213
|
+
{
|
214
|
+
/* tango:aluminium 5 */
|
215
|
+
color: #555753;
|
216
|
+
font-size: 80%;
|
217
|
+
font-weight: normal;
|
218
|
+
}
|
219
|
+
|
220
|
+
/* code listings */
|
221
|
+
|
222
|
+
.listing_code .programlisting .cbracket { color: #a40000; } /* tango: scarlet red 3 */
|
223
|
+
.listing_code .programlisting .comment { color: #a1a39d; } /* tango: aluminium 4 */
|
224
|
+
.listing_code .programlisting .function { color: #000000; font-weight: bold; }
|
225
|
+
.listing_code .programlisting .function a { color: #11326b; font-weight: bold; } /* tango: sky blue 4 */
|
226
|
+
.listing_code .programlisting .keyword { color: #4e9a06; } /* tango: chameleon 3 */
|
227
|
+
.listing_code .programlisting .linenum { color: #babdb6; } /* tango: aluminium 3 */
|
228
|
+
.listing_code .programlisting .normal { color: #000000; }
|
229
|
+
.listing_code .programlisting .number { color: #75507b; } /* tango: plum 2 */
|
230
|
+
.listing_code .programlisting .preproc { color: #204a87; } /* tango: sky blue 3 */
|
231
|
+
.listing_code .programlisting .string { color: #c17d11; } /* tango: chocolate 2 */
|
232
|
+
.listing_code .programlisting .type { color: #000000; }
|
233
|
+
.listing_code .programlisting .type a { color: #11326b; } /* tango: sky blue 4 */
|
234
|
+
.listing_code .programlisting .symbol { color: #ce5c00; } /* tango: orange 3 */
|
235
|
+
|
236
|
+
.listing_frame {
|
237
|
+
/* tango:sky blue 1 */
|
238
|
+
border: solid 1px #729fcf;
|
239
|
+
padding: 0px;
|
240
|
+
}
|
241
|
+
|
242
|
+
.listing_lines, .listing_code {
|
243
|
+
margin-top: 0px;
|
244
|
+
margin-bottom: 0px;
|
245
|
+
padding: 0.5em;
|
246
|
+
}
|
247
|
+
.listing_lines {
|
248
|
+
/* tango:sky blue 0.5 */
|
249
|
+
background: #a6c5e3;
|
250
|
+
/* tango:aluminium 6 */
|
251
|
+
color: #2e3436;
|
252
|
+
}
|
253
|
+
.listing_code {
|
254
|
+
/* tango:sky blue 0 */
|
255
|
+
background: #e6f3ff;
|
256
|
+
}
|
257
|
+
.listing_code .programlisting {
|
258
|
+
/* override from previous */
|
259
|
+
border: none 0px;
|
260
|
+
padding: 0px;
|
261
|
+
}
|
262
|
+
.listing_lines pre, .listing_code pre {
|
263
|
+
margin: 0px;
|
264
|
+
}
|
265
|
+
|
@@ -0,0 +1,1262 @@
|
|
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-2 pkg-config-0.23-3 pixman-0.18.4-2 libpng-1.4.3-1 fontconfig-2.8.0-2 freetype-2.4.2-1'
|
7
|
+
++ PKG_CONFIG_PATH=/dummy
|
8
|
+
++ for D in '$DEPS'
|
9
|
+
++ PATH='/devel/dist/win32/glib-2.24.2-2/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-2/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-2/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-2/lib/pkgconfig:/dummy
|
14
|
+
++ for D in '$DEPS'
|
15
|
+
++ PATH='/devel/dist/win32/pixman-0.18.4-2/bin:/devel/dist/win32/pkg-config-0.23-3/bin:/devel/dist/win32/glib-2.24.2-2/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-2/lib/pkgconfig:/devel/dist/win32/pkg-config-0.23-3/lib/pkgconfig:/devel/dist/win32/glib-2.24.2-2/lib/pkgconfig:/dummy
|
17
|
+
++ for D in '$DEPS'
|
18
|
+
++ PATH='/devel/dist/win32/libpng-1.4.3-1/bin:/devel/dist/win32/pixman-0.18.4-2/bin:/devel/dist/win32/pkg-config-0.23-3/bin:/devel/dist/win32/glib-2.24.2-2/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.3-1/lib/pkgconfig:/devel/dist/win32/pixman-0.18.4-2/lib/pkgconfig:/devel/dist/win32/pkg-config-0.23-3/lib/pkgconfig:/devel/dist/win32/glib-2.24.2-2/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.3-1/bin:/devel/dist/win32/pixman-0.18.4-2/bin:/devel/dist/win32/pkg-config-0.23-3/bin:/devel/dist/win32/glib-2.24.2-2/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.3-1/lib/pkgconfig:/devel/dist/win32/pixman-0.18.4-2/lib/pkgconfig:/devel/dist/win32/pkg-config-0.23-3/lib/pkgconfig:/devel/dist/win32/glib-2.24.2-2/lib/pkgconfig:/dummy
|
23
|
+
++ for D in '$DEPS'
|
24
|
+
++ PATH='/devel/dist/win32/freetype-2.4.2-1/bin:/devel/dist/win32/fontconfig-2.8.0-2/bin:/devel/dist/win32/libpng-1.4.3-1/bin:/devel/dist/win32/pixman-0.18.4-2/bin:/devel/dist/win32/pkg-config-0.23-3/bin:/devel/dist/win32/glib-2.24.2-2/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.4.2-1/lib/pkgconfig:/devel/dist/win32/fontconfig-2.8.0-2/lib/pkgconfig:/devel/dist/win32/libpng-1.4.3-1/lib/pkgconfig:/devel/dist/win32/pixman-0.18.4-2/lib/pkgconfig:/devel/dist/win32/pkg-config-0.23-3/lib/pkgconfig:/devel/dist/win32/glib-2.24.2-2/lib/pkgconfig:/dummy
|
26
|
+
+++ latest --arch=win32 zlib
|
27
|
+
++ ZLIB=zlib-1.2.5-2
|
28
|
+
++ png_REQUIRES=libpng
|
29
|
+
++ CC='gcc -mms-bitfields -mthreads'
|
30
|
+
++ CPPFLAGS=-I/devel/dist/win32/zlib-1.2.5-2/include
|
31
|
+
++ LDFLAGS=-L/devel/dist/win32/zlib-1.2.5-2/lib
|
32
|
+
++ CFLAGS=-O2
|
33
|
+
++ ./configure --disable-static --enable-ft=yes --prefix=c:/devel/target/94d7ecd65464faa6be24937a758e580f
|
34
|
+
checking for gcc... gcc -mms-bitfields -mthreads
|
35
|
+
checking whether the C compiler works... yes
|
36
|
+
checking for C compiler default output file name... a.exe
|
37
|
+
checking for suffix of executables... .exe
|
38
|
+
checking whether we are cross compiling... no
|
39
|
+
checking for suffix of object files... o
|
40
|
+
checking whether we are using the GNU C compiler... yes
|
41
|
+
checking whether gcc -mms-bitfields -mthreads accepts -g... yes
|
42
|
+
checking for gcc -mms-bitfields -mthreads option to accept ISO C89... none needed
|
43
|
+
checking how to run the C preprocessor... gcc -mms-bitfields -mthreads -E
|
44
|
+
checking for grep that handles long lines and -e... /bin/grep
|
45
|
+
checking for egrep... /bin/grep -E
|
46
|
+
checking for ANSI C header files... yes
|
47
|
+
checking for sys/types.h... yes
|
48
|
+
checking for sys/stat.h... yes
|
49
|
+
checking for stdlib.h... yes
|
50
|
+
checking for string.h... yes
|
51
|
+
checking for memory.h... yes
|
52
|
+
checking for strings.h... yes
|
53
|
+
checking for inttypes.h... yes
|
54
|
+
checking for stdint.h... yes
|
55
|
+
checking for unistd.h... yes
|
56
|
+
checking minix/config.h usability... no
|
57
|
+
checking minix/config.h presence... no
|
58
|
+
checking for minix/config.h... no
|
59
|
+
checking whether it is safe to define __EXTENSIONS__... yes
|
60
|
+
checking for a BSD-compatible install... /opt/local/bin/install -c
|
61
|
+
checking whether build environment is sane... yes
|
62
|
+
checking for a thread-safe mkdir -p... /bin/mkdir -p
|
63
|
+
checking for gawk... gawk
|
64
|
+
checking whether make sets $(MAKE)... yes
|
65
|
+
checking for style of include used by make... GNU
|
66
|
+
checking dependency style of gcc -mms-bitfields -mthreads... gcc3
|
67
|
+
checking build system type... i686-pc-mingw32
|
68
|
+
checking host system type... i686-pc-mingw32
|
69
|
+
checking for as... as
|
70
|
+
checking for dlltool... dlltool
|
71
|
+
checking for objdump... objdump
|
72
|
+
checking how to print strings... printf
|
73
|
+
checking for a sed that does not truncate output... /bin/sed
|
74
|
+
checking for fgrep... /bin/grep -F
|
75
|
+
checking for ld used by gcc -mms-bitfields -mthreads... c:/opt/mingw/mingw32/bin/ld.exe
|
76
|
+
checking if the linker (c:/opt/mingw/mingw32/bin/ld.exe) is GNU ld... yes
|
77
|
+
checking for BSD- or MS-compatible name lister (nm)... /opt/mingw/bin/nm
|
78
|
+
checking the name lister (/opt/mingw/bin/nm) interface... BSD nm
|
79
|
+
checking whether ln -s works... yes
|
80
|
+
checking the maximum length of command line arguments... 8192
|
81
|
+
checking whether the shell understands some XSI constructs... yes
|
82
|
+
checking whether the shell understands "+="... yes
|
83
|
+
checking for c:/opt/mingw/mingw32/bin/ld.exe option to reload object files... -r
|
84
|
+
checking for objdump... (cached) objdump
|
85
|
+
checking how to recognize dependent libraries... file_magic file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)
|
86
|
+
checking for ar... ar
|
87
|
+
checking for strip... strip
|
88
|
+
checking for ranlib... ranlib
|
89
|
+
checking command to parse /opt/mingw/bin/nm output from gcc -mms-bitfields -mthreads object... ok
|
90
|
+
checking for dlfcn.h... no
|
91
|
+
checking for objdir... .libs
|
92
|
+
checking if gcc -mms-bitfields -mthreads supports -fno-rtti -fno-exceptions... no
|
93
|
+
checking for gcc -mms-bitfields -mthreads option to produce PIC... -DDLL_EXPORT -DPIC
|
94
|
+
checking if gcc -mms-bitfields -mthreads PIC flag -DDLL_EXPORT -DPIC works... yes
|
95
|
+
checking if gcc -mms-bitfields -mthreads static flag -static works... yes
|
96
|
+
checking if gcc -mms-bitfields -mthreads supports -c -o file.o... yes
|
97
|
+
checking if gcc -mms-bitfields -mthreads supports -c -o file.o... (cached) yes
|
98
|
+
checking whether the gcc -mms-bitfields -mthreads linker (c:/opt/mingw/mingw32/bin/ld.exe) supports shared libraries... yes
|
99
|
+
checking whether -lc should be explicitly linked in... yes
|
100
|
+
checking dynamic linker characteristics... Win32 ld.exe
|
101
|
+
checking how to hardcode library paths into programs... immediate
|
102
|
+
checking whether stripping libraries is possible... yes
|
103
|
+
checking if libtool supports shared libraries... yes
|
104
|
+
checking whether to build shared libraries... yes
|
105
|
+
checking whether to build static libraries... no
|
106
|
+
checking for pkg-config... /devel/dist/win32/pkg-config-0.23-3/bin/pkg-config
|
107
|
+
checking pkg-config is at least version 0.9.0... yes
|
108
|
+
checking whether to build gtk-doc documentation... no
|
109
|
+
checking for gtkdoc-check... no
|
110
|
+
checking for special C compiler options needed for large files... no
|
111
|
+
checking for _FILE_OFFSET_BITS value needed for large files... unknown
|
112
|
+
checking for _LARGE_FILES value needed for large files... unknown
|
113
|
+
checking for find... /bin/find
|
114
|
+
checking for xargs... /bin/xargs
|
115
|
+
checking for gcc... (cached) gcc -mms-bitfields -mthreads
|
116
|
+
checking whether we are using the GNU C compiler... (cached) yes
|
117
|
+
checking whether gcc -mms-bitfields -mthreads accepts -g... (cached) yes
|
118
|
+
checking for gcc -mms-bitfields -mthreads option to accept ISO C89... (cached) none needed
|
119
|
+
checking how to run the C preprocessor... gcc -mms-bitfields -mthreads -E
|
120
|
+
checking for g++... g++
|
121
|
+
checking whether we are using the GNU C++ compiler... yes
|
122
|
+
checking whether g++ accepts -g... yes
|
123
|
+
checking dependency style of g++... gcc3
|
124
|
+
checking how to run the C++ preprocessor... g++ -E
|
125
|
+
checking for ld used by g++... c:/opt/mingw/mingw32/bin/ld.exe
|
126
|
+
checking if the linker (c:/opt/mingw/mingw32/bin/ld.exe) is GNU ld... yes
|
127
|
+
checking whether the g++ linker (c:/opt/mingw/mingw32/bin/ld.exe) supports shared libraries... yes
|
128
|
+
checking for g++ option to produce PIC... -DDLL_EXPORT -DPIC
|
129
|
+
checking if g++ PIC flag -DDLL_EXPORT -DPIC works... yes
|
130
|
+
checking if g++ static flag -static works... yes
|
131
|
+
checking if g++ supports -c -o file.o... yes
|
132
|
+
checking if g++ supports -c -o file.o... (cached) yes
|
133
|
+
checking whether the g++ linker (c:/opt/mingw/mingw32/bin/ld.exe) supports shared libraries... yes
|
134
|
+
checking dynamic linker characteristics... Win32 ld.exe
|
135
|
+
checking how to hardcode library paths into programs... immediate
|
136
|
+
checking whether gcc -mms-bitfields -mthreads and cc understand -c and -o together... yes
|
137
|
+
checking for inline... inline
|
138
|
+
checking for pkg-config... (cached) /devel/dist/win32/pkg-config-0.23-3/bin/pkg-config
|
139
|
+
checking pkg-config is at least version 0.9.0... yes
|
140
|
+
checking for supported warning flags...
|
141
|
+
checking whether gcc -mms-bitfields -mthreads supports -Werror... yes
|
142
|
+
checking whether gcc -mms-bitfields -mthreads supports -errwarn... no
|
143
|
+
checking whether gcc -mms-bitfields -mthreads supports -Wall... yes
|
144
|
+
checking whether gcc -mms-bitfields -mthreads supports -Wextra... yes
|
145
|
+
checking whether gcc -mms-bitfields -mthreads supports -Wold-style-definition... yes
|
146
|
+
checking whether gcc -mms-bitfields -mthreads supports -Wdeclaration-after-statement... yes
|
147
|
+
checking whether gcc -mms-bitfields -mthreads supports -Wmissing-declarations... yes
|
148
|
+
checking whether gcc -mms-bitfields -mthreads supports -Werror-implicit-function-declaration... yes
|
149
|
+
checking whether gcc -mms-bitfields -mthreads supports -Wnested-externs... yes
|
150
|
+
checking whether gcc -mms-bitfields -mthreads supports -Wpointer-arith... yes
|
151
|
+
checking whether gcc -mms-bitfields -mthreads supports -Wwrite-strings... yes
|
152
|
+
checking whether gcc -mms-bitfields -mthreads supports -Wsign-compare... yes
|
153
|
+
checking whether gcc -mms-bitfields -mthreads supports -Wstrict-prototypes... yes
|
154
|
+
checking whether gcc -mms-bitfields -mthreads supports -Wmissing-prototypes... yes
|
155
|
+
checking whether gcc -mms-bitfields -mthreads supports -Wpacked... yes
|
156
|
+
checking whether gcc -mms-bitfields -mthreads supports -Wswitch-enum... yes
|
157
|
+
checking whether gcc -mms-bitfields -mthreads supports -Wmissing-format-attribute... yes
|
158
|
+
checking whether gcc -mms-bitfields -mthreads supports -Wbad-function-cast... yes
|
159
|
+
checking whether gcc -mms-bitfields -mthreads supports -Wvolatile-register-var... yes
|
160
|
+
checking whether gcc -mms-bitfields -mthreads supports -Wstrict-aliasing=2... yes
|
161
|
+
checking whether gcc -mms-bitfields -mthreads supports -Winit-self... yes
|
162
|
+
checking whether gcc -mms-bitfields -mthreads supports -Wunsafe-loop-optimizations... yes
|
163
|
+
checking whether gcc -mms-bitfields -mthreads supports -Wno-missing-field-initializers... yes
|
164
|
+
checking whether gcc -mms-bitfields -mthreads supports -Wno-unused-parameter... yes
|
165
|
+
checking whether gcc -mms-bitfields -mthreads supports -Wno-attributes... yes
|
166
|
+
checking whether gcc -mms-bitfields -mthreads supports -Wno-long-long... yes
|
167
|
+
checking whether gcc -mms-bitfields -mthreads supports -Winline... yes
|
168
|
+
checking whether gcc -mms-bitfields -mthreads supports -Wlogical-op... yes
|
169
|
+
checking whether gcc -mms-bitfields -mthreads supports -erroff=E_ENUM_TYPE_MISMATCH_ARG... no
|
170
|
+
checking whether gcc -mms-bitfields -mthreads supports -erroff=E_ENUM_TYPE_MISMATCH_OP... no
|
171
|
+
checking whether gcc -mms-bitfields -mthreads supports -fno-strict-aliasing... yes
|
172
|
+
checking whether gcc -mms-bitfields -mthreads supports -fno-common... yes
|
173
|
+
checking whether gcc -mms-bitfields -mthreads supports -flto... no
|
174
|
+
checking whether gcc -mms-bitfields -mthreads supports -Wp,-D_FORTIFY_SOURCE=2... yes
|
175
|
+
checking which warning flags were supported... -Wall -Wextra -Wold-style-definition -Wdeclaration-after-statement -Wmissing-declarations -Werror-implicit-function-declaration -Wnested-externs -Wpointer-arith -Wwrite-strings -Wsign-compare -Wstrict-prototypes -Wmissing-prototypes -Wpacked -Wswitch-enum -Wmissing-format-attribute -Wbad-function-cast -Wvolatile-register-var -Wstrict-aliasing=2 -Winit-self -Wunsafe-loop-optimizations -Wno-missing-field-initializers -Wno-unused-parameter -Wno-attributes -Wno-long-long -Winline -Wlogical-op -fno-strict-aliasing -fno-common -Wp,-D_FORTIFY_SOURCE=2
|
176
|
+
checking how to enable unused result warnings... __attribute__((__warn_unused_result__))
|
177
|
+
checking how to allow undefined symbols in shared libraries used by test suite... checking whether gcc -mms-bitfields -mthreads supports -Wl,--allow-shlib-undefined... yes
|
178
|
+
-Wl,--allow-shlib-undefined
|
179
|
+
checking whether byte ordering is bigendian... no
|
180
|
+
checking whether float word ordering is bigendian... no
|
181
|
+
checking for native atomic primitives... checking atomic_ops.h usability... no
|
182
|
+
checking atomic_ops.h presence... no
|
183
|
+
checking for atomic_ops.h... no
|
184
|
+
checking libkern/OSAtomic.h usability... no
|
185
|
+
checking libkern/OSAtomic.h presence... no
|
186
|
+
checking for libkern/OSAtomic.h... no
|
187
|
+
none
|
188
|
+
checking whether atomic ops require a memory barrier... no
|
189
|
+
checking size of void *... 4
|
190
|
+
checking size of int... 4
|
191
|
+
checking size of long... 4
|
192
|
+
checking size of long long... 8
|
193
|
+
checking size of size_t... 4
|
194
|
+
checking for native Win32... yes
|
195
|
+
checking for Sun Solaris (non-POSIX ctime_r)... no
|
196
|
+
checking for cos in -lm... yes
|
197
|
+
checking for sched_yield in -lrt... no
|
198
|
+
checking for shm_open in -lrt... no
|
199
|
+
checking for connect in -lsocket... no
|
200
|
+
checking for __builtin_return_address(0)... yes
|
201
|
+
checking for stdint.h... (cached) yes
|
202
|
+
checking for inttypes.h... (cached) yes
|
203
|
+
checking sys/int_types.h usability... no
|
204
|
+
checking sys/int_types.h presence... no
|
205
|
+
checking for sys/int_types.h... no
|
206
|
+
checking for uint64_t... yes
|
207
|
+
checking for uint128_t... no
|
208
|
+
checking for __uint128_t... no
|
209
|
+
checking fcntl.h usability... yes
|
210
|
+
checking fcntl.h presence... yes
|
211
|
+
checking for fcntl.h... yes
|
212
|
+
checking for unistd.h... (cached) yes
|
213
|
+
checking signal.h usability... yes
|
214
|
+
checking signal.h presence... yes
|
215
|
+
checking for signal.h... yes
|
216
|
+
checking for sys/stat.h... (cached) yes
|
217
|
+
checking sys/socket.h usability... no
|
218
|
+
checking sys/socket.h presence... no
|
219
|
+
checking for sys/socket.h... no
|
220
|
+
checking sys/poll.h usability... no
|
221
|
+
checking sys/poll.h presence... no
|
222
|
+
checking for sys/poll.h... no
|
223
|
+
checking sys/un.h usability... no
|
224
|
+
checking sys/un.h presence... no
|
225
|
+
checking for sys/un.h... no
|
226
|
+
checking for alarm... no
|
227
|
+
checking sched.h usability... no
|
228
|
+
checking sched.h presence... no
|
229
|
+
checking for sched.h... no
|
230
|
+
checking sys/mman.h usability... no
|
231
|
+
checking sys/mman.h presence... no
|
232
|
+
checking for sys/mman.h... no
|
233
|
+
checking time.h usability... yes
|
234
|
+
checking time.h presence... yes
|
235
|
+
checking for time.h... yes
|
236
|
+
checking for clock_gettime... no
|
237
|
+
checking fenv.h usability... yes
|
238
|
+
checking fenv.h presence... yes
|
239
|
+
checking for fenv.h... yes
|
240
|
+
checking for feenableexcept... no
|
241
|
+
checking for fedisableexcept... no
|
242
|
+
checking for feclearexcept... yes
|
243
|
+
checking libgen.h usability... yes
|
244
|
+
checking libgen.h presence... yes
|
245
|
+
checking for libgen.h... yes
|
246
|
+
checking byteswap.h usability... no
|
247
|
+
checking byteswap.h presence... no
|
248
|
+
checking for byteswap.h... no
|
249
|
+
checking for signal.h... (cached) yes
|
250
|
+
checking setjmp.h usability... yes
|
251
|
+
checking setjmp.h presence... yes
|
252
|
+
checking for setjmp.h... yes
|
253
|
+
checking for fenv.h... (cached) yes
|
254
|
+
checking for vasnprintf... no
|
255
|
+
checking for link... no
|
256
|
+
checking for ctime_r... no
|
257
|
+
checking for drand48... no
|
258
|
+
checking for flockfile... no
|
259
|
+
checking for ffs... no
|
260
|
+
checking windows.h usability... yes
|
261
|
+
checking windows.h presence... yes
|
262
|
+
checking for windows.h... yes
|
263
|
+
checking for sys/stat.h... (cached) yes
|
264
|
+
checking io.h usability... yes
|
265
|
+
checking io.h presence... yes
|
266
|
+
checking for io.h... yes
|
267
|
+
checking for mkdir... yes
|
268
|
+
checking mkdir variant... mkdir(path)
|
269
|
+
checking for fork... no
|
270
|
+
checking for waitpid... no
|
271
|
+
checking for raise... yes
|
272
|
+
checking for VALGRIND... no
|
273
|
+
no
|
274
|
+
checking for compress in -lz... yes
|
275
|
+
checking zlib.h usability... yes
|
276
|
+
checking zlib.h presence... yes
|
277
|
+
checking for zlib.h... yes
|
278
|
+
checking for dlsym in -ldl... no
|
279
|
+
checking for dlsym... no
|
280
|
+
checking for dlfcn.h... (cached) no
|
281
|
+
checking for X... no
|
282
|
+
checking for cairo's Xlib surface backend feature...
|
283
|
+
checking for xlib... no
|
284
|
+
no
|
285
|
+
checking whether cairo's Xlib surface backend feature could be enabled... no (requires X development libraries)
|
286
|
+
checking for cairo's Xlib Xrender surface backend feature...
|
287
|
+
checking whether cairo's Xlib Xrender surface backend feature could be enabled... no (requires --enable-xlib)
|
288
|
+
checking for cairo's XCB/SHM functions feature...
|
289
|
+
checking whether cairo's XCB/SHM functions feature could be enabled... no (requires both --enable-xcb)
|
290
|
+
checking for cairo's Quartz surface backend feature...
|
291
|
+
checking ApplicationServices/ApplicationServices.h usability... no
|
292
|
+
checking ApplicationServices/ApplicationServices.h presence... no
|
293
|
+
checking for ApplicationServices/ApplicationServices.h... no
|
294
|
+
checking CoreGraphics/CoreGraphics.h usability... no
|
295
|
+
checking CoreGraphics/CoreGraphics.h presence... no
|
296
|
+
checking for CoreGraphics/CoreGraphics.h... no
|
297
|
+
checking whether cairo's Quartz surface backend feature could be enabled... no (requires CoreGraphics framework)
|
298
|
+
checking for cairo's Quartz font backend feature...
|
299
|
+
checking whether cairo's Quartz font backend feature could be enabled... no (requires CoreGraphics framework)
|
300
|
+
checking for cairo's Microsoft Windows surface backend feature...
|
301
|
+
checking whether cairo's Microsoft Windows surface backend feature could be enabled... yes
|
302
|
+
checking for cairo's Microsoft Windows font backend feature...
|
303
|
+
checking whether cairo's Microsoft Windows font backend feature could be enabled... yes
|
304
|
+
checking for gs... no
|
305
|
+
configure: WARNING: Win32 Printing backend will not be tested since ghostscript is not available
|
306
|
+
checking for cairo's PNG functions feature...
|
307
|
+
checking for png... yes
|
308
|
+
checking whether cairo's PNG functions feature could be enabled... yes
|
309
|
+
checking for cairo's EGL functions feature...
|
310
|
+
checking whether cairo's EGL functions feature could be enabled... no (not required by any backend)
|
311
|
+
checking for cairo's GLX functions feature...
|
312
|
+
checking whether cairo's GLX functions feature could be enabled... no (not required by any backend)
|
313
|
+
checking for cairo's WGL functions feature...
|
314
|
+
checking whether cairo's WGL functions feature could be enabled... no (not required by any backend)
|
315
|
+
checking for cairo's FreeType font backend feature...
|
316
|
+
checking for FREETYPE... yes
|
317
|
+
checking whether cairo's FreeType font backend feature could be enabled... yes
|
318
|
+
checking for cairo's Fontconfig font backend feature...
|
319
|
+
checking for FONTCONFIG... yes
|
320
|
+
checking whether cairo's Fontconfig font backend feature could be enabled... yes
|
321
|
+
checking for FT_Bitmap_Size.y_ppem... yes
|
322
|
+
checking for FT_GlyphSlot_Embolden... yes
|
323
|
+
checking for FT_Load_Sfnt_Table... yes
|
324
|
+
checking for FT_Library_SetLcdFilter... yes
|
325
|
+
checking for FcInit... yes
|
326
|
+
checking for FcFini... yes
|
327
|
+
checking for cairo's PostScript surface backend feature...
|
328
|
+
checking whether cairo's PostScript surface backend feature could be enabled... yes
|
329
|
+
checking for gs... no
|
330
|
+
configure: WARNING: PS backend will not be tested since ghostscript is not available
|
331
|
+
checking for LIBSPECTRE... no
|
332
|
+
checking for cairo's PDF surface backend feature...
|
333
|
+
checking whether cairo's PDF surface backend feature could be enabled... yes
|
334
|
+
checking for POPPLER... no
|
335
|
+
configure: WARNING: PDF backend will not be tested since poppler >= 0.13.3 is not available
|
336
|
+
checking for cairo's SVG surface backend feature...
|
337
|
+
checking whether cairo's SVG surface backend feature could be enabled... yes
|
338
|
+
checking for LIBRSVG... no
|
339
|
+
configure: WARNING: SVG backend will not be tested since librsvg >= 2.15.0 is not available
|
340
|
+
checking for cairo's image surface backend feature...
|
341
|
+
checking for pixman... yes
|
342
|
+
checking whether cairo's image surface backend feature could be enabled... yes
|
343
|
+
checking for cairo's recording surface backend feature...
|
344
|
+
checking whether cairo's recording surface backend feature could be enabled... yes
|
345
|
+
checking for cairo's user font backend feature...
|
346
|
+
checking whether cairo's user font backend feature could be enabled... yes
|
347
|
+
checking for cairo's pthread feature...
|
348
|
+
checking whether cairo's pthread feature could be enabled... no (can't link with -lpthread or -pthread)
|
349
|
+
checking for cairo's gobject functions feature...
|
350
|
+
checking for GOBJECT... yes
|
351
|
+
checking whether cairo's gobject functions feature could be enabled... yes
|
352
|
+
checking for GOBJECT... yes
|
353
|
+
checking for cairo's cairo-trace feature...
|
354
|
+
checking whether cairo's cairo-trace feature could be enabled... no (requires dynamic linker and zlib and real pthreads)
|
355
|
+
checking for cairo's cairo-script-interpreter feature...
|
356
|
+
checking whether cairo's cairo-script-interpreter feature could be enabled... yes
|
357
|
+
checking for bfd_openr in -lbfd... no
|
358
|
+
checking libiberty.h usability... no
|
359
|
+
checking libiberty.h presence... no
|
360
|
+
checking for libiberty.h... no
|
361
|
+
checking for cairo's symbol-lookup feature...
|
362
|
+
checking whether cairo's symbol-lookup feature could be enabled... no (requires bfd)
|
363
|
+
checking for glib... yes
|
364
|
+
checking for shm_open in -lrt... (cached) no
|
365
|
+
checking for gtk... no
|
366
|
+
configure: creating ./config.status
|
367
|
+
config.status: creating src/cairo.pc
|
368
|
+
config.status: creating cairo-uninstalled.pc
|
369
|
+
config.status: creating src/cairo-win32.pc
|
370
|
+
config.status: creating cairo-win32-uninstalled.pc
|
371
|
+
config.status: creating src/cairo-win32-font.pc
|
372
|
+
config.status: creating cairo-win32-font-uninstalled.pc
|
373
|
+
config.status: creating src/cairo-png.pc
|
374
|
+
config.status: creating cairo-png-uninstalled.pc
|
375
|
+
config.status: creating src/cairo-ft.pc
|
376
|
+
config.status: creating cairo-ft-uninstalled.pc
|
377
|
+
config.status: creating src/cairo-fc.pc
|
378
|
+
config.status: creating cairo-fc-uninstalled.pc
|
379
|
+
config.status: creating src/cairo-ps.pc
|
380
|
+
config.status: creating cairo-ps-uninstalled.pc
|
381
|
+
config.status: creating src/cairo-pdf.pc
|
382
|
+
config.status: creating cairo-pdf-uninstalled.pc
|
383
|
+
config.status: creating src/cairo-svg.pc
|
384
|
+
config.status: creating cairo-svg-uninstalled.pc
|
385
|
+
config.status: creating src/cairo-gobject.pc
|
386
|
+
config.status: creating cairo-gobject-uninstalled.pc
|
387
|
+
config.status: creating Makefile
|
388
|
+
config.status: creating boilerplate/Makefile
|
389
|
+
config.status: creating src/Makefile
|
390
|
+
config.status: creating test/Makefile
|
391
|
+
config.status: creating test/pdiff/Makefile
|
392
|
+
config.status: creating perf/Makefile
|
393
|
+
config.status: creating util/Makefile
|
394
|
+
config.status: creating util/cairo-fdr/Makefile
|
395
|
+
config.status: creating util/cairo-gobject/Makefile
|
396
|
+
config.status: creating util/cairo-script/Makefile
|
397
|
+
config.status: creating util/cairo-script/examples/Makefile
|
398
|
+
config.status: creating util/cairo-sphinx/Makefile
|
399
|
+
config.status: creating util/cairo-trace/Makefile
|
400
|
+
config.status: creating util/cairo-trace/cairo-trace
|
401
|
+
config.status: creating doc/Makefile
|
402
|
+
config.status: creating doc/public/Makefile
|
403
|
+
config.status: creating config.h
|
404
|
+
config.status: executing depfiles commands
|
405
|
+
config.status: executing libtool commands
|
406
|
+
config.status: executing ./build/Makefile.win32.features commands
|
407
|
+
config.status: creating ./build/Makefile.win32.features
|
408
|
+
config.status: ./build/Makefile.win32.features is unchanged
|
409
|
+
config.status: executing ./src/Makefile.am.features commands
|
410
|
+
config.status: creating ./src/Makefile.am.features
|
411
|
+
config.status: ./src/Makefile.am.features is unchanged
|
412
|
+
config.status: executing ./src/Makefile.win32.features commands
|
413
|
+
config.status: creating ./src/Makefile.win32.features
|
414
|
+
config.status: ./src/Makefile.win32.features is unchanged
|
415
|
+
config.status: executing ./boilerplate/Makefile.am.features commands
|
416
|
+
config.status: creating ./boilerplate/Makefile.am.features
|
417
|
+
config.status: ./boilerplate/Makefile.am.features is unchanged
|
418
|
+
config.status: executing ./boilerplate/Makefile.win32.features commands
|
419
|
+
config.status: creating ./boilerplate/Makefile.win32.features
|
420
|
+
config.status: ./boilerplate/Makefile.win32.features is unchanged
|
421
|
+
config.status: executing src/cairo-features.h commands
|
422
|
+
config.status: creating src/cairo-features.h
|
423
|
+
config.status: executing src/cairo-supported-features.h commands
|
424
|
+
config.status: creating src/cairo-supported-features.h
|
425
|
+
config.status: executing ./build/Makefile.win32.features-h commands
|
426
|
+
config.status: creating ./build/Makefile.win32.features-h
|
427
|
+
config.status: ./build/Makefile.win32.features-h is unchanged
|
428
|
+
|
429
|
+
cairo (version 1.10.0 [release]) will be compiled with:
|
430
|
+
|
431
|
+
The following surface backends:
|
432
|
+
Image: yes (always builtin)
|
433
|
+
Meta: yes (always builtin)
|
434
|
+
Tee: yes (always builtin)
|
435
|
+
XML: no (disabled, use --enable-xml to enable)
|
436
|
+
Skia: no (disabled, use --enable-skia to enable)
|
437
|
+
Xlib: no (requires X development libraries)
|
438
|
+
Xlib Xrender: no (requires --enable-xlib)
|
439
|
+
Qt: no (disabled, use --enable-qt to enable)
|
440
|
+
Quartz: no (requires CoreGraphics framework)
|
441
|
+
Quartz-image: no (disabled, use --enable-quartz-image to enable)
|
442
|
+
XCB: no (disabled, use --enable-xcb to enable)
|
443
|
+
Win32: yes
|
444
|
+
OS2: no (disabled, use --enable-os2 to enable)
|
445
|
+
CairoScript: no (disabled, use --enable-script to enable)
|
446
|
+
PostScript: yes
|
447
|
+
PDF: yes
|
448
|
+
SVG: yes
|
449
|
+
OpenGL: no (disabled, use --enable-gl to enable)
|
450
|
+
BeOS: no (disabled, use --enable-beos to enable)
|
451
|
+
DirectFB: no (disabled, use --enable-directfb to enable)
|
452
|
+
OpenVG: no (disabled, use --enable-vg to enable)
|
453
|
+
DRM: no (disabled, use --enable-drm to enable)
|
454
|
+
|
455
|
+
The following font backends:
|
456
|
+
User: yes (always builtin)
|
457
|
+
FreeType: yes
|
458
|
+
Fontconfig: yes
|
459
|
+
Win32: yes
|
460
|
+
Quartz: no (requires CoreGraphics framework)
|
461
|
+
|
462
|
+
The following functions:
|
463
|
+
PNG functions: yes
|
464
|
+
GLEW functions: no (not required by any backend)
|
465
|
+
GLX functions: no (not required by any backend)
|
466
|
+
WGL functions: no (not required by any backend)
|
467
|
+
EGL functions: no (not required by any backend)
|
468
|
+
X11-xcb functions: no (disabled, use --enable-xlib-xcb to enable)
|
469
|
+
XCB-drm functions: no (disabled, use --enable-xcb-drm to enable)
|
470
|
+
XCB-shm functions: no (requires both --enable-xcb)
|
471
|
+
DRM-Xr functions: no (disabled, use --enable-drm-xr to enable)
|
472
|
+
|
473
|
+
The following features and utilities:
|
474
|
+
cairo-trace: no (requires dynamic linker and zlib and real pthreads)
|
475
|
+
cairo-script-interpreter: yes
|
476
|
+
|
477
|
+
And the following internal features:
|
478
|
+
pthread: no (can't link with -lpthread or -pthread)
|
479
|
+
gtk-doc: no
|
480
|
+
gcov support: no
|
481
|
+
symbol-lookup: no (requires bfd)
|
482
|
+
test surfaces: no (disabled, use --enable-test-surfaces to enable)
|
483
|
+
ps testing: no (requires libspectre)
|
484
|
+
pdf testing: no (requires poppler-glib >= 0.13.3)
|
485
|
+
svg testing: no (requires librsvg-2.0 >= 2.15.0)
|
486
|
+
win32 printing testing: no (requires ghostscript)
|
487
|
+
|
488
|
+
|
489
|
+
++ make -j3 zips
|
490
|
+
make install-recursive
|
491
|
+
make[1]: Entering directory `/devel/src/freedesktop/cairo/1.10.0-1_win32'
|
492
|
+
Making install in src
|
493
|
+
make[2]: Entering directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/src'
|
494
|
+
make install-am
|
495
|
+
make[3]: Entering directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/src'
|
496
|
+
CC cairo-analysis-surface.lo
|
497
|
+
CC cairo-arc.lo
|
498
|
+
CC cairo-array.lo
|
499
|
+
cairo-analysis-surface.c: In function '_cairo_analysis_surface_merge_status':
|
500
|
+
cairo-analysis-surface.c:69:5: warning: comparison between 'cairo_int_status_t' and 'enum _cairo_status'
|
501
|
+
cairo-analysis-surface.c:69:5: warning: comparison between 'cairo_int_status_t' and 'enum _cairo_status'
|
502
|
+
cairo-analysis-surface.c:70:5: warning: comparison between 'cairo_int_status_t' and 'enum _cairo_status'
|
503
|
+
cairo-analysis-surface.c:70:5: warning: comparison between 'cairo_int_status_t' and 'enum _cairo_status'
|
504
|
+
cairo-analysis-surface.c:90:5: warning: comparison between 'cairo_int_status_t' and 'enum _cairo_status'
|
505
|
+
cairo-analysis-surface.c:90:5: warning: comparison between 'cairo_int_status_t' and 'enum _cairo_status'
|
506
|
+
cairo-analysis-surface.c: In function '_add_operation':
|
507
|
+
cairo-analysis-surface.c:146:21: warning: comparison between 'cairo_int_status_t' and 'enum _cairo_status'
|
508
|
+
cairo-analysis-surface.c:174:22: warning: comparison between 'cairo_int_status_t' and 'enum _cairo_status'
|
509
|
+
cairo-analysis-surface.c:222:24: warning: comparison between 'cairo_int_status_t' and 'enum _cairo_status'
|
510
|
+
cairo-analysis-surface.c:243:16: warning: comparison between 'cairo_int_status_t' and 'enum _cairo_status'
|
511
|
+
cairo-analysis-surface.c: In function '_cairo_analysis_surface_paint':
|
512
|
+
cairo-analysis-surface.c:326:24: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
513
|
+
cairo-analysis-surface.c: In function '_cairo_analysis_surface_mask':
|
514
|
+
cairo-analysis-surface.c:354:6: warning: comparison between 'cairo_int_status_t' and 'enum _cairo_status'
|
515
|
+
cairo-analysis-surface.c:354:6: warning: comparison between 'cairo_int_status_t' and 'enum _cairo_status'
|
516
|
+
cairo-analysis-surface.c:367:7: warning: comparison between 'cairo_int_status_t' and 'enum _cairo_status'
|
517
|
+
cairo-analysis-surface.c:367:7: warning: comparison between 'cairo_int_status_t' and 'enum _cairo_status'
|
518
|
+
cairo-analysis-surface.c:377:7: warning: comparison between 'cairo_int_status_t' and 'enum _cairo_status'
|
519
|
+
cairo-analysis-surface.c:377:7: warning: comparison between 'cairo_int_status_t' and 'enum _cairo_status'
|
520
|
+
cairo-analysis-surface.c: In function '_cairo_analysis_surface_stroke':
|
521
|
+
cairo-analysis-surface.c:432:24: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
522
|
+
cairo-analysis-surface.c: In function '_cairo_analysis_surface_fill':
|
523
|
+
cairo-analysis-surface.c:496:24: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
524
|
+
cairo-analysis-surface.c: In function '_cairo_analysis_surface_show_glyphs':
|
525
|
+
cairo-analysis-surface.c:568:24: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
526
|
+
cairo-analysis-surface.c: In function '_cairo_analysis_surface_show_text_glyphs':
|
527
|
+
cairo-analysis-surface.c:632:24: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
528
|
+
cairo-analysis-surface.c:652:24: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
529
|
+
CC cairo-atomic.lo
|
530
|
+
CC cairo-base64-stream.lo
|
531
|
+
CC cairo-base85-stream.lo
|
532
|
+
CC cairo-bentley-ottmann.lo
|
533
|
+
CC cairo-bentley-ottmann-rectangular.lo
|
534
|
+
CC cairo-bentley-ottmann-rectilinear.lo
|
535
|
+
CC cairo-botor-scan-converter.lo
|
536
|
+
CC cairo-boxes.lo
|
537
|
+
CC cairo.lo
|
538
|
+
cairo-botor-scan-converter.c: In function 'edges_compare_x_for_y':
|
539
|
+
cairo-botor-scan-converter.c:459:13: warning: 'ax' may be used uninitialized in this function
|
540
|
+
cairo-botor-scan-converter.c:459:17: warning: 'bx' may be used uninitialized in this function
|
541
|
+
CC cairo-cache.lo
|
542
|
+
CC cairo-clip.lo
|
543
|
+
CC cairo-color.lo
|
544
|
+
CC cairo-composite-rectangles.lo
|
545
|
+
cairo-clip.c: In function '_cairo_clip_path_to_region_geometric':
|
546
|
+
cairo-clip.c:595:16: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
547
|
+
cairo-clip.c:626:16: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
548
|
+
CC cairo-debug.lo
|
549
|
+
CC cairo-device.lo
|
550
|
+
CC cairo-fixed.lo
|
551
|
+
CC cairo-font-face.lo
|
552
|
+
cairo-device.c: In function '_cairo_device_set_error':
|
553
|
+
cairo-device.c:451:50: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
554
|
+
CC cairo-font-face-twin.lo
|
555
|
+
CC cairo-font-face-twin-data.lo
|
556
|
+
CC cairo-font-options.lo
|
557
|
+
CC cairo-freelist.lo
|
558
|
+
CC cairo-freed-pool.lo
|
559
|
+
CC cairo-gstate.lo
|
560
|
+
CC cairo-hash.lo
|
561
|
+
CC cairo-hull.lo
|
562
|
+
cairo-gstate.c: In function '_cairo_gstate_copy_clip_rectangle_list':
|
563
|
+
cairo-gstate.c:1565:31: warning: ignoring return value of '_cairo_clip_rectangle', declared with attribute warn_unused_result
|
564
|
+
CC cairo-image-info.lo
|
565
|
+
CC cairo-image-surface.lo
|
566
|
+
CC cairo-lzw.lo
|
567
|
+
cairo-image-surface.c: In function '_pixman_image_for_surface':
|
568
|
+
cairo-image-surface.c:1367:33: warning: comparison between 'cairo_surface_type_t' and 'enum _cairo_internal_surface_type'
|
569
|
+
cairo-image-surface.c: In function '_create_composite_mask_pattern':
|
570
|
+
cairo-image-surface.c:1904:2: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
571
|
+
cairo-image-surface.c:1906:29: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
572
|
+
cairo-image-surface.c: In function '_clip_and_composite':
|
573
|
+
cairo-image-surface.c:2233:6: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
574
|
+
cairo-image-surface.c:2238:29: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
575
|
+
cairo-image-surface.c: In function '_composite_boxes':
|
576
|
+
cairo-image-surface.c:2876:26: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
577
|
+
cairo-image-surface.c: In function '_clip_and_composite_boxes':
|
578
|
+
cairo-image-surface.c:3016:16: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
579
|
+
cairo-image-surface.c: In function '_clip_and_composite_trapezoids':
|
580
|
+
cairo-image-surface.c:3146:29: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
581
|
+
cairo-image-surface.c: In function '_cairo_image_surface_stroke':
|
582
|
+
cairo-image-surface.c:3620:16: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
583
|
+
CC cairo-matrix.lo
|
584
|
+
CC cairo-recording-surface.lo
|
585
|
+
cairo-recording-surface.c: In function '_cairo_recording_surface_get_path':
|
586
|
+
cairo-recording-surface.c:757:17: warning: comparison between 'cairo_int_status_t' and 'enum _cairo_status'
|
587
|
+
cairo-recording-surface.c: In function '_cairo_recording_surface_replay_internal':
|
588
|
+
cairo-recording-surface.c:951:17: warning: comparison between 'cairo_int_status_t' and 'enum _cairo_status'
|
589
|
+
cairo-recording-surface.c:957:3: warning: comparison between 'cairo_int_status_t' and 'enum _cairo_status'
|
590
|
+
cairo-recording-surface.c:957:3: warning: comparison between 'cairo_int_status_t' and 'enum _cairo_status'
|
591
|
+
CC cairo-misc.lo
|
592
|
+
CC cairo-mutex.lo
|
593
|
+
CC cairo-observer.lo
|
594
|
+
cairo-misc.c:44:1: warning: comparison between 'enum _cairo_status' and 'enum _cairo_int_status'
|
595
|
+
CC cairo-output-stream.lo
|
596
|
+
CC cairo-paginated-surface.lo
|
597
|
+
CC cairo-path-bounds.lo
|
598
|
+
cairo-paginated-surface.c: In function '_paint_page':
|
599
|
+
cairo-paginated-surface.c:367:2: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
600
|
+
CC cairo-path.lo
|
601
|
+
CC cairo-path-fill.lo
|
602
|
+
CC cairo-path-fixed.lo
|
603
|
+
CC cairo-path-in-fill.lo
|
604
|
+
CC cairo-path-stroke.lo
|
605
|
+
cairo-path-stroke.c: In function '_cairo_stroker_add_caps':
|
606
|
+
cairo-path-stroke.c:860:29: warning: comparison between 'cairo_line_cap_t' and 'enum _cairo_line_join'
|
607
|
+
CC cairo-pattern.lo
|
608
|
+
cairo-path-stroke.c: In function '_cairo_path_fixed_stroke_to_traps':
|
609
|
+
cairo-path-stroke.c:1407:13: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
610
|
+
CC cairo-pen.lo
|
611
|
+
CC cairo-polygon.lo
|
612
|
+
CC cairo-rectangle.lo
|
613
|
+
CC cairo-rectangular-scan-converter.lo
|
614
|
+
CC cairo-region.lo
|
615
|
+
CC cairo-rtree.lo
|
616
|
+
CC cairo-scaled-font.lo
|
617
|
+
CC cairo-slope.lo
|
618
|
+
CC cairo-spans.lo
|
619
|
+
cairo-scaled-font.c: In function 'cairo_scaled_font_text_to_glyphs':
|
620
|
+
cairo-scaled-font.c:1941:20: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
621
|
+
cairo-scaled-font.c: In function '_cairo_scaled_font_show_glyphs':
|
622
|
+
cairo-scaled-font.c:2219:13: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
623
|
+
cairo-scaled-font.c: In function '_cairo_scaled_font_glyph_path':
|
624
|
+
cairo-scaled-font.c:2494:20: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
625
|
+
cairo-scaled-font.c: In function '_cairo_scaled_glyph_lookup':
|
626
|
+
cairo-scaled-font.c:2848:16: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
627
|
+
CC cairo-spline.lo
|
628
|
+
CC cairo-stroke-style.lo
|
629
|
+
CC cairo-surface.lo
|
630
|
+
cairo-stroke-style.c: In function '_cairo_stroke_style_dash_stroked':
|
631
|
+
cairo-stroke-style.c:194:2: warning: cannot optimize loop, the loop counter may overflow
|
632
|
+
CC cairo-surface-fallback.lo
|
633
|
+
CC cairo-surface-clipper.lo
|
634
|
+
cairo-surface.c: In function '_cairo_surface_set_error':
|
635
|
+
cairo-surface.c:171:16: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
636
|
+
cairo-surface.c:174:50: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
637
|
+
cairo-surface.c: In function '_cairo_surface_clone_similar':
|
638
|
+
cairo-surface.c:1690:13: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
639
|
+
cairo-surface.c:1721:16: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
640
|
+
cairo-surface.c: In function '_cairo_surface_paint':
|
641
|
+
cairo-surface.c:2023:13: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
642
|
+
cairo-surface.c: In function '_cairo_surface_mask':
|
643
|
+
cairo-surface.c:2078:13: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
644
|
+
cairo-surface.c: In function '_cairo_surface_fill_stroke':
|
645
|
+
cairo-surface.c:2146:13: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
646
|
+
cairo-surface.c: In function '_cairo_surface_stroke':
|
647
|
+
cairo-surface.c:2211:13: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
648
|
+
cairo-surface.c: In function '_cairo_surface_fill':
|
649
|
+
cairo-surface.c:2266:13: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
650
|
+
cairo-surface.c: In function '_cairo_surface_show_text_glyphs':
|
651
|
+
cairo-surface.c:2621:13: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
652
|
+
cairo-surface.c:2633:17: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
653
|
+
cairo-surface.c:2648:17: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
654
|
+
cairo-surface.c:2669:16: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
655
|
+
cairo-surface-fallback.c: In function '_create_composite_mask_pattern':
|
656
|
+
cairo-surface-fallback.c:136:6: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
657
|
+
cairo-surface-fallback.c:142:24: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
658
|
+
cairo-surface-fallback.c: In function '_clip_and_composite_source':
|
659
|
+
cairo-surface-fallback.c:351:6: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
660
|
+
cairo-surface-fallback.c: In function '_clip_and_composite':
|
661
|
+
cairo-surface-fallback.c:450:10: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
662
|
+
cairo-surface-fallback.c:456:28: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
663
|
+
cairo-surface-fallback.c: In function '_clip_and_composite_trapezoids':
|
664
|
+
cairo-surface-fallback.c:792:6: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
665
|
+
cairo-surface-fallback.c:795:24: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
666
|
+
cairo-surface-fallback.c:809:24: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
667
|
+
cairo-surface-fallback.c:813:24: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
668
|
+
cairo-surface-fallback.c:852:10: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
669
|
+
cairo-surface-fallback.c: In function '_cairo_surface_old_show_glyphs_draw_func':
|
670
|
+
cairo-surface-fallback.c:1282:16: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
671
|
+
CC cairo-surface-offset.lo
|
672
|
+
CC cairo-surface-snapshot.lo
|
673
|
+
CC cairo-surface-subsurface.lo
|
674
|
+
CC cairo-surface-wrapper.lo
|
675
|
+
CC cairo-system.lo
|
676
|
+
CC cairo-tor-scan-converter.lo
|
677
|
+
cairo-surface-wrapper.c: In function '_cairo_surface_wrapper_get_extents':
|
678
|
+
cairo-surface-wrapper.c:659:33: warning: ignoring return value of '_cairo_rectangle_intersect', declared with attribute warn_unused_result
|
679
|
+
CC cairo-toy-font-face.lo
|
680
|
+
CC cairo-traps.lo
|
681
|
+
CC cairo-unicode.lo
|
682
|
+
CC cairo-user-font.lo
|
683
|
+
CC cairo-version.lo
|
684
|
+
cairo-user-font.c: In function '_cairo_user_scaled_glyph_init':
|
685
|
+
cairo-user-font.c:161:17: warning: comparison between 'cairo_int_status_t' and 'enum _cairo_status'
|
686
|
+
cairo-user-font.c: In function '_cairo_user_text_to_glyphs':
|
687
|
+
cairo-user-font.c:331:13: warning: comparison between 'cairo_int_status_t' and 'enum _cairo_status'
|
688
|
+
cairo-user-font.c:332:13: warning: comparison between 'cairo_int_status_t' and 'enum _cairo_status'
|
689
|
+
cairo-user-font.c:335:13: warning: comparison between 'cairo_int_status_t' and 'enum _cairo_status'
|
690
|
+
CC cairo-wideint.lo
|
691
|
+
CC cairo-cff-subset.lo
|
692
|
+
CC cairo-scaled-font-subsets.lo
|
693
|
+
cairo-cff-subset.c: In function 'cairo_cff_font_write_fdselect':
|
694
|
+
cairo-cff-subset.c:1407:9: warning: comparison between 'cairo_int_status_t' and 'enum _cairo_status'
|
695
|
+
cairo-cff-subset.c:1411:9: warning: comparison between 'cairo_int_status_t' and 'enum _cairo_status'
|
696
|
+
cairo-cff-subset.c:1415:9: warning: comparison between 'cairo_int_status_t' and 'enum _cairo_status'
|
697
|
+
cairo-cff-subset.c:1419:9: warning: comparison between 'cairo_int_status_t' and 'enum _cairo_status'
|
698
|
+
cairo-cff-subset.c:1423:9: warning: comparison between 'cairo_int_status_t' and 'enum _cairo_status'
|
699
|
+
cairo-scaled-font-subsets.c: In function '_cairo_sub_font_map_glyph':
|
700
|
+
cairo-scaled-font-subsets.c:485:2: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
701
|
+
cairo-scaled-font-subsets.c: In function '_cairo_scaled_font_subsets_map_glyph':
|
702
|
+
cairo-scaled-font-subsets.c:702:17: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
703
|
+
cairo-scaled-font-subsets.c:717:13: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
704
|
+
CC cairo-truetype-subset.lo
|
705
|
+
CC cairo-type1-fallback.lo
|
706
|
+
cairo-truetype-subset.c: In function '_cairo_truetype_font_set_error':
|
707
|
+
cairo-truetype-subset.c:125:50: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
708
|
+
cairo-truetype-subset.c: In function 'cairo_truetype_font_create_truetype_table_list':
|
709
|
+
cairo-truetype-subset.c:1003:46: warning: comparison between 'cairo_int_status_t' and 'enum _cairo_status'
|
710
|
+
cairo-truetype-subset.c:1009:46: warning: comparison between 'cairo_int_status_t' and 'enum _cairo_status'
|
711
|
+
cairo-truetype-subset.c:1015:46: warning: comparison between 'cairo_int_status_t' and 'enum _cairo_status'
|
712
|
+
cairo-truetype-subset.c: In function '_cairo_truetype_index_to_ucs4':
|
713
|
+
cairo-truetype-subset.c:1314:24: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
714
|
+
CC cairo-type1-subset.lo
|
715
|
+
cairo-type1-fallback.c: In function 'cairo_type1_font_write_private_dict':
|
716
|
+
cairo-type1-fallback.c:615:16: warning: comparison between 'cairo_int_status_t' and 'enum _cairo_status'
|
717
|
+
CC cairo-type3-glyph-surface.lo
|
718
|
+
CC cairo-pdf-operators.lo
|
719
|
+
cairo-type3-glyph-surface.c: In function '_cairo_type3_glyph_surface_analyze_glyph':
|
720
|
+
cairo-type3-glyph-surface.c:439:16: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
721
|
+
cairo-type3-glyph-surface.c:450:16: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
722
|
+
cairo-type3-glyph-surface.c: In function '_cairo_type3_glyph_surface_emit_glyph':
|
723
|
+
cairo-type3-glyph-surface.c:487:16: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
724
|
+
cairo-type3-glyph-surface.c:554:16: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
725
|
+
CC cairo-deflate-stream.lo
|
726
|
+
cairo-pdf-operators.c: In function '_cairo_pdf_operators_emit_stroke':
|
727
|
+
cairo-pdf-operators.c:770:16: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
728
|
+
CC cairo-win32-surface.lo
|
729
|
+
CC cairo-win32-printing-surface.lo
|
730
|
+
CC cairo-win32-font.lo
|
731
|
+
cairo-win32-surface.c: In function '_create_dc_and_bitmap':
|
732
|
+
cairo-win32-surface.c:202:5: warning: enumeration value 'CAIRO_FORMAT_RGB16_565' not handled in switch
|
733
|
+
cairo-win32-surface.c:236:5: warning: enumeration value 'CAIRO_FORMAT_INVALID' not handled in switch
|
734
|
+
cairo-win32-surface.c:236:5: warning: enumeration value 'CAIRO_FORMAT_RGB16_565' not handled in switch
|
735
|
+
cairo-win32-surface.c:312:2: warning: enumeration value 'CAIRO_FORMAT_INVALID' not handled in switch
|
736
|
+
cairo-win32-surface.c:312:2: warning: enumeration value 'CAIRO_FORMAT_RGB16_565' not handled in switch
|
737
|
+
cairo-win32-surface.c: In function '_cairo_win32_surface_composite':
|
738
|
+
cairo-win32-surface.c:1258:23: warning: comparison between signed and unsigned integer expressions
|
739
|
+
cairo-win32-surface.c:1264:45: warning: comparison between signed and unsigned integer expressions
|
740
|
+
cairo-win32-surface.c:1268:19: warning: comparison between signed and unsigned integer expressions
|
741
|
+
cairo-win32-surface.c:1274:40: warning: comparison between signed and unsigned integer expressions
|
742
|
+
cairo-win32-surface.c:1290:14: warning: comparison between 'cairo_int_status_t' and 'enum _cairo_status'
|
743
|
+
cairo-win32-surface.c:1311:16: warning: comparison between 'cairo_int_status_t' and 'enum _cairo_status'
|
744
|
+
cairo-win32-surface.c: In function 'categorize_solid_dest_operator':
|
745
|
+
cairo-win32-surface.c:1350:5: warning: enumeration value 'CAIRO_OPERATOR_MULTIPLY' not handled in switch
|
746
|
+
cairo-win32-surface.c:1350:5: warning: enumeration value 'CAIRO_OPERATOR_SCREEN' not handled in switch
|
747
|
+
cairo-win32-surface.c:1350:5: warning: enumeration value 'CAIRO_OPERATOR_OVERLAY' not handled in switch
|
748
|
+
cairo-win32-surface.c:1350:5: warning: enumeration value 'CAIRO_OPERATOR_DARKEN' not handled in switch
|
749
|
+
cairo-win32-surface.c:1350:5: warning: enumeration value 'CAIRO_OPERATOR_LIGHTEN' not handled in switch
|
750
|
+
cairo-win32-surface.c:1350:5: warning: enumeration value 'CAIRO_OPERATOR_COLOR_DODGE' not handled in switch
|
751
|
+
cairo-win32-surface.c:1350:5: warning: enumeration value 'CAIRO_OPERATOR_COLOR_BURN' not handled in switch
|
752
|
+
cairo-win32-surface.c:1350:5: warning: enumeration value 'CAIRO_OPERATOR_HARD_LIGHT' not handled in switch
|
753
|
+
cairo-win32-surface.c:1350:5: warning: enumeration value 'CAIRO_OPERATOR_SOFT_LIGHT' not handled in switch
|
754
|
+
cairo-win32-surface.c:1350:5: warning: enumeration value 'CAIRO_OPERATOR_DIFFERENCE' not handled in switch
|
755
|
+
cairo-win32-surface.c:1350:5: warning: enumeration value 'CAIRO_OPERATOR_EXCLUSION' not handled in switch
|
756
|
+
cairo-win32-surface.c:1350:5: warning: enumeration value 'CAIRO_OPERATOR_HSL_HUE' not handled in switch
|
757
|
+
cairo-win32-surface.c:1350:5: warning: enumeration value 'CAIRO_OPERATOR_HSL_SATURATION' not handled in switch
|
758
|
+
cairo-win32-surface.c:1350:5: warning: enumeration value 'CAIRO_OPERATOR_HSL_COLOR' not handled in switch
|
759
|
+
cairo-win32-surface.c:1350:5: warning: enumeration value 'CAIRO_OPERATOR_HSL_LUMINOSITY' not handled in switch
|
760
|
+
cairo-win32-surface.c: In function '_cairo_win32_surface_show_glyphs':
|
761
|
+
cairo-win32-surface.c:1550:6: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
762
|
+
cairo-win32-surface.c: In function 'cairo_win32_surface_create':
|
763
|
+
cairo-win32-surface.c:1687:55: warning: comparison between 'cairo_int_status_t' and 'enum _cairo_status'
|
764
|
+
cairo-win32-surface.c: In function '_cairo_win32_surface_create_for_dc':
|
765
|
+
cairo-win32-surface.c:365:9: warning: 'rowstride' may be used uninitialized in this function
|
766
|
+
cairo-win32-surface.c:364:20: warning: 'bits' may be used uninitialized in this function
|
767
|
+
cairo-win32-printing-surface.c: In function '_cairo_win32_printing_surface_paint_recording_pattern':
|
768
|
+
cairo-win32-printing-surface.c:503:6: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
769
|
+
cairo-win32-printing-surface.c: In function '_cairo_win32_printing_surface_paint_image_pattern':
|
770
|
+
cairo-win32-printing-surface.c:653:16: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
771
|
+
cairo-win32-printing-surface.c: In function 'cairo_win32_printing_surface_create':
|
772
|
+
cairo-win32-printing-surface.c:1767:55: warning: comparison between 'cairo_int_status_t' and 'enum _cairo_status'
|
773
|
+
cairo-win32-font.c:712:1: warning: '_cairo_win32_scaled_font_text_to_glyphs' defined but not used
|
774
|
+
cairo-win32-printing-surface.c: In function '_cairo_win32_printing_surface_paint_image_pattern':
|
775
|
+
cairo-win32-printing-surface.c:614:19: warning: 'mime_size' may be used uninitialized in this function
|
776
|
+
cairo-win32-printing-surface.c:613:26: warning: 'mime_data' may be used uninitialized in this function
|
777
|
+
CC cairo-png.lo
|
778
|
+
cairo-win32-font.c: In function '_cairo_win32_scaled_font_select_unscaled_font':
|
779
|
+
cairo-win32-font.c:492:11: warning: 'hfont' may be used uninitialized in this function
|
780
|
+
cairo-png.c: In function 'write_png':
|
781
|
+
cairo-png.c:179:16: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
782
|
+
CC cairo-ft-font.lo
|
783
|
+
CC cairo-ps-surface.lo
|
784
|
+
CC cairo-pdf-surface.lo
|
785
|
+
cairo-ps-surface.c: In function '_cairo_ps_surface_emit_header':
|
786
|
+
cairo-ps-surface.c:166:10: warning: unused variable 'ctime_buf'
|
787
|
+
cairo-ps-surface.c: In function '_cairo_ps_surface_emit_unscaled_font_subset':
|
788
|
+
cairo-ps-surface.c:677:16: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
789
|
+
cairo-ps-surface.c:682:16: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
790
|
+
cairo-ps-surface.c:686:16: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
791
|
+
cairo-ps-surface.c: In function '_cairo_ps_surface_emit_scaled_font_subset':
|
792
|
+
cairo-ps-surface.c:705:16: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
793
|
+
cairo-ps-surface.c: In function '_cairo_ps_surface_emit_recording_surface':
|
794
|
+
cairo-ps-surface.c:2468:5: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
795
|
+
cairo-ps-surface.c: In function '_cairo_ps_surface_emit_recording_subsurface':
|
796
|
+
cairo-ps-surface.c:2540:5: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
797
|
+
cairo-ps-surface.c: In function '_cairo_ps_surface_emit_surface':
|
798
|
+
cairo-ps-surface.c:2723:17: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
799
|
+
cairo-pdf-surface.c: In function '_get_source_surface_size':
|
800
|
+
cairo-pdf-surface.c:1106:16: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
801
|
+
cairo-pdf-surface.c:1113:16: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
802
|
+
cairo-pdf-surface.c: In function '_cairo_pdf_surface_emit_image_surface':
|
803
|
+
cairo-pdf-surface.c:2099:16: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
804
|
+
cairo-pdf-surface.c:2103:16: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
805
|
+
cairo-pdf-surface.c: In function '_cairo_pdf_surface_emit_recording_surface':
|
806
|
+
cairo-pdf-surface.c:2269:5: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
807
|
+
cairo-pdf-surface.c: In function '_cairo_pdf_surface_emit_recording_subsurface':
|
808
|
+
cairo-pdf-surface.c:2327:5: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
809
|
+
cairo-pdf-surface.c: In function '_cairo_pdf_surface_emit_unscaled_font_subset':
|
810
|
+
cairo-pdf-surface.c:4651:20: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
811
|
+
cairo-pdf-surface.c:4655:20: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
812
|
+
cairo-pdf-surface.c:4659:20: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
813
|
+
cairo-pdf-surface.c:4664:20: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
814
|
+
cairo-pdf-surface.c:4669:20: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
815
|
+
cairo-pdf-surface.c: In function '_cairo_pdf_surface_emit_scaled_font_subset':
|
816
|
+
cairo-pdf-surface.c:4686:16: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
817
|
+
cairo-pdf-surface.c: In function '_cairo_pdf_surface_paint':
|
818
|
+
cairo-pdf-surface.c:5405:13: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
819
|
+
cairo-pdf-surface.c:5451:9: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
820
|
+
cairo-pdf-surface.c: In function '_cairo_pdf_surface_mask':
|
821
|
+
cairo-pdf-surface.c:5520:13: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
822
|
+
cairo-pdf-surface.c: In function '_cairo_pdf_surface_stroke':
|
823
|
+
cairo-pdf-surface.c:5632:13: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
824
|
+
cairo-pdf-surface.c:5665:9: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
825
|
+
cairo-pdf-surface.c: In function '_cairo_pdf_surface_fill':
|
826
|
+
cairo-pdf-surface.c:5760:13: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
827
|
+
cairo-pdf-surface.c:5823:9: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
828
|
+
cairo-pdf-surface.c: In function '_cairo_pdf_surface_show_text_glyphs':
|
829
|
+
cairo-pdf-surface.c:6043:13: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
830
|
+
cairo-pdf-surface.c:6063:9: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
831
|
+
CC cairo-svg-surface.lo
|
832
|
+
Generating cairo.def
|
833
|
+
cairo-svg-surface.c: In function '_cairo_svg_document_emit_glyph':
|
834
|
+
cairo-svg-surface.c:834:16: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
835
|
+
cairo-svg-surface.c: In function '_cairo_surface_base64_encode':
|
836
|
+
cairo-svg-surface.c:1167:16: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
837
|
+
cairo-svg-surface.c:1171:16: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
838
|
+
cairo-svg-surface.c: In function '_cairo_svg_surface_show_glyphs':
|
839
|
+
cairo-svg-surface.c:2523:13: warning: comparison between 'cairo_status_t' and 'enum _cairo_int_status'
|
840
|
+
cairo-svg-surface.c: In function '_cairo_svg_surface_supports_fine_grained_fallbacks':
|
841
|
+
cairo-svg-surface.c:2838:19: warning: comparison between 'cairo_int_status_t' and 'enum _cairo_status'
|
842
|
+
CCLD libcairo.la
|
843
|
+
Creating library file: .libs/libcairo.dll.a
|
844
|
+
make[4]: Entering directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/src'
|
845
|
+
test -z "c:/devel/target/94d7ecd65464faa6be24937a758e580f/lib" || /bin/mkdir -p "c:/devel/target/94d7ecd65464faa6be24937a758e580f/lib"
|
846
|
+
test -z "c:/devel/target/94d7ecd65464faa6be24937a758e580f/include/cairo" || /bin/mkdir -p "c:/devel/target/94d7ecd65464faa6be24937a758e580f/include/cairo"
|
847
|
+
test -z "c:/devel/target/94d7ecd65464faa6be24937a758e580f/include/cairo" || /bin/mkdir -p "c:/devel/target/94d7ecd65464faa6be24937a758e580f/include/cairo"
|
848
|
+
/bin/sh ../libtool --mode=install /opt/local/bin/install -c libcairo.la 'c:/devel/target/94d7ecd65464faa6be24937a758e580f/lib'
|
849
|
+
/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/94d7ecd65464faa6be24937a758e580f/include/cairo'
|
850
|
+
/opt/local/bin/install -c -m 644 cairo-features.h 'c:/devel/target/94d7ecd65464faa6be24937a758e580f/include/cairo'
|
851
|
+
test -z "c:/devel/target/94d7ecd65464faa6be24937a758e580f/lib/pkgconfig" || /bin/mkdir -p "c:/devel/target/94d7ecd65464faa6be24937a758e580f/lib/pkgconfig"
|
852
|
+
/opt/local/bin/install -c -m 644 cairo.pc cairo-win32.pc cairo-win32-font.pc cairo-png.pc cairo-ft.pc cairo-fc.pc cairo-ps.pc cairo-pdf.pc cairo-svg.pc cairo-gobject.pc 'c:/devel/target/94d7ecd65464faa6be24937a758e580f/lib/pkgconfig'
|
853
|
+
libtool: install: /opt/local/bin/install -c .libs/libcairo.dll.a c:/devel/target/94d7ecd65464faa6be24937a758e580f/lib/libcairo.dll.a
|
854
|
+
libtool: install: base_file=`basename libcairo.la`
|
855
|
+
libtool: install: dlpath=`/bin/sh 2>&1 -c '. .libs/'libcairo.la'i; echo libcairo-2.dll'`
|
856
|
+
libtool: install: dldir=c:/devel/target/94d7ecd65464faa6be24937a758e580f/lib/`dirname ../bin/libcairo-2.dll`
|
857
|
+
libtool: install: test -d c:/devel/target/94d7ecd65464faa6be24937a758e580f/lib/../bin || mkdir -p c:/devel/target/94d7ecd65464faa6be24937a758e580f/lib/../bin
|
858
|
+
libtool: install: /opt/local/bin/install -c .libs/libcairo-2.dll c:/devel/target/94d7ecd65464faa6be24937a758e580f/lib/../bin/libcairo-2.dll
|
859
|
+
libtool: install: chmod a+x c:/devel/target/94d7ecd65464faa6be24937a758e580f/lib/../bin/libcairo-2.dll
|
860
|
+
libtool: install: if test -n '' && test -n 'strip --strip-unneeded'; then eval 'strip --strip-unneeded c:/devel/target/94d7ecd65464faa6be24937a758e580f/lib/../bin/libcairo-2.dll' || exit 0; fi
|
861
|
+
libtool: install: /opt/local/bin/install -c .libs/libcairo.lai c:/devel/target/94d7ecd65464faa6be24937a758e580f/lib/libcairo.la
|
862
|
+
----------------------------------------------------------------------
|
863
|
+
Libraries have been installed in:
|
864
|
+
c:/devel/target/94d7ecd65464faa6be24937a758e580f/lib
|
865
|
+
|
866
|
+
If you ever happen to want to link against installed libraries
|
867
|
+
in a given directory, LIBDIR, you must either use libtool, and
|
868
|
+
specify the full pathname of the library, or use the `-LLIBDIR'
|
869
|
+
flag during linking and do at least one of the following:
|
870
|
+
- add LIBDIR to the `PATH' environment variable
|
871
|
+
during execution
|
872
|
+
- add LIBDIR to the `LD_RUN_PATH' environment variable
|
873
|
+
during linking
|
874
|
+
- use the `-LLIBDIR' linker flag
|
875
|
+
|
876
|
+
See any operating system documentation about shared libraries for
|
877
|
+
more information, such as the ld(1) and ld.so(8) manual pages.
|
878
|
+
----------------------------------------------------------------------
|
879
|
+
make[4]: Leaving directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/src'
|
880
|
+
make[3]: Leaving directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/src'
|
881
|
+
make[2]: Leaving directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/src'
|
882
|
+
Making install in doc
|
883
|
+
make[2]: Entering directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/doc'
|
884
|
+
make install-recursive
|
885
|
+
make[3]: Entering directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/doc'
|
886
|
+
Making install in public
|
887
|
+
make[4]: Entering directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/doc/public'
|
888
|
+
make install-am
|
889
|
+
make[5]: Entering directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/doc/public'
|
890
|
+
make[6]: Entering directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/doc/public'
|
891
|
+
make[6]: Nothing to be done for `install-exec-am'.
|
892
|
+
installfiles=`echo ./html/*`; \
|
893
|
+
if test "$installfiles" = './html/*'; \
|
894
|
+
then echo '-- Nothing to install' ; \
|
895
|
+
else \
|
896
|
+
/bin/sh /devel/src/freedesktop/cairo/1.10.0-1_win32/build/install-sh -d c:/devel/target/94d7ecd65464faa6be24937a758e580f/share/gtk-doc/html/cairo; \
|
897
|
+
for i in $installfiles; do \
|
898
|
+
echo '-- Installing '$i ; \
|
899
|
+
/opt/local/bin/install -c -m 644 $i c:/devel/target/94d7ecd65464faa6be24937a758e580f/share/gtk-doc/html/cairo; \
|
900
|
+
done; \
|
901
|
+
echo '-- Installing ./html/index.sgml' ; \
|
902
|
+
/opt/local/bin/install -c -m 644 ./html/index.sgml c:/devel/target/94d7ecd65464faa6be24937a758e580f/share/gtk-doc/html/cairo || :; \
|
903
|
+
which gtkdoc-rebase >/dev/null && \
|
904
|
+
gtkdoc-rebase --relative --dest-dir= --html-dir=c:/devel/target/94d7ecd65464faa6be24937a758e580f/share/gtk-doc/html/cairo ; \
|
905
|
+
fi
|
906
|
+
-- Installing ./html/bindings-errors.html
|
907
|
+
-- Installing ./html/bindings-fonts.html
|
908
|
+
-- Installing ./html/bindings-memory.html
|
909
|
+
-- Installing ./html/bindings-overloading.html
|
910
|
+
-- Installing ./html/bindings-path.html
|
911
|
+
-- Installing ./html/bindings-patterns.html
|
912
|
+
-- Installing ./html/bindings-return-values.html
|
913
|
+
-- Installing ./html/bindings-streams.html
|
914
|
+
-- Installing ./html/bindings-surfaces.html
|
915
|
+
-- Installing ./html/cairo-Error-handling.html
|
916
|
+
-- Installing ./html/cairo-FreeType-Fonts.html
|
917
|
+
-- Installing ./html/cairo-Image-Surfaces.html
|
918
|
+
-- Installing ./html/cairo-PDF-Surfaces.html
|
919
|
+
-- Installing ./html/cairo-PNG-Support.html
|
920
|
+
-- Installing ./html/cairo-Paths.html
|
921
|
+
-- Installing ./html/cairo-PostScript-Surfaces.html
|
922
|
+
-- Installing ./html/cairo-Quartz-(CGFont)-Fonts.html
|
923
|
+
-- Installing ./html/cairo-Quartz-Surfaces.html
|
924
|
+
-- Installing ./html/cairo-Regions.html
|
925
|
+
-- Installing ./html/cairo-SVG-Surfaces.html
|
926
|
+
-- Installing ./html/cairo-Transformations.html
|
927
|
+
-- Installing ./html/cairo-Types.html
|
928
|
+
-- Installing ./html/cairo-User-Fonts.html
|
929
|
+
-- Installing ./html/cairo-Version-Information.html
|
930
|
+
-- Installing ./html/cairo-Win32-Fonts.html
|
931
|
+
-- Installing ./html/cairo-Win32-Surfaces.html
|
932
|
+
-- Installing ./html/cairo-XLib-Surfaces.html
|
933
|
+
-- Installing ./html/cairo-cairo-device-t.html
|
934
|
+
-- Installing ./html/cairo-cairo-font-face-t.html
|
935
|
+
-- Installing ./html/cairo-cairo-font-options-t.html
|
936
|
+
-- Installing ./html/cairo-cairo-matrix-t.html
|
937
|
+
-- Installing ./html/cairo-cairo-pattern-t.html
|
938
|
+
-- Installing ./html/cairo-cairo-scaled-font-t.html
|
939
|
+
-- Installing ./html/cairo-cairo-surface-t.html
|
940
|
+
-- Installing ./html/cairo-cairo-t.html
|
941
|
+
-- Installing ./html/cairo-drawing.html
|
942
|
+
-- Installing ./html/cairo-fonts.html
|
943
|
+
-- Installing ./html/cairo-support.html
|
944
|
+
-- Installing ./html/cairo-surfaces.html
|
945
|
+
-- Installing ./html/cairo-text.html
|
946
|
+
-- Installing ./html/cairo.devhelp
|
947
|
+
-- Installing ./html/cairo.devhelp2
|
948
|
+
-- Installing ./html/home.png
|
949
|
+
-- Installing ./html/index-1.10.html
|
950
|
+
-- Installing ./html/index-1.2.html
|
951
|
+
-- Installing ./html/index-1.4.html
|
952
|
+
-- Installing ./html/index-1.6.html
|
953
|
+
-- Installing ./html/index-1.8.html
|
954
|
+
-- Installing ./html/index-all.html
|
955
|
+
-- Installing ./html/index.html
|
956
|
+
-- Installing ./html/index.sgml
|
957
|
+
-- Installing ./html/language-bindings.html
|
958
|
+
-- Installing ./html/left.png
|
959
|
+
-- Installing ./html/right.png
|
960
|
+
-- Installing ./html/style.css
|
961
|
+
-- Installing ./html/up.png
|
962
|
+
-- Installing ./html/index.sgml
|
963
|
+
which: gtkdoc-rebase: unknown command
|
964
|
+
make[6]: [install-data-local] Error 1 (ignored)
|
965
|
+
make[6]: Leaving directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/doc/public'
|
966
|
+
make[5]: Leaving directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/doc/public'
|
967
|
+
make[4]: Leaving directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/doc/public'
|
968
|
+
make[4]: Entering directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/doc'
|
969
|
+
make[5]: Entering directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/doc'
|
970
|
+
make[5]: Nothing to be done for `install-exec-am'.
|
971
|
+
make[5]: Nothing to be done for `install-data-am'.
|
972
|
+
make[5]: Leaving directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/doc'
|
973
|
+
make[4]: Leaving directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/doc'
|
974
|
+
make[3]: Leaving directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/doc'
|
975
|
+
make[2]: Leaving directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/doc'
|
976
|
+
Making install in util
|
977
|
+
make[2]: Entering directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/util'
|
978
|
+
make install-recursive
|
979
|
+
make[3]: Entering directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/util'
|
980
|
+
Making install in .
|
981
|
+
make[4]: Entering directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/util'
|
982
|
+
make[5]: Entering directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/util'
|
983
|
+
make[5]: Nothing to be done for `install-exec-am'.
|
984
|
+
make[5]: Nothing to be done for `install-data-am'.
|
985
|
+
make[5]: Leaving directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/util'
|
986
|
+
make[4]: Leaving directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/util'
|
987
|
+
Making install in cairo-gobject
|
988
|
+
make[4]: Entering directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/util/cairo-gobject'
|
989
|
+
CC libcairo_gobject_la-cairo-gobject-enums.lo
|
990
|
+
CC libcairo_gobject_la-cairo-gobject-structs.lo
|
991
|
+
CCLD libcairo-gobject.la
|
992
|
+
|
993
|
+
*** Warning: linker path does not have real file for library -lintl.
|
994
|
+
*** I have the capability to make that library automatically link in when
|
995
|
+
*** you link to this library. But I can only do this if you have a
|
996
|
+
*** shared version of the library, which you do not appear to have
|
997
|
+
*** because I did check the linker path looking for a file starting
|
998
|
+
*** with libintl and none of the candidates passed a file format test
|
999
|
+
*** using a file magic. Last file checked: c:/devel/dist/win32/glib-2.24.2-2/lib/libglib-2.0.dll.a
|
1000
|
+
*** The inter-library dependencies that have been dropped here will be
|
1001
|
+
*** automatically added whenever a program is linked with this library
|
1002
|
+
*** or is declared to -dlopen it.
|
1003
|
+
|
1004
|
+
*** Since this library must not contain undefined symbols,
|
1005
|
+
*** because either the platform does not support them or
|
1006
|
+
*** it was explicitly requested with -no-undefined,
|
1007
|
+
*** libtool will only create a static version of it.
|
1008
|
+
make[5]: Entering directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/util/cairo-gobject'
|
1009
|
+
test -z "c:/devel/target/94d7ecd65464faa6be24937a758e580f/lib" || /bin/mkdir -p "c:/devel/target/94d7ecd65464faa6be24937a758e580f/lib"
|
1010
|
+
test -z "c:/devel/target/94d7ecd65464faa6be24937a758e580f/include/cairo" || /bin/mkdir -p "c:/devel/target/94d7ecd65464faa6be24937a758e580f/include/cairo"
|
1011
|
+
/bin/sh ../../libtool --mode=install /opt/local/bin/install -c libcairo-gobject.la 'c:/devel/target/94d7ecd65464faa6be24937a758e580f/lib'
|
1012
|
+
/opt/local/bin/install -c -m 644 cairo-gobject.h 'c:/devel/target/94d7ecd65464faa6be24937a758e580f/include/cairo'
|
1013
|
+
libtool: install: /opt/local/bin/install -c .libs/libcairo-gobject.lai c:/devel/target/94d7ecd65464faa6be24937a758e580f/lib/libcairo-gobject.la
|
1014
|
+
libtool: install: /opt/local/bin/install -c .libs/libcairo-gobject.a c:/devel/target/94d7ecd65464faa6be24937a758e580f/lib/libcairo-gobject.a
|
1015
|
+
libtool: install: chmod 644 c:/devel/target/94d7ecd65464faa6be24937a758e580f/lib/libcairo-gobject.a
|
1016
|
+
libtool: install: ranlib c:/devel/target/94d7ecd65464faa6be24937a758e580f/lib/libcairo-gobject.a
|
1017
|
+
----------------------------------------------------------------------
|
1018
|
+
Libraries have been installed in:
|
1019
|
+
c:/devel/target/94d7ecd65464faa6be24937a758e580f/lib
|
1020
|
+
|
1021
|
+
If you ever happen to want to link against installed libraries
|
1022
|
+
in a given directory, LIBDIR, you must either use libtool, and
|
1023
|
+
specify the full pathname of the library, or use the `-LLIBDIR'
|
1024
|
+
flag during linking and do at least one of the following:
|
1025
|
+
- add LIBDIR to the `PATH' environment variable
|
1026
|
+
during execution
|
1027
|
+
- add LIBDIR to the `LD_RUN_PATH' environment variable
|
1028
|
+
during linking
|
1029
|
+
- use the `-LLIBDIR' linker flag
|
1030
|
+
|
1031
|
+
See any operating system documentation about shared libraries for
|
1032
|
+
more information, such as the ld(1) and ld.so(8) manual pages.
|
1033
|
+
----------------------------------------------------------------------
|
1034
|
+
make[5]: Leaving directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/util/cairo-gobject'
|
1035
|
+
make[4]: Leaving directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/util/cairo-gobject'
|
1036
|
+
Making install in cairo-script
|
1037
|
+
make[4]: Entering directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/util/cairo-script'
|
1038
|
+
Making install in examples
|
1039
|
+
make[5]: Entering directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/util/cairo-script/examples'
|
1040
|
+
make[6]: Entering directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/util/cairo-script/examples'
|
1041
|
+
make[6]: Nothing to be done for `install-exec-am'.
|
1042
|
+
make[6]: Nothing to be done for `install-data-am'.
|
1043
|
+
make[6]: Leaving directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/util/cairo-script/examples'
|
1044
|
+
make[5]: Leaving directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/util/cairo-script/examples'
|
1045
|
+
make[5]: Entering directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/util/cairo-script'
|
1046
|
+
CC libcairo_script_interpreter_la-cairo-script-file.lo
|
1047
|
+
CC libcairo_script_interpreter_la-cairo-script-hash.lo
|
1048
|
+
CC libcairo_script_interpreter_la-cairo-script-interpreter.lo
|
1049
|
+
cairo-script-interpreter.c: In function 'cairo_script_interpreter_finish':
|
1050
|
+
cairo-script-interpreter.c:636:23: warning: comparison between 'csi_status_t' and 'enum _cairo_status'
|
1051
|
+
CC libcairo_script_interpreter_la-cairo-script-objects.lo
|
1052
|
+
CC libcairo_script_interpreter_la-cairo-script-operators.lo
|
1053
|
+
CC libcairo_script_interpreter_la-cairo-script-scanner.lo
|
1054
|
+
cairo-script-operators.c: In function '_ft_create_for_pattern':
|
1055
|
+
cairo-script-operators.c:1863:21: warning: unused variable 'vec'
|
1056
|
+
CC libcairo_script_interpreter_la-cairo-script-stack.lo
|
1057
|
+
cairo-script-operators.c: In function 'end_array_construction':
|
1058
|
+
cairo-script-operators.c:600:2: warning: cannot optimize possibly infinite loops
|
1059
|
+
CCLD libcairo-script-interpreter.la
|
1060
|
+
Creating library file: .libs/libcairo-script-interpreter.dll.a
|
1061
|
+
make[6]: Entering directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/util/cairo-script'
|
1062
|
+
test -z "c:/devel/target/94d7ecd65464faa6be24937a758e580f/lib" || /bin/mkdir -p "c:/devel/target/94d7ecd65464faa6be24937a758e580f/lib"
|
1063
|
+
test -z "c:/devel/target/94d7ecd65464faa6be24937a758e580f/include/cairo" || /bin/mkdir -p "c:/devel/target/94d7ecd65464faa6be24937a758e580f/include/cairo"
|
1064
|
+
/bin/sh ../../libtool --mode=install /opt/local/bin/install -c libcairo-script-interpreter.la 'c:/devel/target/94d7ecd65464faa6be24937a758e580f/lib'
|
1065
|
+
/opt/local/bin/install -c -m 644 cairo-script-interpreter.h 'c:/devel/target/94d7ecd65464faa6be24937a758e580f/include/cairo'
|
1066
|
+
libtool: install: /opt/local/bin/install -c .libs/libcairo-script-interpreter.dll.a c:/devel/target/94d7ecd65464faa6be24937a758e580f/lib/libcairo-script-interpreter.dll.a
|
1067
|
+
libtool: install: base_file=`basename libcairo-script-interpreter.la`
|
1068
|
+
libtool: install: dlpath=`/bin/sh 2>&1 -c '. .libs/'libcairo-script-interpreter.la'i; echo libcairo-script-interpreter-2.dll'`
|
1069
|
+
libtool: install: dldir=c:/devel/target/94d7ecd65464faa6be24937a758e580f/lib/`dirname ../bin/libcairo-script-interpreter-2.dll`
|
1070
|
+
libtool: install: test -d c:/devel/target/94d7ecd65464faa6be24937a758e580f/lib/../bin || mkdir -p c:/devel/target/94d7ecd65464faa6be24937a758e580f/lib/../bin
|
1071
|
+
libtool: install: /opt/local/bin/install -c .libs/libcairo-script-interpreter-2.dll c:/devel/target/94d7ecd65464faa6be24937a758e580f/lib/../bin/libcairo-script-interpreter-2.dll
|
1072
|
+
libtool: install: chmod a+x c:/devel/target/94d7ecd65464faa6be24937a758e580f/lib/../bin/libcairo-script-interpreter-2.dll
|
1073
|
+
libtool: install: if test -n '' && test -n 'strip --strip-unneeded'; then eval 'strip --strip-unneeded c:/devel/target/94d7ecd65464faa6be24937a758e580f/lib/../bin/libcairo-script-interpreter-2.dll' || exit 0; fi
|
1074
|
+
libtool: install: /opt/local/bin/install -c .libs/libcairo-script-interpreter.lai c:/devel/target/94d7ecd65464faa6be24937a758e580f/lib/libcairo-script-interpreter.la
|
1075
|
+
----------------------------------------------------------------------
|
1076
|
+
Libraries have been installed in:
|
1077
|
+
c:/devel/target/94d7ecd65464faa6be24937a758e580f/lib
|
1078
|
+
|
1079
|
+
If you ever happen to want to link against installed libraries
|
1080
|
+
in a given directory, LIBDIR, you must either use libtool, and
|
1081
|
+
specify the full pathname of the library, or use the `-LLIBDIR'
|
1082
|
+
flag during linking and do at least one of the following:
|
1083
|
+
- add LIBDIR to the `PATH' environment variable
|
1084
|
+
during execution
|
1085
|
+
- add LIBDIR to the `LD_RUN_PATH' environment variable
|
1086
|
+
during linking
|
1087
|
+
- use the `-LLIBDIR' linker flag
|
1088
|
+
|
1089
|
+
See any operating system documentation about shared libraries for
|
1090
|
+
more information, such as the ld(1) and ld.so(8) manual pages.
|
1091
|
+
----------------------------------------------------------------------
|
1092
|
+
make[6]: Leaving directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/util/cairo-script'
|
1093
|
+
make[5]: Leaving directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/util/cairo-script'
|
1094
|
+
make[4]: Leaving directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/util/cairo-script'
|
1095
|
+
make[3]: Leaving directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/util'
|
1096
|
+
make[2]: Leaving directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/util'
|
1097
|
+
Making install in boilerplate
|
1098
|
+
make[2]: Entering directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/boilerplate'
|
1099
|
+
(cd . && sh ./make-cairo-boilerplate-constructors.sh cairo-boilerplate-getopt.c cairo-boilerplate-system.c cairo-boilerplate.c cairo-boilerplate-win32.c cairo-boilerplate-win32-printing.c cairo-boilerplate-ps.c cairo-boilerplate-pdf.c cairo-boilerplate-svg.c ) > cairo-boilerplate-constructors.c
|
1100
|
+
make install-am
|
1101
|
+
make[3]: Entering directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/boilerplate'
|
1102
|
+
make[4]: Entering directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/boilerplate'
|
1103
|
+
make[4]: Nothing to be done for `install-exec-am'.
|
1104
|
+
make[4]: Nothing to be done for `install-data-am'.
|
1105
|
+
make[4]: Leaving directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/boilerplate'
|
1106
|
+
make[3]: Leaving directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/boilerplate'
|
1107
|
+
make[2]: Leaving directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/boilerplate'
|
1108
|
+
Making install in test
|
1109
|
+
make[2]: Entering directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/test'
|
1110
|
+
(cd . && sh ./make-cairo-test-constructors.sh a1-bug.c a1-image-sample.c a1-mask.c a1-mask-sample.c a1-traps-sample.c a1-rasterisation.c a8-mask.c aliasing.c alpha-similar.c api-special-cases.c big-line.c big-trap.c bilevel-image.c bug-bo-rectangular.c bug-seams.c caps.c caps-joins.c caps-joins-alpha.c caps-joins-curve.c caps-sub-paths.c clear.c clear-source.c clip-all.c clip-contexts.c clip-disjoint.c clip-device-offset.c clip-draw-unbounded.c clip-empty.c clip-empty-group.c clip-empty-save.c clip-fill.c clip-fill-no-op.c clip-fill-rule.c clip-fill-rule-pixel-aligned.c clip-group-shapes.c clip-image.c clip-nesting.c clip-operator.c clip-push-group.c clip-shape.c clip-stroke.c clip-stroke-no-op.c clip-text.c clip-twice.c clip-twice-rectangle.c clip-unbounded.c clip-zero.c clipped-group.c clipped-surface.c close-path.c close-path-current-point.c composite-integer-translate-source.c composite-integer-translate-over.c composite-integer-translate-over-repeat.c copy-path.c coverage.c create-for-stream.c create-from-png.c create-from-png-stream.c culled-glyphs.c curve-to-as-line-to.c dash-caps-joins.c dash-curve.c dash-infinite-loop.c dash-no-dash.c dash-offset.c dash-offset-negative.c dash-scale.c dash-state.c dash-zero-length.c degenerate-arc.c degenerate-arcs.c degenerate-curve-to.c degenerate-dash.c degenerate-linear-gradient.c degenerate-path.c degenerate-pen.c degenerate-radial-gradient.c degenerate-rel-curve-to.c device-offset.c device-offset-fractional.c device-offset-positive.c device-offset-scale.c error-setters.c extend-pad.c extend-pad-border.c extend-pad-similar.c extend-reflect.c extend-reflect-similar.c extend-repeat.c extend-repeat-similar.c extended-blend.c extended-blend-alpha.c fill-alpha.c fill-alpha-pattern.c fill-and-stroke.c fill-and-stroke-alpha.c fill-and-stroke-alpha-add.c fill-degenerate-sort-order.c fill-empty.c fill-image.c fill-missed-stop.c fill-rule.c filter-bilinear-extents.c filter-nearest-offset.c filter-nearest-transformed.c finer-grained-fallbacks.c font-face-get-type.c font-matrix-translation.c font-options.c glyph-cache-pressure.c get-and-set.c get-clip.c get-group-target.c get-path-extents.c gradient-alpha.c gradient-constant-alpha.c gradient-zero-stops.c gradient-zero-stops-mask.c group-clip.c group-paint.c group-unaligned.c half-coverage.c halo.c huge-linear.c huge-radial.c image-surface-source.c implicit-close.c infinite-join.c in-fill-empty-trapezoid.c in-fill-trapezoid.c invalid-matrix.c inverse-text.c joins.c large-clip.c large-font.c large-source.c large-source-roi.c large-twin-antialias-mixed.c leaky-dash.c leaky-dashed-rectangle.c leaky-dashed-stroke.c leaky-polygon.c line-width.c line-width-scale.c line-width-zero.c linear-gradient.c linear-gradient-extend.c linear-gradient-large.c linear-gradient-one-stop.c linear-gradient-reflect.c linear-gradient-subset.c linear-step-function.c linear-uniform.c long-dashed-lines.c long-lines.c mask.c mask-alpha.c mask-ctm.c mask-glyphs.c mask-surface-ctm.c mask-transformed-image.c mask-transformed-similar.c recording-surface-pattern.c mime-data.c miter-precision.c move-to-show-surface.c new-sub-path.c nil-surface.c operator.c operator-alpha.c operator-alpha-alpha.c operator-clear.c operator-source.c over-above-source.c over-around-source.c over-below-source.c over-between-source.c overlapping-glyphs.c paint.c paint-repeat.c paint-source-alpha.c paint-with-alpha.c partial-clip-text.c partial-coverage.c path-append.c path-stroke-twice.c path-precision.c pattern-get-type.c pattern-getters.c pixman-rotate.c png.c push-group.c push-group-color.c push-group-path-offset.c radial-gradient.c radial-gradient-extend.c radial-gradient-mask.c radial-gradient-mask-source.c radial-gradient-one-stop.c radial-gradient-source.c random-intersections-eo.c random-intersections-nonzero.c random-intersections-curves-eo.c random-intersections-curves-nz.c rectangle-rounding-error.c rectilinear-fill.c rectilinear-miter-limit.c rectilinear-dash.c rectilinear-stroke.c reflected-stroke.c rel-path.c rgb24-ignore-alpha.c rotate-image-surface-paint.c rotated-clip.c rounded-rectangle-fill.c rounded-rectangle-stroke.c scale-down-source-surface-paint.c scale-offset-image.c scale-offset-similar.c scale-source-surface-paint.c scaled-font-zero-matrix.c stroke-ctm-caps.c stroke-image.c select-font-face.c select-font-no-show-text.c self-copy.c self-copy-overlap.c self-intersecting.c set-source.c show-glyphs-many.c show-text-current-point.c skew-extreme.c smask.c smask-fill.c smask-image-mask.c smask-mask.c smask-paint.c smask-stroke.c smask-text.c solid-pattern-cache-stress.c source-clip.c source-clip-scale.c source-surface-scale-paint.c spline-decomposition.c subsurface.c subsurface-image-repeat.c subsurface-repeat.c subsurface-reflect.c subsurface-pad.c subsurface-modify-child.c subsurface-modify-parent.c subsurface-outside-target.c subsurface-similar-repeat.c surface-finish-twice.c surface-pattern.c surface-pattern-big-scale-down.c surface-pattern-operator.c surface-pattern-scale-down.c surface-pattern-scale-down-extend.c surface-pattern-scale-up.c text-antialias-gray.c text-antialias-none.c text-antialias-subpixel.c text-cache-crash.c text-glyph-range.c text-pattern.c text-rotate.c text-transform.c text-zero-len.c toy-font-face.c transforms.c translate-show-surface.c trap-clip.c twin.c twin-antialias-gray.c twin-antialias-mixed.c twin-antialias-none.c twin-antialias-subpixel.c unantialiased-shapes.c unbounded-operator.c user-data.c user-font.c user-font-mask.c user-font-proxy.c user-font-rescale.c xcomposite-projection.c xlib-expose-event.c zero-alpha.c zero-mask.c bitmap-font.c ft-font-create-for-ft-face.c ft-show-glyphs-positioning.c ft-show-glyphs-table.c ft-text-vertical-layout-type1.c ft-text-vertical-layout-type3.c ft-text-antialias-none.c pdf-features.c pdf-mime-data.c pdf-surface-source.c ps-eps.c ps-features.c ps-surface-source.c svg-surface.c svg-clip.c svg-surface-source.c multi-page.c ) > cairo-test-constructors.c
|
1111
|
+
make install-recursive
|
1112
|
+
make[3]: Entering directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/test'
|
1113
|
+
Making install in pdiff
|
1114
|
+
make[4]: Entering directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/test/pdiff'
|
1115
|
+
make install-am
|
1116
|
+
make[5]: Entering directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/test/pdiff'
|
1117
|
+
CC lpyramid.lo
|
1118
|
+
CC pdiff.lo
|
1119
|
+
CCLD libpdiff.la
|
1120
|
+
make[6]: Entering directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/test/pdiff'
|
1121
|
+
make[6]: Nothing to be done for `install-exec-am'.
|
1122
|
+
make[6]: Nothing to be done for `install-data-am'.
|
1123
|
+
make[6]: Leaving directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/test/pdiff'
|
1124
|
+
make[5]: Leaving directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/test/pdiff'
|
1125
|
+
make[4]: Leaving directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/test/pdiff'
|
1126
|
+
Making install in .
|
1127
|
+
make[4]: Entering directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/test'
|
1128
|
+
make[5]: Entering directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/test'
|
1129
|
+
make[5]: Nothing to be done for `install-exec-am'.
|
1130
|
+
make[5]: Nothing to be done for `install-data-am'.
|
1131
|
+
make[5]: Leaving directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/test'
|
1132
|
+
make[4]: Leaving directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/test'
|
1133
|
+
make[3]: Leaving directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/test'
|
1134
|
+
make[2]: Leaving directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/test'
|
1135
|
+
Making install in perf
|
1136
|
+
make[2]: Entering directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/perf'
|
1137
|
+
make install-am
|
1138
|
+
make[3]: Entering directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/perf'
|
1139
|
+
make[4]: Entering directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/perf'
|
1140
|
+
make[4]: Nothing to be done for `install-exec-am'.
|
1141
|
+
make[4]: Nothing to be done for `install-data-am'.
|
1142
|
+
make[4]: Leaving directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/perf'
|
1143
|
+
make[3]: Leaving directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/perf'
|
1144
|
+
make[2]: Leaving directory `/devel/src/freedesktop/cairo/1.10.0-1_win32/perf'
|
1145
|
+
make[2]: Entering directory `/devel/src/freedesktop/cairo/1.10.0-1_win32'
|
1146
|
+
make[3]: Entering directory `/devel/src/freedesktop/cairo/1.10.0-1_win32'
|
1147
|
+
make[3]: Nothing to be done for `install-exec-am'.
|
1148
|
+
make[3]: Nothing to be done for `install-data-am'.
|
1149
|
+
make[3]: Leaving directory `/devel/src/freedesktop/cairo/1.10.0-1_win32'
|
1150
|
+
make[2]: Leaving directory `/devel/src/freedesktop/cairo/1.10.0-1_win32'
|
1151
|
+
make[1]: Leaving directory `/devel/src/freedesktop/cairo/1.10.0-1_win32'
|
1152
|
+
rm -f cairo-1.10.0.zip
|
1153
|
+
rm -f cairo-dev-1.10.0.zip
|
1154
|
+
pwd=`pwd`; cd c:/devel/target/94d7ecd65464faa6be24937a758e580f; \
|
1155
|
+
zip "$pwd"/cairo-1.10.0.zip bin/libcairo-2.dll
|
1156
|
+
pwd=`pwd`; cd c:/devel/target/94d7ecd65464faa6be24937a758e580f; \
|
1157
|
+
zip -r "$pwd"/cairo-dev-1.10.0.zip include/cairo lib/libcairo.dll.a lib/cairo.lib lib/pkgconfig/cairo.pc lib/pkgconfig/cairo-*.pc share/gtk-doc/html/cairo
|
1158
|
+
adding: bin/libcairo-2.dll adding: include/cairo/ (200 bytes security) (stored 0%)
|
1159
|
+
adding: include/cairo/cairo-deprecated.h (200 bytes security) (deflated 74%)
|
1160
|
+
adding: include/cairo/cairo-features.h (200 bytes security) (deflated 70%)
|
1161
|
+
adding: include/cairo/cairo-ft.h (200 bytes security) (deflated 56%)
|
1162
|
+
adding: include/cairo/cairo-gobject.h (200 bytes security) (deflated 75%)
|
1163
|
+
adding: include/cairo/cairo-pdf.h (200 bytes security) (deflated 59%)
|
1164
|
+
adding: include/cairo/cairo-ps.h (200 bytes security) (deflated 62%)
|
1165
|
+
adding: include/cairo/cairo-script-interpreter.h (200 bytes security) (deflated 66%)
|
1166
|
+
adding: include/cairo/cairo-svg.h (200 bytes security) (deflated 57%)
|
1167
|
+
adding: include/cairo/cairo-version.h (200 bytes security) (deflated 56%)
|
1168
|
+
adding: include/cairo/cairo-win32.h (200 bytes security) (deflated 65%)
|
1169
|
+
adding: include/cairo/cairo.h (200 bytes security) (deflated 77%)
|
1170
|
+
adding: lib/libcairo.dll.a (200 bytes security) (deflated 94%)
|
1171
|
+
adding: lib/pkgconfig/cairo.pc (200 bytes security) (deflated 32%)
|
1172
|
+
adding: lib/pkgconfig/cairo-fc.pc (200 bytes security) (deflated 30%)
|
1173
|
+
adding: lib/pkgconfig/cairo-ft.pc (200 bytes security) (deflated 28%)
|
1174
|
+
adding: lib/pkgconfig/cairo-gobject.pc (200 bytes security) (deflated 34%)
|
1175
|
+
adding: lib/pkgconfig/cairo-pdf.pc (200 bytes security) (deflated 28%)
|
1176
|
+
adding: lib/pkgconfig/cairo-png.pc (200 bytes security) (deflated 29%)
|
1177
|
+
adding: lib/pkgconfig/cairo-ps.pc (200 bytes security) (deflated 29%)
|
1178
|
+
adding: lib/pkgconfig/cairo-svg.pc (200 bytes security) (deflated 29%)
|
1179
|
+
adding: lib/pkgconfig/cairo-win32-font.pc (200 bytes security) (deflated 30%)
|
1180
|
+
adding: lib/pkgconfig/cairo-win32.pc (200 bytes security) (deflated 29%)
|
1181
|
+
adding: share/gtk-doc/html/cairo/ (200 bytes security) (stored 0%)
|
1182
|
+
adding: share/gtk-doc/html/cairo/bindings-errors.html (200 bytes security) (deflated 60%)
|
1183
|
+
adding: share/gtk-doc/html/cairo/bindings-fonts.html (200 bytes security) (deflated 60%)
|
1184
|
+
adding: share/gtk-doc/html/cairo/bindings-memory.html (200 bytes security) (deflated 63%)
|
1185
|
+
adding: share/gtk-doc/html/cairo/bindings-overloading.html (200 bytes security) (deflated 65%)
|
1186
|
+
adding: share/gtk-doc/html/cairo/bindings-path.html (200 bytes security) (deflated 64%)
|
1187
|
+
adding: share/gtk-doc/html/cairo/bindings-patterns.html (200 bytes security) (deflated 72%)
|
1188
|
+
adding: share/gtk-doc/html/cairo/bindings-return-values.html (200 bytes security) (deflated 63%)
|
1189
|
+
adding: share/gtk-doc/html/cairo/bindings-streams.html (200 bytes security) (deflated 60%)
|
1190
|
+
adding: share/gtk-doc/html/cairo/bindings-surfaces.html (200 bytes security) (deflated 62%)
|
1191
|
+
adding: share/gtk-doc/html/cairo/cairo-cairo-device-t.html (200 bytes security) (deflated 86%)
|
1192
|
+
adding: share/gtk-doc/html/cairo/cairo-cairo-font-face-t.html (200 bytes security) (deflated 86%)
|
1193
|
+
adding: share/gtk-doc/html/cairo/cairo-cairo-font-options-t.html (200 bytes security) (deflated 89%)
|
1194
|
+
adding: share/gtk-doc/html/cairo/cairo-cairo-matrix-t.html (200 bytes security) (deflated 90%)
|
1195
|
+
adding: share/gtk-doc/html/cairo/cairo-cairo-pattern-t.html (200 bytes security) (deflated 91%)
|
1196
|
+
adding: share/gtk-doc/html/cairo/cairo-cairo-scaled-font-t.html (200 bytes security) (deflated 90%)
|
1197
|
+
adding: share/gtk-doc/html/cairo/cairo-cairo-surface-t.html (200 bytes security) (deflated 88%)
|
1198
|
+
adding: share/gtk-doc/html/cairo/cairo-cairo-t.html (200 bytes security) (deflated 89%)
|
1199
|
+
adding: share/gtk-doc/html/cairo/cairo-drawing.html (200 bytes security) (deflated 65%)
|
1200
|
+
adding: share/gtk-doc/html/cairo/cairo-Error-handling.html (200 bytes security) (deflated 78%)
|
1201
|
+
adding: share/gtk-doc/html/cairo/cairo-fonts.html (200 bytes security) (deflated 67%)
|
1202
|
+
adding: share/gtk-doc/html/cairo/cairo-FreeType-Fonts.html (200 bytes security) (deflated 83%)
|
1203
|
+
adding: share/gtk-doc/html/cairo/cairo-Image-Surfaces.html (200 bytes security) (deflated 84%)
|
1204
|
+
adding: share/gtk-doc/html/cairo/cairo-Paths.html (200 bytes security) (deflated 89%)
|
1205
|
+
adding: share/gtk-doc/html/cairo/cairo-PDF-Surfaces.html (200 bytes security) (deflated 85%)
|
1206
|
+
adding: share/gtk-doc/html/cairo/cairo-PNG-Support.html (200 bytes security) (deflated 86%)
|
1207
|
+
adding: share/gtk-doc/html/cairo/cairo-PostScript-Surfaces.html (200 bytes security) (deflated 87%)
|
1208
|
+
adding: share/gtk-doc/html/cairo/cairo-Quartz-(CGFont)-Fonts.html (200 bytes security) (deflated 78%)
|
1209
|
+
adding: share/gtk-doc/html/cairo/cairo-Quartz-Surfaces.html (200 bytes security) (deflated 79%)
|
1210
|
+
adding: share/gtk-doc/html/cairo/cairo-Regions.html (200 bytes security) (deflated 93%)
|
1211
|
+
adding: share/gtk-doc/html/cairo/cairo-support.html (200 bytes security) (deflated 62%)
|
1212
|
+
adding: share/gtk-doc/html/cairo/cairo-surfaces.html (200 bytes security) (deflated 70%)
|
1213
|
+
adding: share/gtk-doc/html/cairo/cairo-SVG-Surfaces.html (200 bytes security) (deflated 83%)
|
1214
|
+
adding: share/gtk-doc/html/cairo/cairo-text.html (200 bytes security) (deflated 88%)
|
1215
|
+
adding: share/gtk-doc/html/cairo/cairo-Transformations.html (200 bytes security) (deflated 89%)
|
1216
|
+
adding: share/gtk-doc/html/cairo/cairo-Types.html (200 bytes security) (deflated 73%)
|
1217
|
+
adding: share/gtk-doc/html/cairo/cairo-User-Fonts.html (200 bytes security) (deflated 88%)
|
1218
|
+
adding: share/gtk-doc/html/cairo/cairo-Version-Information.html (200 bytes security) (deflated 84%)
|
1219
|
+
adding: share/gtk-doc/html/cairo/cairo-Win32-Fonts.html (200 bytes security) (deflated 87%)
|
1220
|
+
adding: share/gtk-doc/html/cairo/cairo-Win32-Surfaces.html (200 bytes security) (deflated 85%)
|
1221
|
+
adding: share/gtk-doc/html/cairo/cairo-XLib-Surfaces.html (200 bytes security) (deflated 87%)
|
1222
|
+
adding: share/gtk-doc/html/cairo/cairo.devhelp (200 bytes security) (deflated 88%)
|
1223
|
+
adding: share/gtk-doc/html/cairo/cairo.devhelp2 (200 bytes security) (deflated 58%)
|
1224
|
+
(200 bytes security) (deflated 89%)
|
1225
|
+
adding: share/gtk-doc/html/cairo/home.png (200 bytes security) (stored 0%)
|
1226
|
+
adding: share/gtk-doc/html/cairo/index-1.10.html (200 bytes security) (deflated 82%)
|
1227
|
+
adding: share/gtk-doc/html/cairo/index-1.2.html (200 bytes security) (deflated 82%)
|
1228
|
+
adding: share/gtk-doc/html/cairo/index-1.4.html (200 bytes security) (deflated 80%)
|
1229
|
+
adding: share/gtk-doc/html/cairo/index-1.6.html (200 bytes security) (deflated 73%)
|
1230
|
+
adding: share/gtk-doc/html/cairo/index-1.8.html (200 bytes security) (deflated 81%)
|
1231
|
+
adding: share/gtk-doc/html/cairo/index-all.html (200 bytes security) (deflated 89%)
|
1232
|
+
adding: share/gtk-doc/html/cairo/index.html (200 bytes security) (deflated 78%)
|
1233
|
+
adding: share/gtk-doc/html/cairo/index.sgml (200 bytes security) (deflated 90%)
|
1234
|
+
adding: share/gtk-doc/html/cairo/language-bindings.html (200 bytes security) (deflated 60%)
|
1235
|
+
adding: share/gtk-doc/html/cairo/left.png (200 bytes security) (stored 0%)
|
1236
|
+
adding: share/gtk-doc/html/cairo/right.png (200 bytes security) (stored 0%)
|
1237
|
+
adding: share/gtk-doc/html/cairo/style.css (200 bytes security) (deflated 71%)
|
1238
|
+
adding: share/gtk-doc/html/cairo/up.png (200 bytes security) (stored 0%)
|
1239
|
+
zip warning: name not matched: lib/cairo.lib
|
1240
|
+
++ cp cairo-1.10.0.zip /tmp/cairo_1.10.0-1_win32.zip
|
1241
|
+
++ cp cairo-dev-1.10.0.zip /tmp/cairo-dev_1.10.0-1_win32.zip
|
1242
|
+
++ cp -p src/cairo.def /devel/target/94d7ecd65464faa6be24937a758e580f/lib
|
1243
|
+
++ mkdir -p /devel/target/94d7ecd65464faa6be24937a758e580f/share/doc/cairo_1.10.0-1_win32
|
1244
|
+
++ cp -p COPYING COPYING-LGPL-2.1 COPYING-MPL-1.1 /devel/target/94d7ecd65464faa6be24937a758e580f/share/doc/cairo_1.10.0-1_win32
|
1245
|
+
++ cd /devel/target/94d7ecd65464faa6be24937a758e580f
|
1246
|
+
++ cd lib
|
1247
|
+
++ lib.exe -machine:X86 -def:cairo.def -out:cairo.lib
|
1248
|
+
Microsoft (R) Library Manager Version 6.00.8447
|
1249
|
+
Copyright (C) Microsoft Corp 1992-1998. All rights reserved.
|
1250
|
+
|
1251
|
+
Creating library cairo.lib and object cairo.exp
|
1252
|
+
++ zip /tmp/cairo-dev_1.10.0-1_win32.zip lib/cairo.def lib/cairo.lib
|
1253
|
+
adding: lib/cairo.def (200 bytes security) (deflated 80%)
|
1254
|
+
adding: lib/cairo.lib (200 bytes security) (deflated 88%)
|
1255
|
+
++ zip -r -D /tmp/cairo_1.10.0-1_win32.zip share/doc/cairo_1.10.0-1_win32
|
1256
|
+
adding: share/doc/cairo_1.10.0-1_win32/COPYING (200 bytes security) (deflated 55%)
|
1257
|
+
adding: share/doc/cairo_1.10.0-1_win32/COPYING-LGPL-2.1 (200 bytes security) (deflated 65%)
|
1258
|
+
adding: share/doc/cairo_1.10.0-1_win32/COPYING-MPL-1.1 (200 bytes security) (deflated 68%)
|
1259
|
+
++ sed -e 's/ pixman-1 >= 0.18.4//'
|
1260
|
+
++ mv lib/pkgconfig/cairo.pc.temp lib/pkgconfig/cairo.pc
|
1261
|
+
++ zip /tmp/cairo-dev_1.10.0-1_win32.zip lib/pkgconfig/cairo.pc
|
1262
|
+
updating: lib/pkgconfig/cairo.pc (200 bytes security) (deflated 33%)
|