poppler 2.0.2-x86-mingw32 → 2.0.3-x86-mingw32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (173) hide show
  1. checksums.yaml +7 -0
  2. data/README +1 -1
  3. data/Rakefile +69 -9
  4. data/ext/poppler/extconf.rb +5 -2
  5. data/ext/poppler/rbpoppler-action.c +242 -86
  6. data/ext/poppler/{rbpoppler-annotationcalloutline.c → rbpoppler-annotation-callout-line.c} +2 -3
  7. data/ext/poppler/{rbpoppler-annotationfreetext.c → rbpoppler-annotation-free-text.c} +2 -3
  8. data/ext/poppler/{rbpoppler-annotationmapping.c → rbpoppler-annotation-mapping.c} +2 -3
  9. data/ext/poppler/{rbpoppler-annotationmarkup.c → rbpoppler-annotation-markup.c} +5 -4
  10. data/ext/poppler/{rbpoppler-annotationtext.c → rbpoppler-annotation-text.c} +2 -7
  11. data/ext/poppler/{rbpoppler-buttonfield.c → rbpoppler-button-field.c} +0 -0
  12. data/ext/poppler/{rbpoppler-choicefield.c → rbpoppler-choice-field.c} +0 -0
  13. data/ext/poppler/{rbpoppler-fontinfo.c → rbpoppler-font-info.c} +2 -8
  14. data/ext/poppler/{rbpoppler-fontsiter.c → rbpoppler-fonts-iter.c} +5 -6
  15. data/ext/poppler/{rbpoppler-formfieldmapping.c → rbpoppler-form-field-mapping.c} +2 -3
  16. data/ext/poppler/{rbpoppler-imagemapping.c → rbpoppler-image-mapping.c} +2 -7
  17. data/ext/poppler/{rbpoppler-indexiter.c → rbpoppler-index-iter.c} +2 -3
  18. data/ext/poppler/{rbpoppler-linkmapping.c → rbpoppler-link-mapping.c} +2 -3
  19. data/ext/poppler/{rbpoppler-pagetransition.c → rbpoppler-page-transition.c} +2 -3
  20. data/ext/poppler/rbpoppler-page.c +0 -29
  21. data/ext/poppler/rbpoppler-private.h +13 -13
  22. data/ext/poppler/{rbpoppler-psfile.c → rbpoppler-ps-file.c} +2 -3
  23. data/ext/poppler/{rbpoppler-textfield.c → rbpoppler-text-field.c} +0 -0
  24. data/ext/poppler/rbpoppler.c +14 -22
  25. data/ext/poppler/rbpoppler.h +3 -6
  26. data/ext/poppler/rbpopplerconversions.h +1 -1
  27. data/lib/1.9/poppler.so +0 -0
  28. data/lib/2.0/poppler.so +0 -0
  29. data/sample/pdf2.rb +46 -10
  30. data/test/fixtures/image.png +0 -0
  31. data/test/run-test.rb +7 -4
  32. data/test/test_page.rb +1 -0
  33. data/vendor/local/bin/cjpeg.exe +0 -0
  34. data/vendor/local/bin/djpeg.exe +0 -0
  35. data/vendor/local/bin/jpegtran.exe +0 -0
  36. data/vendor/local/bin/libjpeg-9.dll +0 -0
  37. data/vendor/local/bin/libpoppler-44.dll +0 -0
  38. data/vendor/local/bin/libpoppler-glib-8.dll +0 -0
  39. data/vendor/local/bin/libsqlite3-0.dll +0 -0
  40. data/vendor/local/bin/pdfdetach.exe +0 -0
  41. data/vendor/local/bin/pdffonts.exe +0 -0
  42. data/vendor/local/bin/pdfimages.exe +0 -0
  43. data/vendor/local/bin/pdfinfo.exe +0 -0
  44. data/vendor/local/bin/pdfseparate.exe +0 -0
  45. data/vendor/local/bin/pdftocairo.exe +0 -0
  46. data/vendor/local/bin/pdftohtml.exe +0 -0
  47. data/vendor/local/bin/pdftoppm.exe +0 -0
  48. data/vendor/local/bin/pdftops.exe +0 -0
  49. data/vendor/local/bin/pdftotext.exe +0 -0
  50. data/vendor/local/bin/pdfunite.exe +0 -0
  51. data/vendor/local/bin/rdjpgcom.exe +0 -0
  52. data/vendor/local/bin/sqlite3.exe +0 -0
  53. data/vendor/local/bin/wrjpgcom.exe +0 -0
  54. data/vendor/local/include/jconfig.h +8 -0
  55. data/vendor/local/include/jerror.h +2 -2
  56. data/vendor/local/include/jmorecfg.h +28 -7
  57. data/vendor/local/include/jpeglib.h +46 -8
  58. data/vendor/local/include/poppler/glib/poppler-action.h +156 -2
  59. data/vendor/local/include/poppler/glib/poppler-annot.h +57 -1
  60. data/vendor/local/include/poppler/glib/poppler-attachment.h +17 -0
  61. data/vendor/local/include/poppler/glib/poppler-document.h +133 -26
  62. data/vendor/local/include/poppler/glib/poppler-enums.h +8 -0
  63. data/vendor/local/include/poppler/glib/poppler-features.h +58 -4
  64. data/vendor/local/include/poppler/glib/poppler-form-field.h +4 -0
  65. data/vendor/local/include/poppler/glib/poppler-media.h +73 -0
  66. data/vendor/local/include/poppler/glib/poppler-movie.h +42 -0
  67. data/vendor/local/include/poppler/glib/poppler-page.h +133 -44
  68. data/vendor/local/include/poppler/glib/poppler.h +125 -24
  69. data/vendor/local/include/sqlite3.h +7338 -0
  70. data/vendor/local/include/sqlite3ext.h +487 -0
  71. data/vendor/local/lib/girepository-1.0/Poppler-0.18.typelib +0 -0
  72. data/vendor/local/lib/libjpeg.a +0 -0
  73. data/vendor/local/lib/libjpeg.dll.a +0 -0
  74. data/vendor/local/lib/libjpeg.la +41 -0
  75. data/vendor/local/lib/libpoppler-glib.a +0 -0
  76. data/vendor/local/lib/libpoppler-glib.dll.a +0 -0
  77. data/vendor/local/lib/libpoppler-glib.la +41 -0
  78. data/vendor/local/lib/libpoppler.a +0 -0
  79. data/vendor/local/lib/libpoppler.dll.a +0 -0
  80. data/vendor/local/lib/libpoppler.la +41 -0
  81. data/vendor/local/lib/libsqlite3.a +0 -0
  82. data/vendor/local/lib/libsqlite3.dll.a +0 -0
  83. data/vendor/local/lib/libsqlite3.la +41 -0
  84. data/vendor/local/lib/pkgconfig/poppler-cairo.pc +9 -0
  85. data/vendor/local/lib/pkgconfig/poppler-glib.pc +3 -3
  86. data/vendor/local/lib/pkgconfig/poppler-splash.pc +2 -2
  87. data/vendor/local/lib/pkgconfig/poppler.pc +1 -1
  88. data/vendor/local/lib/pkgconfig/sqlite3.pc +13 -0
  89. data/vendor/local/share/gir-1.0/Poppler-0.18.gir +5452 -0
  90. data/vendor/local/share/gtk-doc/html/poppler/PopplerAnnot.html +1671 -0
  91. data/vendor/local/share/gtk-doc/html/poppler/PopplerAttachment.html +214 -0
  92. data/vendor/local/share/gtk-doc/html/poppler/PopplerDocument.html +2587 -0
  93. data/vendor/local/share/gtk-doc/html/poppler/PopplerFormField.html +1070 -0
  94. data/vendor/local/share/gtk-doc/html/poppler/PopplerLayer.html +228 -0
  95. data/vendor/local/share/gtk-doc/html/poppler/PopplerMedia.html +306 -0
  96. data/vendor/local/share/gtk-doc/html/poppler/PopplerMovie.html +156 -0
  97. data/vendor/local/share/gtk-doc/html/poppler/PopplerPage.html +2132 -0
  98. data/vendor/local/share/gtk-doc/html/poppler/annotation-glossary.html +71 -0
  99. data/vendor/local/share/gtk-doc/html/poppler/api-index-0-12.html +128 -0
  100. data/vendor/local/share/gtk-doc/html/poppler/api-index-0-14.html +107 -0
  101. data/vendor/local/share/gtk-doc/html/poppler/api-index-0-16.html +185 -0
  102. data/vendor/local/share/gtk-doc/html/poppler/api-index-0-18.html +77 -0
  103. data/vendor/local/share/gtk-doc/html/poppler/api-index-0-20.html +42 -0
  104. data/vendor/local/share/gtk-doc/html/poppler/api-index-0-22.html +62 -0
  105. data/vendor/local/share/gtk-doc/html/poppler/api-index-deprecated.html +42 -0
  106. data/vendor/local/share/gtk-doc/html/poppler/api-index-full.html +1352 -0
  107. data/vendor/local/share/gtk-doc/html/poppler/ch01.html +21 -19
  108. data/vendor/local/share/gtk-doc/html/poppler/home.png +0 -0
  109. data/vendor/local/share/gtk-doc/html/poppler/index.html +35 -18
  110. data/vendor/local/share/gtk-doc/html/poppler/index.sgml +548 -300
  111. data/vendor/local/share/gtk-doc/html/poppler/left.png +0 -0
  112. data/vendor/local/share/gtk-doc/html/poppler/poppler-PopplerAction.html +662 -0
  113. data/vendor/local/share/gtk-doc/html/poppler/poppler-Version-and-Features-Information.html +145 -0
  114. data/vendor/local/share/gtk-doc/html/poppler/poppler-poppler.html +319 -364
  115. data/vendor/local/share/gtk-doc/html/poppler/poppler.devhelp2 +506 -265
  116. data/vendor/local/share/gtk-doc/html/poppler/right.png +0 -0
  117. data/vendor/local/share/gtk-doc/html/poppler/style.css +153 -54
  118. data/vendor/local/share/gtk-doc/html/poppler/up.png +0 -0
  119. data/vendor/local/share/license/poppler/AUTHORS +5 -0
  120. data/vendor/local/share/license/poppler/COPYING +339 -0
  121. data/vendor/local/share/man/man1/cjpeg.1 +51 -10
  122. data/vendor/local/share/man/man1/djpeg.1 +5 -4
  123. data/vendor/local/share/man/man1/jpegtran.1 +15 -2
  124. data/vendor/local/share/man/man1/pdfdetach.1 +86 -0
  125. data/vendor/local/share/man/man1/pdffonts.1 +16 -7
  126. data/vendor/local/share/man/man1/pdfimages.1 +114 -7
  127. data/vendor/local/share/man/man1/pdfinfo.1 +16 -7
  128. data/vendor/local/share/man/man1/pdfseparate.1 +49 -0
  129. data/vendor/local/share/man/man1/pdftocairo.1 +266 -0
  130. data/vendor/local/share/man/man1/pdftohtml.1 +30 -8
  131. data/vendor/local/share/man/man1/pdftoppm.1 +42 -12
  132. data/vendor/local/share/man/man1/pdftops.1 +26 -10
  133. data/vendor/local/share/man/man1/pdftotext.1 +18 -7
  134. data/vendor/local/share/man/man1/pdfunite.1 +33 -0
  135. data/vendor/local/share/man/man1/sqlite3.1 +229 -0
  136. metadata +107 -64
  137. data/vendor/local/bin/libgcc_s_dw2-1.dll +0 -0
  138. data/vendor/local/bin/libjpeg-7.dll +0 -0
  139. data/vendor/local/bin/libpng12-0.dll +0 -0
  140. data/vendor/local/bin/libpoppler-5.dll +0 -0
  141. data/vendor/local/bin/libpoppler-glib-4.dll +0 -0
  142. data/vendor/local/include/libpng12/png.h +0 -3726
  143. data/vendor/local/include/libpng12/pngconf.h +0 -1508
  144. data/vendor/local/include/png.h +0 -3726
  145. data/vendor/local/include/pngconf.h +0 -1508
  146. data/vendor/local/lib/libpng.def +0 -366
  147. data/vendor/local/lib/libpng.lib +0 -0
  148. data/vendor/local/lib/libpng12.dll.a +0 -0
  149. data/vendor/local/lib/pkgconfig/libpng.pc +0 -11
  150. data/vendor/local/lib/pkgconfig/libpng12.pc +0 -11
  151. data/vendor/local/manifest/jpeg-dev_7-1_win32.mft +0 -18
  152. data/vendor/local/manifest/jpeg_7-1_win32.mft +0 -2
  153. data/vendor/local/manifest/libpng-dev_1.2.40-1_win32.mft +0 -15
  154. data/vendor/local/manifest/libpng_1.2.40-1_win32.mft +0 -2
  155. data/vendor/local/manifest/poppler-dev_0.12.0-1_win32.mft +0 -49
  156. data/vendor/local/manifest/poppler_0.12.0-1_win32.mft +0 -4
  157. data/vendor/local/share/gtk-doc/html/poppler/poppler-poppler-action.html +0 -386
  158. data/vendor/local/share/gtk-doc/html/poppler/poppler-poppler-annot.html +0 -854
  159. data/vendor/local/share/gtk-doc/html/poppler/poppler-poppler-attachment.html +0 -205
  160. data/vendor/local/share/gtk-doc/html/poppler/poppler-poppler-document.html +0 -1122
  161. data/vendor/local/share/gtk-doc/html/poppler/poppler-poppler-enums.html +0 -412
  162. data/vendor/local/share/gtk-doc/html/poppler/poppler-poppler-features.html +0 -143
  163. data/vendor/local/share/gtk-doc/html/poppler/poppler-poppler-form-field.html +0 -871
  164. data/vendor/local/share/gtk-doc/html/poppler/poppler-poppler-layer.html +0 -214
  165. data/vendor/local/share/gtk-doc/html/poppler/poppler-poppler-page.html +0 -1258
  166. data/vendor/local/share/gtk-doc/html/poppler/poppler.devhelp +0 -281
  167. data/vendor/local/share/man/man3/libpng.3 +0 -4349
  168. data/vendor/local/share/man/man3/libpngpf.3 +0 -790
  169. data/vendor/local/share/man/man5/png.5 +0 -74
  170. data/vendor/local/src/tml/packaging/jpeg_7-1_win32.log +0 -249
  171. data/vendor/local/src/tml/packaging/jpeg_7-1_win32.sh +0 -44
  172. data/vendor/local/src/tml/packaging/libpng_1.2.40-1_win32.log +0 -269
  173. data/vendor/local/src/tml/packaging/libpng_1.2.40-1_win32.sh +0 -63
@@ -1,74 +0,0 @@
1
- .TH PNG 5 "September 10, 2009"
2
- .SH NAME
3
- png \- Portable Network Graphics (PNG) format
4
- .SH DESCRIPTION
5
- PNG (Portable Network Graphics) is an extensible file format for the
6
- lossless, portable, well-compressed storage of raster images. PNG provides
7
- a patent-free replacement for GIF and can also replace many
8
- common uses of TIFF. Indexed-color, grayscale, and truecolor images are
9
- supported, plus an optional alpha channel. Sample depths range from
10
- 1 to 16 bits.
11
- .br
12
-
13
- PNG is designed to work well in online viewing applications, such as the
14
- World Wide Web, so it is fully streamable with a progressive display
15
- option. PNG is robust, providing both full file integrity checking and
16
- fast, simple detection of common transmission errors. Also, PNG can store
17
- gamma and chromaticity data for improved color matching on heterogeneous
18
- platforms.
19
-
20
- .SH "SEE ALSO"
21
- .IR libpng(3) ", " zlib(3) ", " deflate(5) ", and " zlib(5)
22
- .LP
23
- PNG specification (second edition), November 2003:
24
- .IP
25
- .br
26
- <http://www.w3.org/TR/2003/REC-PNG-20031110/
27
- PNG 1.2 specification, July 1999:
28
- .IP
29
- .br
30
- http://www.libpng.org/pub/png
31
- .LP
32
- PNG 1.0 specification, October 1996:
33
- .IP
34
- .br
35
- RFC 2083
36
- .IP
37
- .br
38
- ftp://ftp.rfc-editor.org:/in-notes/rfc2083.txt
39
- .br
40
- or (as a W3C Recommendation) at
41
- .br
42
- http://www.w3.org/TR/REC-png.html
43
- .SH AUTHORS
44
- This man page: Glenn Randers-Pehrson
45
- .LP
46
- Portable Network Graphics (PNG) Specification (Second Edition)
47
- Information technology - Computer graphics and image processing -
48
- Portable Network Graphics (PNG): Functional specification.
49
- ISO/IEC 15948:2003 (E) (November 10, 2003): David Duce and others.
50
- .LP
51
- Portable Network Graphics (PNG) Specification Version 1.2 (July 8, 1999):
52
- Glenn Randers-Pehrson and others (png-list).
53
- .LP
54
- Portable Network Graphics (PNG) Specification Version 1.0 (October 1, 1996):
55
- Thomas Boutell and others (png-list).
56
- .LP
57
-
58
-
59
- .SH COPYRIGHT NOTICE
60
- .LP
61
- This man page is Copyright (c) 1998-2006 Glenn Randers-Pehrson. See png.h
62
- for conditions of use and distribution.
63
- .LP
64
- The PNG Specification (Second Edition) is
65
- Copyright (c) 2003 W3C. (MIT, ERCIM, Keio), All Rights Reserved.
66
- .LP
67
- The PNG-1.2 specification is copyright (c) 1999 Glenn Randers-Pehrson.
68
- See the specification for conditions of use and distribution.
69
- .LP
70
- The PNG-1.0 specification is copyright (c) 1996 Massachusetts Institute of
71
- Technology. See the specification for conditions of use and distribution.
72
- .LP
73
- .\" end of man page
74
-
@@ -1,249 +0,0 @@
1
- ++ CC='gcc -mtune=pentium3 -mthreads'
2
- ++ CFLAGS=-O2
3
- ++ ./configure --disable-static --prefix=c:/devel/target/53e0634bf9a4dd20bde625527b94988b
4
- checking build system type... i686-pc-mingw32
5
- checking host system type... i686-pc-mingw32
6
- checking target system type... i686-pc-mingw32
7
- checking for a BSD-compatible install... /opt/local/bin/install -c
8
- checking whether build environment is sane... yes
9
- checking for a thread-safe mkdir -p... /bin/mkdir -p
10
- checking for gawk... gawk
11
- checking whether make sets $(MAKE)... yes
12
- checking for style of include used by make... GNU
13
- checking for gcc... gcc -mtune=pentium3 -mthreads
14
- checking for C compiler default output file name... a.exe
15
- checking whether the C compiler works... yes
16
- checking whether we are cross compiling... no
17
- checking for suffix of executables... .exe
18
- checking for suffix of object files... o
19
- checking whether we are using the GNU C compiler... yes
20
- checking whether gcc -mtune=pentium3 -mthreads accepts -g... yes
21
- checking for gcc -mtune=pentium3 -mthreads option to accept ISO C89... none needed
22
- checking dependency style of gcc -mtune=pentium3 -mthreads... gcc3
23
- checking for function prototypes... yes
24
- checking how to run the C preprocessor... gcc -mtune=pentium3 -mthreads -E
25
- checking for grep that handles long lines and -e... /opt/gnuwin32/bin/grep
26
- checking for egrep... /opt/gnuwin32/bin/grep -E
27
- checking for ANSI C header files... yes
28
- checking for sys/types.h... yes
29
- checking for sys/stat.h... yes
30
- checking for stdlib.h... yes
31
- checking for string.h... yes
32
- checking for memory.h... yes
33
- checking for strings.h... yes
34
- checking for inttypes.h... yes
35
- checking for stdint.h... yes
36
- checking for unistd.h... yes
37
- checking for string.h... (cached) yes
38
- checking whether to enable maintainer-specific portions of Makefiles... no
39
- checking for gcc... (cached) gcc -mtune=pentium3 -mthreads
40
- checking whether we are using the GNU C compiler... (cached) yes
41
- checking whether gcc -mtune=pentium3 -mthreads accepts -g... (cached) yes
42
- checking for gcc -mtune=pentium3 -mthreads option to accept ISO C89... (cached) none needed
43
- checking dependency style of gcc -mtune=pentium3 -mthreads... (cached) gcc3
44
- checking for gcc -mtune=pentium3 -mthreads option to accept ISO C99... -std=gnu99
45
- checking for gcc -mtune=pentium3 -mthreads -std=gnu99 option to accept ISO Standard C... (cached) -std=gnu99
46
- checking how to run the C preprocessor... gcc -mtune=pentium3 -mthreads -E
47
- checking for a BSD-compatible install... /opt/local/bin/install -c
48
- checking whether make sets $(MAKE)... (cached) yes
49
- checking whether ln -s works... yes
50
- checking if LD -Wl,--version-script works... yes
51
- checking for function prototypes... yes
52
- checking stddef.h usability... yes
53
- checking stddef.h presence... yes
54
- checking for stddef.h... yes
55
- checking for stdlib.h... (cached) yes
56
- checking locale.h usability... yes
57
- checking locale.h presence... yes
58
- checking for locale.h... yes
59
- checking for string.h... (cached) yes
60
- checking for size_t... yes
61
- checking for type unsigned char... yes
62
- checking for type unsigned short... yes
63
- checking for type void... yes
64
- checking for an ANSI C-conforming const... yes
65
- checking for inline... __inline__
66
- checking for broken incomplete types... ok
67
- checking for short external names... ok
68
- checking to see if char is signed... yes
69
- checking to see if right shift is signed... yes
70
- checking to see if fopen accepts b spec... yes
71
- checking for as... as
72
- checking for dlltool... dlltool
73
- checking for objdump... objdump
74
- checking for a sed that does not truncate output... /bin/sed
75
- checking for fgrep... /opt/gnuwin32/bin/grep -F
76
- checking for ld used by gcc -mtune=pentium3 -mthreads -std=gnu99... c:/opt/mingw/bin/../lib/gcc/mingw32/4.4.0/../../../../mingw32/bin/ld.exe
77
- checking if the linker (c:/opt/mingw/bin/../lib/gcc/mingw32/4.4.0/../../../../mingw32/bin/ld.exe) is GNU ld... yes
78
- checking for BSD- or MS-compatible name lister (nm)... /opt/mingw/bin/nm
79
- checking the name lister (/opt/mingw/bin/nm) interface... BSD nm
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/bin/../lib/gcc/mingw32/4.4.0/../../../../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 ^x86 archive import|^x86 DLL
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 -mtune=pentium3 -mthreads -std=gnu99 object... ok
90
- checking for dlfcn.h... no
91
- checking for objdir... .libs
92
- checking if gcc -mtune=pentium3 -mthreads -std=gnu99 supports -fno-rtti -fno-exceptions... no
93
- checking for gcc -mtune=pentium3 -mthreads -std=gnu99 option to produce PIC... -DDLL_EXPORT -DPIC
94
- checking if gcc -mtune=pentium3 -mthreads -std=gnu99 PIC flag -DDLL_EXPORT -DPIC works... yes
95
- checking if gcc -mtune=pentium3 -mthreads -std=gnu99 static flag -static works... yes
96
- checking if gcc -mtune=pentium3 -mthreads -std=gnu99 supports -c -o file.o... yes
97
- checking if gcc -mtune=pentium3 -mthreads -std=gnu99 supports -c -o file.o... (cached) yes
98
- checking whether the gcc -mtune=pentium3 -mthreads -std=gnu99 linker (c:/opt/mingw/bin/../lib/gcc/mingw32/4.4.0/../../../../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 libjpeg version number... 7:0
107
- configure: creating ./config.status
108
- config.status: creating Makefile
109
- config.status: creating jconfig.h
110
- config.status: executing depfiles commands
111
- config.status: executing libtool commands
112
- ++ make install
113
- CC jaricom.lo
114
- CC jcapimin.lo
115
- CC jcapistd.lo
116
- CC jcarith.lo
117
- CC jccoefct.lo
118
- CC jccolor.lo
119
- CC jcdctmgr.lo
120
- CC jchuff.lo
121
- CC jcinit.lo
122
- CC jcmainct.lo
123
- CC jcmarker.lo
124
- CC jcmaster.lo
125
- CC jcomapi.lo
126
- CC jcparam.lo
127
- CC jcprepct.lo
128
- CC jcsample.lo
129
- CC jctrans.lo
130
- CC jdapimin.lo
131
- CC jdapistd.lo
132
- CC jdarith.lo
133
- CC jdatadst.lo
134
- CC jdatasrc.lo
135
- CC jdcoefct.lo
136
- CC jdcolor.lo
137
- CC jddctmgr.lo
138
- CC jdhuff.lo
139
- CC jdinput.lo
140
- CC jdmainct.lo
141
- CC jdmarker.lo
142
- CC jdmaster.lo
143
- CC jdmerge.lo
144
- CC jdpostct.lo
145
- CC jdsample.lo
146
- CC jdtrans.lo
147
- CC jerror.lo
148
- CC jfdctflt.lo
149
- CC jfdctfst.lo
150
- CC jfdctint.lo
151
- CC jidctflt.lo
152
- CC jidctfst.lo
153
- CC jidctint.lo
154
- CC jquant1.lo
155
- CC jquant2.lo
156
- CC jutils.lo
157
- CC jmemmgr.lo
158
- CC jmemnobs.lo
159
- CCLD libjpeg.la
160
- Creating library file: .libs/libjpeg.dll.a
161
- CC cjpeg.o
162
- CC rdppm.o
163
- CC rdgif.o
164
- CC rdtarga.o
165
- CC rdrle.o
166
- CC rdbmp.o
167
- CC rdswitch.o
168
- CC cdjpeg.o
169
- CCLD cjpeg.exe
170
- CC djpeg.o
171
- CC wrppm.o
172
- CC wrgif.o
173
- CC wrtarga.o
174
- CC wrrle.o
175
- CC wrbmp.o
176
- CC rdcolmap.o
177
- CCLD djpeg.exe
178
- CC jpegtran.o
179
- CC transupp.o
180
- CCLD jpegtran.exe
181
- CC rdjpgcom.o
182
- CCLD rdjpgcom.exe
183
- CC wrjpgcom.o
184
- CCLD wrjpgcom.exe
185
- make[1]: Entering directory `/devel/src/jpeg/7-1_win32'
186
- test -z "c:/devel/target/53e0634bf9a4dd20bde625527b94988b/lib" || /bin/mkdir -p "c:/devel/target/53e0634bf9a4dd20bde625527b94988b/lib"
187
- /bin/sh ./libtool --mode=install /opt/local/bin/install -c libjpeg.la 'c:/devel/target/53e0634bf9a4dd20bde625527b94988b/lib'
188
- libtool: install: /opt/local/bin/install -c .libs/libjpeg.dll.a c:/devel/target/53e0634bf9a4dd20bde625527b94988b/lib/libjpeg.dll.a
189
- libtool: install: base_file=`basename libjpeg.la`
190
- libtool: install: dlpath=`/bin/sh 2>&1 -c '. .libs/'libjpeg.la'i; echo libjpeg-7.dll'`
191
- libtool: install: dldir=c:/devel/target/53e0634bf9a4dd20bde625527b94988b/lib/`dirname ../bin/libjpeg-7.dll`
192
- libtool: install: test -d c:/devel/target/53e0634bf9a4dd20bde625527b94988b/lib/../bin || mkdir -p c:/devel/target/53e0634bf9a4dd20bde625527b94988b/lib/../bin
193
- libtool: install: /opt/local/bin/install -c .libs/libjpeg-7.dll c:/devel/target/53e0634bf9a4dd20bde625527b94988b/lib/../bin/libjpeg-7.dll
194
- libtool: install: chmod a+x c:/devel/target/53e0634bf9a4dd20bde625527b94988b/lib/../bin/libjpeg-7.dll
195
- libtool: install: if test -n '' && test -n 'strip --strip-unneeded'; then eval 'strip --strip-unneeded c:/devel/target/53e0634bf9a4dd20bde625527b94988b/lib/../bin/libjpeg-7.dll' || exit 0; fi
196
- libtool: install: /opt/local/bin/install -c .libs/libjpeg.lai c:/devel/target/53e0634bf9a4dd20bde625527b94988b/lib/libjpeg.la
197
- ----------------------------------------------------------------------
198
- Libraries have been installed in:
199
- c:/devel/target/53e0634bf9a4dd20bde625527b94988b/lib
200
-
201
- If you ever happen to want to link against installed libraries
202
- in a given directory, LIBDIR, you must either use libtool, and
203
- specify the full pathname of the library, or use the `-LLIBDIR'
204
- flag during linking and do at least one of the following:
205
- - add LIBDIR to the `PATH' environment variable
206
- during execution
207
- - add LIBDIR to the `LD_RUN_PATH' environment variable
208
- during linking
209
- - use the `-LLIBDIR' linker flag
210
-
211
- See any operating system documentation about shared libraries for
212
- more information, such as the ld(1) and ld.so(8) manual pages.
213
- ----------------------------------------------------------------------
214
- test -z "c:/devel/target/53e0634bf9a4dd20bde625527b94988b/bin" || /bin/mkdir -p "c:/devel/target/53e0634bf9a4dd20bde625527b94988b/bin"
215
- /bin/sh ./libtool --mode=install /opt/local/bin/install -c cjpeg.exe djpeg.exe jpegtran.exe rdjpgcom.exe wrjpgcom.exe 'c:/devel/target/53e0634bf9a4dd20bde625527b94988b/bin'
216
- libtool: install: /opt/local/bin/install -c .libs/cjpeg.exe c:/devel/target/53e0634bf9a4dd20bde625527b94988b/bin/cjpeg.exe
217
- libtool: install: /opt/local/bin/install -c .libs/djpeg.exe c:/devel/target/53e0634bf9a4dd20bde625527b94988b/bin/djpeg.exe
218
- libtool: install: /opt/local/bin/install -c .libs/jpegtran.exe c:/devel/target/53e0634bf9a4dd20bde625527b94988b/bin/jpegtran.exe
219
- libtool: install: /opt/local/bin/install -c .libs/rdjpgcom.exe c:/devel/target/53e0634bf9a4dd20bde625527b94988b/bin/rdjpgcom.exe
220
- libtool: install: /opt/local/bin/install -c .libs/wrjpgcom.exe c:/devel/target/53e0634bf9a4dd20bde625527b94988b/bin/wrjpgcom.exe
221
- /bin/sh /devel/src/jpeg/7-1_win32/install-sh -d c:/devel/target/53e0634bf9a4dd20bde625527b94988b/include
222
- /opt/local/bin/install -c -m 644 jconfig.h c:/devel/target/53e0634bf9a4dd20bde625527b94988b/include/jconfig.h
223
- test -z "c:/devel/target/53e0634bf9a4dd20bde625527b94988b/include" || /bin/mkdir -p "c:/devel/target/53e0634bf9a4dd20bde625527b94988b/include"
224
- /opt/local/bin/install -c -m 644 jerror.h jmorecfg.h jpeglib.h 'c:/devel/target/53e0634bf9a4dd20bde625527b94988b/include'
225
- test -z "c:/devel/target/53e0634bf9a4dd20bde625527b94988b/share/man/man1" || /bin/mkdir -p "c:/devel/target/53e0634bf9a4dd20bde625527b94988b/share/man/man1"
226
- /opt/local/bin/install -c -m 644 cjpeg.1 djpeg.1 jpegtran.1 rdjpgcom.1 wrjpgcom.1 'c:/devel/target/53e0634bf9a4dd20bde625527b94988b/share/man/man1'
227
- make[1]: Leaving directory `/devel/src/jpeg/7-1_win32'
228
- ++ rm -f /tmp/jpeg_7-1_win32.zip /tmp/jpeg-dev_7-1_win32.zip
229
- ++ cd /devel/target/53e0634bf9a4dd20bde625527b94988b
230
- ++ zip /tmp/jpeg_7-1_win32.zip bin/libjpeg-7.dll
231
- adding: bin/libjpeg-7.dll (224 bytes security) (deflated 53%)
232
- ++ zip /tmp/jpeg-dev_7-1_win32.zip bin/cjpeg.exe bin/djpeg.exe bin/jpegtran.exe bin/rdjpgcom.exe bin/wrjpgcom.exe
233
- adding: bin/cjpeg.exe (224 bytes security) (deflated 64%)
234
- adding: bin/djpeg.exe (224 bytes security) (deflated 63%)
235
- adding: bin/jpegtran.exe (224 bytes security) (deflated 62%)
236
- adding: bin/rdjpgcom.exe (224 bytes security) (deflated 70%)
237
- adding: bin/wrjpgcom.exe (224 bytes security) (deflated 69%)
238
- ++ zip /tmp/jpeg-dev_7-1_win32.zip lib/libjpeg.dll.a
239
- adding: lib/libjpeg.dll.a (224 bytes security) (deflated 93%)
240
- ++ zip -r -D /tmp/jpeg-dev_7-1_win32.zip include share
241
- adding: include/jconfig.h (224 bytes security) (deflated 57%)
242
- adding: include/jerror.h (224 bytes security) (deflated 72%)
243
- adding: include/jmorecfg.h (224 bytes security) (deflated 62%)
244
- adding: include/jpeglib.h (224 bytes security) (deflated 71%)
245
- adding: share/man/man1/cjpeg.1 (224 bytes security) (deflated 58%)
246
- adding: share/man/man1/djpeg.1 (224 bytes security) (deflated 59%)
247
- adding: share/man/man1/jpegtran.1 (224 bytes security) (deflated 58%)
248
- adding: share/man/man1/rdjpgcom.1 (224 bytes security) (deflated 48%)
249
- adding: share/man/man1/wrjpgcom.1 (224 bytes security) (deflated 54%)
@@ -1,44 +0,0 @@
1
- # This is a shell script that calls functions and scripts from
2
- # tml@iki.fi's personal work environment. It is not expected to be
3
- # usable unmodified by others, and is included only for reference.
4
-
5
- MOD=jpeg
6
- VER=7
7
- REV=1
8
- ARCH=win32
9
-
10
- THIS=${MOD}_${VER}-${REV}_${ARCH}
11
-
12
- RUNZIP=${MOD}_${VER}-${REV}_${ARCH}.zip
13
- DEVZIP=${MOD}-dev_${VER}-${REV}_${ARCH}.zip
14
-
15
- HEX=`echo $THIS | md5sum | cut -d' ' -f1`
16
- TARGET=c:/devel/target/$HEX
17
-
18
- usedev
19
- usemsvs6
20
-
21
- (
22
-
23
- set -x
24
-
25
- CC='gcc -mtune=pentium3 -mthreads' \
26
- CFLAGS=-O2 \
27
- ./configure \
28
- --disable-static \
29
- --prefix=$TARGET &&
30
-
31
- make install &&
32
-
33
- rm -f /tmp/$RUNZIP /tmp/$DEVZIP &&
34
-
35
- cd /devel/target/$HEX &&
36
- zip /tmp/$RUNZIP bin/libjpeg-7.dll &&
37
- zip /tmp/$DEVZIP bin/*.exe &&
38
- zip /tmp/$DEVZIP lib/*.dll.a &&
39
- zip -r -D /tmp/$DEVZIP include share
40
-
41
- ) 2>&1 | tee /devel/src/tml/packaging/$THIS.log
42
-
43
- (cd /devel && zip /tmp/$DEVZIP src/tml/packaging/$THIS.{sh,log}) &&
44
- manifestify /tmp/$RUNZIP /tmp/$DEVZIP
@@ -1,269 +0,0 @@
1
- ++ sed -e 's/need_relink=yes/need_relink=no # no way --tml/'
2
- ++ mv ltmain.temp ltmain.sh
3
- ++ patch -p0
4
- patching file `Makefile.in'
5
- Hunk #1 succeeded at 1382 (offset 97 lines).
6
- ++ lt_cv_deplibs_check_method=pass_all
7
- ++ CC='gcc -mtune=pentium3 -mthreads -mms-bitfields'
8
- ++ CPPFLAGS='-I /devel/dist/win32/zlib-1.2.3/include'
9
- ++ LDFLAGS='-L/devel/dist/win32/zlib-1.2.3/lib -Wl,--enable-auto-image-base'
10
- ++ CFLAGS=-O2
11
- ++ ./configure --disable-static --without-libpng-compat --without-binconfigs --prefix=c:/devel/target/9f6c8856d9e51e49da72aebd6595caa0
12
- checking for a BSD-compatible install... /opt/local/bin/install -c
13
- checking whether build environment is sane... yes
14
- checking for a thread-safe mkdir -p... /bin/mkdir -p
15
- checking for gawk... gawk
16
- checking whether make sets $(MAKE)... yes
17
- checking whether to enable maintainer-specific portions of Makefiles... no
18
- checking for gcc... gcc -mtune=pentium3 -mthreads -mms-bitfields
19
- checking for C compiler default output file name... a.exe
20
- checking whether the C compiler works... yes
21
- checking whether we are cross compiling... no
22
- checking for suffix of executables... .exe
23
- checking for suffix of object files... o
24
- checking whether we are using the GNU C compiler... yes
25
- checking whether gcc -mtune=pentium3 -mthreads -mms-bitfields accepts -g... yes
26
- checking for gcc -mtune=pentium3 -mthreads -mms-bitfields option to accept ISO C89... none needed
27
- checking for style of include used by make... GNU
28
- checking dependency style of gcc -mtune=pentium3 -mthreads -mms-bitfields... gcc3
29
- checking build system type... i686-pc-mingw32
30
- checking host system type... i686-pc-mingw32
31
- checking for a sed that does not truncate output... /bin/sed
32
- checking for grep that handles long lines and -e... /opt/gnuwin32/bin/grep
33
- checking for egrep... /opt/gnuwin32/bin/grep -E
34
- checking for fgrep... /opt/gnuwin32/bin/grep -F
35
- checking for ld used by gcc -mtune=pentium3 -mthreads -mms-bitfields... c:/opt/mingw/bin/../lib/gcc/mingw32/4.4.0/../../../../mingw32/bin/ld.exe
36
- checking if the linker (c:/opt/mingw/bin/../lib/gcc/mingw32/4.4.0/../../../../mingw32/bin/ld.exe) is GNU ld... yes
37
- checking how to run the C preprocessor... gcc -mtune=pentium3 -mthreads -mms-bitfields -E
38
- checking for sed... /bin/sed
39
- checking for as... as
40
- checking for dlltool... dlltool
41
- checking for objdump... objdump
42
- checking whether ln -s works... yes
43
- checking whether make sets $(MAKE)... (cached) yes
44
- checking for BSD- or MS-compatible name lister (nm)... /opt/mingw/bin/nm
45
- checking the name lister (/opt/mingw/bin/nm) interface... BSD nm
46
- checking the maximum length of command line arguments... 8192
47
- checking whether the shell understands some XSI constructs... yes
48
- checking whether the shell understands "+="... yes
49
- checking for c:/opt/mingw/bin/../lib/gcc/mingw32/4.4.0/../../../../mingw32/bin/ld.exe option to reload object files... -r
50
- checking for objdump... (cached) objdump
51
- checking how to recognize dependent libraries... (cached) pass_all
52
- checking for ar... ar
53
- checking for strip... strip
54
- checking for ranlib... ranlib
55
- checking command to parse /opt/mingw/bin/nm output from gcc -mtune=pentium3 -mthreads -mms-bitfields object... ok
56
- checking for ANSI C header files... yes
57
- checking for sys/types.h... yes
58
- checking for sys/stat.h... yes
59
- checking for stdlib.h... yes
60
- checking for string.h... yes
61
- checking for memory.h... yes
62
- checking for strings.h... yes
63
- checking for inttypes.h... yes
64
- checking for stdint.h... yes
65
- checking for unistd.h... yes
66
- checking for dlfcn.h... no
67
- checking for objdir... .libs
68
- checking if gcc -mtune=pentium3 -mthreads -mms-bitfields supports -fno-rtti -fno-exceptions... no
69
- checking for gcc -mtune=pentium3 -mthreads -mms-bitfields option to produce PIC... -DDLL_EXPORT -DPIC
70
- checking if gcc -mtune=pentium3 -mthreads -mms-bitfields PIC flag -DDLL_EXPORT -DPIC works... yes
71
- checking if gcc -mtune=pentium3 -mthreads -mms-bitfields static flag -static works... yes
72
- checking if gcc -mtune=pentium3 -mthreads -mms-bitfields supports -c -o file.o... yes
73
- checking if gcc -mtune=pentium3 -mthreads -mms-bitfields supports -c -o file.o... (cached) yes
74
- checking whether the gcc -mtune=pentium3 -mthreads -mms-bitfields linker (c:/opt/mingw/bin/../lib/gcc/mingw32/4.4.0/../../../../mingw32/bin/ld.exe) supports shared libraries... yes
75
- checking whether -lc should be explicitly linked in... yes
76
- checking dynamic linker characteristics... Win32 ld.exe
77
- checking how to hardcode library paths into programs... immediate
78
- checking whether stripping libraries is possible... yes
79
- checking if libtool supports shared libraries... yes
80
- checking whether to build shared libraries... yes
81
- checking whether to build static libraries... no
82
- checking for ANSI C header files... (cached) yes
83
- checking malloc.h usability... yes
84
- checking malloc.h presence... yes
85
- checking for malloc.h... yes
86
- checking for stdlib.h... (cached) yes
87
- checking for string.h... (cached) yes
88
- checking for strings.h... (cached) yes
89
- checking for an ANSI C-conforming const... yes
90
- checking for size_t... yes
91
- checking whether struct tm is in sys/time.h or time.h... time.h
92
- checking for working strtod... yes
93
- checking for memset... yes
94
- checking for pow... yes
95
- checking for zlibVersion in -lz... yes
96
- checking if assembler code in pnggccrd.c can be compiled without PNG_NO_MMX_CODE... yes
97
- checking if libraries can be versioned... yes
98
- checking for symbol prefix... _
99
- configure: pkgconfig directory is ${libdir}/pkgconfig
100
- configure: libpng-config scripts will not be built
101
- configure: libpng.so will not be built
102
- configure: creating ./config.status
103
- config.status: creating Makefile
104
- config.status: creating libpng.pc
105
- config.status: creating libpng-config
106
- config.status: creating config.h
107
- config.status: executing depfiles commands
108
- config.status: executing libtool commands
109
- ++ make install
110
- /bin/sh ./libtool --tag=CC --mode=compile gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -DPNG_CONFIGURE_LIBPNG -I /devel/dist/win32/zlib-1.2.3/include -O2 -MT libpng12_la-png.lo -MD -MP -MF .deps/libpng12_la-png.Tpo -c -o libpng12_la-png.lo `test -f 'png.c' || echo './'`png.c
111
- libtool: compile: gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -DPNG_CONFIGURE_LIBPNG -I /devel/dist/win32/zlib-1.2.3/include -O2 -MT libpng12_la-png.lo -MD -MP -MF .deps/libpng12_la-png.Tpo -c png.c -DDLL_EXPORT -DPIC -o .libs/libpng12_la-png.o
112
- mv -f .deps/libpng12_la-png.Tpo .deps/libpng12_la-png.Plo
113
- /bin/sh ./libtool --tag=CC --mode=compile gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -DPNG_CONFIGURE_LIBPNG -I /devel/dist/win32/zlib-1.2.3/include -O2 -MT libpng12_la-pngset.lo -MD -MP -MF .deps/libpng12_la-pngset.Tpo -c -o libpng12_la-pngset.lo `test -f 'pngset.c' || echo './'`pngset.c
114
- libtool: compile: gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -DPNG_CONFIGURE_LIBPNG -I /devel/dist/win32/zlib-1.2.3/include -O2 -MT libpng12_la-pngset.lo -MD -MP -MF .deps/libpng12_la-pngset.Tpo -c pngset.c -DDLL_EXPORT -DPIC -o .libs/libpng12_la-pngset.o
115
- mv -f .deps/libpng12_la-pngset.Tpo .deps/libpng12_la-pngset.Plo
116
- /bin/sh ./libtool --tag=CC --mode=compile gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -DPNG_CONFIGURE_LIBPNG -I /devel/dist/win32/zlib-1.2.3/include -O2 -MT libpng12_la-pngget.lo -MD -MP -MF .deps/libpng12_la-pngget.Tpo -c -o libpng12_la-pngget.lo `test -f 'pngget.c' || echo './'`pngget.c
117
- libtool: compile: gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -DPNG_CONFIGURE_LIBPNG -I /devel/dist/win32/zlib-1.2.3/include -O2 -MT libpng12_la-pngget.lo -MD -MP -MF .deps/libpng12_la-pngget.Tpo -c pngget.c -DDLL_EXPORT -DPIC -o .libs/libpng12_la-pngget.o
118
- mv -f .deps/libpng12_la-pngget.Tpo .deps/libpng12_la-pngget.Plo
119
- /bin/sh ./libtool --tag=CC --mode=compile gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -DPNG_CONFIGURE_LIBPNG -I /devel/dist/win32/zlib-1.2.3/include -O2 -MT libpng12_la-pngrutil.lo -MD -MP -MF .deps/libpng12_la-pngrutil.Tpo -c -o libpng12_la-pngrutil.lo `test -f 'pngrutil.c' || echo './'`pngrutil.c
120
- libtool: compile: gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -DPNG_CONFIGURE_LIBPNG -I /devel/dist/win32/zlib-1.2.3/include -O2 -MT libpng12_la-pngrutil.lo -MD -MP -MF .deps/libpng12_la-pngrutil.Tpo -c pngrutil.c -DDLL_EXPORT -DPIC -o .libs/libpng12_la-pngrutil.o
121
- mv -f .deps/libpng12_la-pngrutil.Tpo .deps/libpng12_la-pngrutil.Plo
122
- /bin/sh ./libtool --tag=CC --mode=compile gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -DPNG_CONFIGURE_LIBPNG -I /devel/dist/win32/zlib-1.2.3/include -O2 -MT libpng12_la-pngtrans.lo -MD -MP -MF .deps/libpng12_la-pngtrans.Tpo -c -o libpng12_la-pngtrans.lo `test -f 'pngtrans.c' || echo './'`pngtrans.c
123
- libtool: compile: gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -DPNG_CONFIGURE_LIBPNG -I /devel/dist/win32/zlib-1.2.3/include -O2 -MT libpng12_la-pngtrans.lo -MD -MP -MF .deps/libpng12_la-pngtrans.Tpo -c pngtrans.c -DDLL_EXPORT -DPIC -o .libs/libpng12_la-pngtrans.o
124
- mv -f .deps/libpng12_la-pngtrans.Tpo .deps/libpng12_la-pngtrans.Plo
125
- /bin/sh ./libtool --tag=CC --mode=compile gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -DPNG_CONFIGURE_LIBPNG -I /devel/dist/win32/zlib-1.2.3/include -O2 -MT libpng12_la-pngwutil.lo -MD -MP -MF .deps/libpng12_la-pngwutil.Tpo -c -o libpng12_la-pngwutil.lo `test -f 'pngwutil.c' || echo './'`pngwutil.c
126
- libtool: compile: gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -DPNG_CONFIGURE_LIBPNG -I /devel/dist/win32/zlib-1.2.3/include -O2 -MT libpng12_la-pngwutil.lo -MD -MP -MF .deps/libpng12_la-pngwutil.Tpo -c pngwutil.c -DDLL_EXPORT -DPIC -o .libs/libpng12_la-pngwutil.o
127
- mv -f .deps/libpng12_la-pngwutil.Tpo .deps/libpng12_la-pngwutil.Plo
128
- /bin/sh ./libtool --tag=CC --mode=compile gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -DPNG_CONFIGURE_LIBPNG -I /devel/dist/win32/zlib-1.2.3/include -O2 -MT libpng12_la-pngread.lo -MD -MP -MF .deps/libpng12_la-pngread.Tpo -c -o libpng12_la-pngread.lo `test -f 'pngread.c' || echo './'`pngread.c
129
- libtool: compile: gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -DPNG_CONFIGURE_LIBPNG -I /devel/dist/win32/zlib-1.2.3/include -O2 -MT libpng12_la-pngread.lo -MD -MP -MF .deps/libpng12_la-pngread.Tpo -c pngread.c -DDLL_EXPORT -DPIC -o .libs/libpng12_la-pngread.o
130
- mv -f .deps/libpng12_la-pngread.Tpo .deps/libpng12_la-pngread.Plo
131
- /bin/sh ./libtool --tag=CC --mode=compile gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -DPNG_CONFIGURE_LIBPNG -I /devel/dist/win32/zlib-1.2.3/include -O2 -MT libpng12_la-pngrio.lo -MD -MP -MF .deps/libpng12_la-pngrio.Tpo -c -o libpng12_la-pngrio.lo `test -f 'pngrio.c' || echo './'`pngrio.c
132
- libtool: compile: gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -DPNG_CONFIGURE_LIBPNG -I /devel/dist/win32/zlib-1.2.3/include -O2 -MT libpng12_la-pngrio.lo -MD -MP -MF .deps/libpng12_la-pngrio.Tpo -c pngrio.c -DDLL_EXPORT -DPIC -o .libs/libpng12_la-pngrio.o
133
- mv -f .deps/libpng12_la-pngrio.Tpo .deps/libpng12_la-pngrio.Plo
134
- /bin/sh ./libtool --tag=CC --mode=compile gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -DPNG_CONFIGURE_LIBPNG -I /devel/dist/win32/zlib-1.2.3/include -O2 -MT libpng12_la-pngwio.lo -MD -MP -MF .deps/libpng12_la-pngwio.Tpo -c -o libpng12_la-pngwio.lo `test -f 'pngwio.c' || echo './'`pngwio.c
135
- libtool: compile: gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -DPNG_CONFIGURE_LIBPNG -I /devel/dist/win32/zlib-1.2.3/include -O2 -MT libpng12_la-pngwio.lo -MD -MP -MF .deps/libpng12_la-pngwio.Tpo -c pngwio.c -DDLL_EXPORT -DPIC -o .libs/libpng12_la-pngwio.o
136
- mv -f .deps/libpng12_la-pngwio.Tpo .deps/libpng12_la-pngwio.Plo
137
- /bin/sh ./libtool --tag=CC --mode=compile gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -DPNG_CONFIGURE_LIBPNG -I /devel/dist/win32/zlib-1.2.3/include -O2 -MT libpng12_la-pngwrite.lo -MD -MP -MF .deps/libpng12_la-pngwrite.Tpo -c -o libpng12_la-pngwrite.lo `test -f 'pngwrite.c' || echo './'`pngwrite.c
138
- libtool: compile: gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -DPNG_CONFIGURE_LIBPNG -I /devel/dist/win32/zlib-1.2.3/include -O2 -MT libpng12_la-pngwrite.lo -MD -MP -MF .deps/libpng12_la-pngwrite.Tpo -c pngwrite.c -DDLL_EXPORT -DPIC -o .libs/libpng12_la-pngwrite.o
139
- mv -f .deps/libpng12_la-pngwrite.Tpo .deps/libpng12_la-pngwrite.Plo
140
- /bin/sh ./libtool --tag=CC --mode=compile gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -DPNG_CONFIGURE_LIBPNG -I /devel/dist/win32/zlib-1.2.3/include -O2 -MT libpng12_la-pngrtran.lo -MD -MP -MF .deps/libpng12_la-pngrtran.Tpo -c -o libpng12_la-pngrtran.lo `test -f 'pngrtran.c' || echo './'`pngrtran.c
141
- libtool: compile: gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -DPNG_CONFIGURE_LIBPNG -I /devel/dist/win32/zlib-1.2.3/include -O2 -MT libpng12_la-pngrtran.lo -MD -MP -MF .deps/libpng12_la-pngrtran.Tpo -c pngrtran.c -DDLL_EXPORT -DPIC -o .libs/libpng12_la-pngrtran.o
142
- mv -f .deps/libpng12_la-pngrtran.Tpo .deps/libpng12_la-pngrtran.Plo
143
- /bin/sh ./libtool --tag=CC --mode=compile gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -DPNG_CONFIGURE_LIBPNG -I /devel/dist/win32/zlib-1.2.3/include -O2 -MT libpng12_la-pngwtran.lo -MD -MP -MF .deps/libpng12_la-pngwtran.Tpo -c -o libpng12_la-pngwtran.lo `test -f 'pngwtran.c' || echo './'`pngwtran.c
144
- libtool: compile: gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -DPNG_CONFIGURE_LIBPNG -I /devel/dist/win32/zlib-1.2.3/include -O2 -MT libpng12_la-pngwtran.lo -MD -MP -MF .deps/libpng12_la-pngwtran.Tpo -c pngwtran.c -DDLL_EXPORT -DPIC -o .libs/libpng12_la-pngwtran.o
145
- mv -f .deps/libpng12_la-pngwtran.Tpo .deps/libpng12_la-pngwtran.Plo
146
- /bin/sh ./libtool --tag=CC --mode=compile gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -DPNG_CONFIGURE_LIBPNG -I /devel/dist/win32/zlib-1.2.3/include -O2 -MT libpng12_la-pngmem.lo -MD -MP -MF .deps/libpng12_la-pngmem.Tpo -c -o libpng12_la-pngmem.lo `test -f 'pngmem.c' || echo './'`pngmem.c
147
- libtool: compile: gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -DPNG_CONFIGURE_LIBPNG -I /devel/dist/win32/zlib-1.2.3/include -O2 -MT libpng12_la-pngmem.lo -MD -MP -MF .deps/libpng12_la-pngmem.Tpo -c pngmem.c -DDLL_EXPORT -DPIC -o .libs/libpng12_la-pngmem.o
148
- mv -f .deps/libpng12_la-pngmem.Tpo .deps/libpng12_la-pngmem.Plo
149
- /bin/sh ./libtool --tag=CC --mode=compile gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -DPNG_CONFIGURE_LIBPNG -I /devel/dist/win32/zlib-1.2.3/include -O2 -MT libpng12_la-pngerror.lo -MD -MP -MF .deps/libpng12_la-pngerror.Tpo -c -o libpng12_la-pngerror.lo `test -f 'pngerror.c' || echo './'`pngerror.c
150
- libtool: compile: gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -DPNG_CONFIGURE_LIBPNG -I /devel/dist/win32/zlib-1.2.3/include -O2 -MT libpng12_la-pngerror.lo -MD -MP -MF .deps/libpng12_la-pngerror.Tpo -c pngerror.c -DDLL_EXPORT -DPIC -o .libs/libpng12_la-pngerror.o
151
- mv -f .deps/libpng12_la-pngerror.Tpo .deps/libpng12_la-pngerror.Plo
152
- /bin/sh ./libtool --tag=CC --mode=compile gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -DPNG_CONFIGURE_LIBPNG -I /devel/dist/win32/zlib-1.2.3/include -O2 -MT libpng12_la-pngpread.lo -MD -MP -MF .deps/libpng12_la-pngpread.Tpo -c -o libpng12_la-pngpread.lo `test -f 'pngpread.c' || echo './'`pngpread.c
153
- libtool: compile: gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -DPNG_CONFIGURE_LIBPNG -I /devel/dist/win32/zlib-1.2.3/include -O2 -MT libpng12_la-pngpread.lo -MD -MP -MF .deps/libpng12_la-pngpread.Tpo -c pngpread.c -DDLL_EXPORT -DPIC -o .libs/libpng12_la-pngpread.o
154
- mv -f .deps/libpng12_la-pngpread.Tpo .deps/libpng12_la-pngpread.Plo
155
- rm -f libpng.sym libpng.sym.new
156
- gcc -mtune=pentium3 -mthreads -mms-bitfields -E -DPNG_CONFIGURE_LIBPNG -I /devel/dist/win32/zlib-1.2.3/include -DPNG_BUILDSYMS ./png.h | \
157
- /bin/sed -n -e \
158
- 's|^.*PNG_FUNCTION_EXPORT[ ]*\(['_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789']*\).*$|_\1|p' \
159
- -e 's|^.*PNG_DATA_EXPORT[ ]*\(['_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789']*\).*$|_\1|p' \
160
- >libpng.sym.new
161
- mv libpng.sym.new libpng.sym
162
- rm -f libpng.vers libpng.vers.new
163
- echo PNG12_0 '{global:' > libpng.vers.new
164
- /bin/sed s/$/\;/ libpng.sym >> libpng.vers.new
165
- echo 'local: *; };' >> libpng.vers.new
166
- mv libpng.vers.new libpng.vers
167
- /bin/sh ./libtool --tag=CC --mode=link gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -no-undefined -export-dynamic -version-number 0:40:0 -Wl,--version-script=libpng.vers -L/devel/dist/win32/zlib-1.2.3/lib -Wl,--enable-auto-image-base -o libpng12.la -rpath c:/devel/target/9f6c8856d9e51e49da72aebd6595caa0/lib libpng12_la-png.lo libpng12_la-pngset.lo libpng12_la-pngget.lo libpng12_la-pngrutil.lo libpng12_la-pngtrans.lo libpng12_la-pngwutil.lo libpng12_la-pngread.lo libpng12_la-pngrio.lo libpng12_la-pngwio.lo libpng12_la-pngwrite.lo libpng12_la-pngrtran.lo libpng12_la-pngwtran.lo libpng12_la-pngmem.lo libpng12_la-pngerror.lo libpng12_la-pngpread.lo -lz
168
- libtool: link: gcc -mtune=pentium3 -mthreads -mms-bitfields -shared .libs/libpng12_la-png.o .libs/libpng12_la-pngset.o .libs/libpng12_la-pngget.o .libs/libpng12_la-pngrutil.o .libs/libpng12_la-pngtrans.o .libs/libpng12_la-pngwutil.o .libs/libpng12_la-pngread.o .libs/libpng12_la-pngrio.o .libs/libpng12_la-pngwio.o .libs/libpng12_la-pngwrite.o .libs/libpng12_la-pngrtran.o .libs/libpng12_la-pngwtran.o .libs/libpng12_la-pngmem.o .libs/libpng12_la-pngerror.o .libs/libpng12_la-pngpread.o -L/devel/dist/win32/zlib-1.2.3/lib -lz -mtune=pentium3 -mthreads -mms-bitfields -Wl,--version-script=libpng.vers -Wl,--enable-auto-image-base -mthreads -o .libs/libpng12-0.dll -Wl,--enable-auto-image-base -Xlinker --out-implib -Xlinker .libs/libpng12.dll.a
169
- Creating library file: .libs/libpng12.dll.a
170
- libtool: link: ( cd ".libs" && rm -f "libpng12.la" && ln -s "../libpng12.la" "libpng12.la" )
171
- cp libpng.pc libpng12.pc
172
- make[1]: Entering directory `/devel/src/libpng/1.2.40-1_win32'
173
- test -z "c:/devel/target/9f6c8856d9e51e49da72aebd6595caa0/bin" || /bin/mkdir -p "c:/devel/target/9f6c8856d9e51e49da72aebd6595caa0/bin"
174
- test -z "c:/devel/target/9f6c8856d9e51e49da72aebd6595caa0/lib" || /bin/mkdir -p "c:/devel/target/9f6c8856d9e51e49da72aebd6595caa0/lib"
175
- /bin/sh ./libtool --mode=install /opt/local/bin/install -c libpng12.la 'c:/devel/target/9f6c8856d9e51e49da72aebd6595caa0/lib'
176
- libtool: install: /opt/local/bin/install -c .libs/libpng12.dll.a c:/devel/target/9f6c8856d9e51e49da72aebd6595caa0/lib/libpng12.dll.a
177
- libtool: install: base_file=`basename libpng12.la`
178
- libtool: install: dlpath=`/bin/sh 2>&1 -c '. .libs/'libpng12.la'i; echo libpng12-0.dll'`
179
- libtool: install: dldir=c:/devel/target/9f6c8856d9e51e49da72aebd6595caa0/lib/`dirname ../bin/libpng12-0.dll`
180
- libtool: install: test -d c:/devel/target/9f6c8856d9e51e49da72aebd6595caa0/lib/../bin || mkdir -p c:/devel/target/9f6c8856d9e51e49da72aebd6595caa0/lib/../bin
181
- libtool: install: /opt/local/bin/install -c .libs/libpng12-0.dll c:/devel/target/9f6c8856d9e51e49da72aebd6595caa0/lib/../bin/libpng12-0.dll
182
- libtool: install: chmod a+x c:/devel/target/9f6c8856d9e51e49da72aebd6595caa0/lib/../bin/libpng12-0.dll
183
- libtool: install: if test -n '' && test -n 'strip --strip-unneeded'; then eval 'strip --strip-unneeded c:/devel/target/9f6c8856d9e51e49da72aebd6595caa0/lib/../bin/libpng12-0.dll' || exit 0; fi
184
- libtool: install: /opt/local/bin/install -c .libs/libpng12.lai c:/devel/target/9f6c8856d9e51e49da72aebd6595caa0/lib/libpng12.la
185
- ----------------------------------------------------------------------
186
- Libraries have been installed in:
187
- c:/devel/target/9f6c8856d9e51e49da72aebd6595caa0/lib
188
-
189
- If you ever happen to want to link against installed libraries
190
- in a given directory, LIBDIR, you must either use libtool, and
191
- specify the full pathname of the library, or use the `-LLIBDIR'
192
- flag during linking and do at least one of the following:
193
- - add LIBDIR to the `PATH' environment variable
194
- during execution
195
- - add LIBDIR to the `LD_RUN_PATH' environment variable
196
- during linking
197
- - use the `-LLIBDIR' linker flag
198
-
199
- See any operating system documentation about shared libraries for
200
- more information, such as the ld(1) and ld.so(8) manual pages.
201
- ----------------------------------------------------------------------
202
- make install-exec-hook
203
- make[2]: Entering directory `/devel/src/libpng/1.2.40-1_win32'
204
- cd c:/devel/target/9f6c8856d9e51e49da72aebd6595caa0/bin; rm -f libpng-config
205
- cd c:/devel/target/9f6c8856d9e51e49da72aebd6595caa0/bin; ln -s libpng12-config libpng-config
206
- ln: creating symbolic link `libpng-config' to `libpng12-config': No such file or directory
207
- make[2]: [install-exec-hook] Error 1 (ignored)
208
- + cd c:/devel/target/9f6c8856d9e51e49da72aebd6595caa0/lib
209
- + for ext in a la so sl dylib
210
- + rm -f libpng.a
211
- + test -f libpng12.a
212
- + for ext in a la so sl dylib
213
- + rm -f libpng.la
214
- + test -f libpng12.la
215
- + ln -s libpng12.la libpng.la
216
- + for ext in a la so sl dylib
217
- + rm -f libpng.so
218
- + test -f libpng12.so
219
- + for ext in a la so sl dylib
220
- + rm -f libpng.sl
221
- + test -f libpng12.sl
222
- + for ext in a la so sl dylib
223
- + rm -f libpng.dylib
224
- + test -f libpng12.dylib
225
- make[2]: Leaving directory `/devel/src/libpng/1.2.40-1_win32'
226
- test -z "c:/devel/target/9f6c8856d9e51e49da72aebd6595caa0/share/man/man3" || /bin/mkdir -p "c:/devel/target/9f6c8856d9e51e49da72aebd6595caa0/share/man/man3"
227
- /opt/local/bin/install -c -m 644 libpng.3 libpngpf.3 'c:/devel/target/9f6c8856d9e51e49da72aebd6595caa0/share/man/man3'
228
- test -z "c:/devel/target/9f6c8856d9e51e49da72aebd6595caa0/share/man/man5" || /bin/mkdir -p "c:/devel/target/9f6c8856d9e51e49da72aebd6595caa0/share/man/man5"
229
- /opt/local/bin/install -c -m 644 png.5 'c:/devel/target/9f6c8856d9e51e49da72aebd6595caa0/share/man/man5'
230
- test -z "c:/devel/target/9f6c8856d9e51e49da72aebd6595caa0/lib/pkgconfig" || /bin/mkdir -p "c:/devel/target/9f6c8856d9e51e49da72aebd6595caa0/lib/pkgconfig"
231
- /opt/local/bin/install -c -m 644 libpng12.pc 'c:/devel/target/9f6c8856d9e51e49da72aebd6595caa0/lib/pkgconfig'
232
- test -z "c:/devel/target/9f6c8856d9e51e49da72aebd6595caa0/include/libpng12" || /bin/mkdir -p "c:/devel/target/9f6c8856d9e51e49da72aebd6595caa0/include/libpng12"
233
- /opt/local/bin/install -c -m 644 png.h pngconf.h 'c:/devel/target/9f6c8856d9e51e49da72aebd6595caa0/include/libpng12'
234
- make install-data-hook
235
- make[2]: Entering directory `/devel/src/libpng/1.2.40-1_win32'
236
- cd c:/devel/target/9f6c8856d9e51e49da72aebd6595caa0/include; rm -f png.h pngconf.h
237
- cd c:/devel/target/9f6c8856d9e51e49da72aebd6595caa0/include; ln -s libpng12/png.h png.h
238
- cd c:/devel/target/9f6c8856d9e51e49da72aebd6595caa0/include; ln -s libpng12/pngconf.h pngconf.h
239
- cd c:/devel/target/9f6c8856d9e51e49da72aebd6595caa0/lib/pkgconfig; rm -f libpng.pc
240
- cd c:/devel/target/9f6c8856d9e51e49da72aebd6595caa0/lib/pkgconfig; ln -s libpng12.pc libpng.pc
241
- make[2]: Leaving directory `/devel/src/libpng/1.2.40-1_win32'
242
- make[1]: Leaving directory `/devel/src/libpng/1.2.40-1_win32'
243
- ++ rm -f /tmp/libpng_1.2.40-1_win32.zip /tmp/libpng-dev_1.2.40-1_win32.zip
244
- ++ cd /devel/target/9f6c8856d9e51e49da72aebd6595caa0
245
- ++ zip /tmp/libpng_1.2.40-1_win32.zip bin/libpng12-0.dll
246
- adding: bin/libpng12-0.dll (224 bytes security) (deflated 54%)
247
- ++ zip -r -D /tmp/libpng-dev_1.2.40-1_win32.zip include
248
- adding: include/libpng12/png.h (224 bytes security) (deflated 78%)
249
- adding: include/libpng12/pngconf.h (224 bytes security) (deflated 73%)
250
- adding: include/png.h (224 bytes security) (deflated 78%)
251
- adding: include/pngconf.h (224 bytes security) (deflated 73%)
252
- ++ zip /tmp/libpng-dev_1.2.40-1_win32.zip lib/libpng12.dll.a
253
- adding: lib/libpng12.dll.a (224 bytes security) (deflated 93%)
254
- ++ pexports bin/libpng12-0.dll
255
- ++ lib -machine:X86 -def:lib/libpng.def -name:libpng12-0.dll -out:lib/libpng.lib
256
- Microsoft (R) Library Manager Version 6.00.8447
257
- Copyright (C) Microsoft Corp 1992-1998. All rights reserved.
258
-
259
- Creating library lib/libpng.lib and object lib/libpng.exp
260
- ++ zip /tmp/libpng-dev_1.2.40-1_win32.zip lib/libpng.def lib/libpng.lib
261
- adding: lib/libpng.def (224 bytes security) (deflated 74%)
262
- adding: lib/libpng.lib (224 bytes security) (deflated 86%)
263
- ++ zip /tmp/libpng-dev_1.2.40-1_win32.zip lib/pkgconfig/libpng.pc lib/pkgconfig/libpng12.pc
264
- adding: lib/pkgconfig/libpng.pc (224 bytes security) (deflated 29%)
265
- adding: lib/pkgconfig/libpng12.pc (224 bytes security) (deflated 29%)
266
- ++ zip -r -D /tmp/libpng-dev_1.2.40-1_win32.zip share/man
267
- adding: share/man/man3/libpng.3 (224 bytes security) (deflated 72%)
268
- adding: share/man/man3/libpngpf.3 (224 bytes security) (deflated 88%)
269
- adding: share/man/man5/png.5 (224 bytes security) (deflated 53%)