cairo 1.7.0 → 1.8.0

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.

@@ -3,7 +3,7 @@
3
3
  * Ruby Cairo Binding
4
4
  *
5
5
  * $Author: kou $
6
- * $Date: 2008-08-17 06:11:51 $
6
+ * $Date: 2008-09-26 14:13:58 $
7
7
  *
8
8
  * Copyright 2005 Øyvind Kolås <pippin@freedesktop.org>
9
9
  * Copyright 2004-2005 MenTaLguY <mental@rydia.com>
@@ -21,7 +21,7 @@ VALUE rb_cCairo_ToyFontFace = Qnil;
21
21
  VALUE rb_cCairo_UserFontFace = Qnil;
22
22
  VALUE rb_cCairo_UserFontFace_TextToGlyphsData = Qnil;
23
23
 
24
- #if CAIRO_CHECK_VERSION(1, 7, 2)
24
+ #if CAIRO_CHECK_VERSION(1, 7, 6)
25
25
  static cairo_user_data_key_t ruby_object_key;
26
26
  static ID cr_id_call;
27
27
  static ID cr_id_new;
@@ -33,10 +33,10 @@ static ID cr_id_unicode_to_glyph;
33
33
 
34
34
  static ID cr_id_at_glyphs;
35
35
  static ID cr_id_at_clusters;
36
- static ID cr_id_at_backward;
36
+ static ID cr_id_at_cluster_flags;
37
37
  static ID cr_id_at_need_glyphs;
38
38
  static ID cr_id_at_need_clusters;
39
- static ID cr_id_at_need_backward;
39
+ static ID cr_id_at_need_cluster_flags;
40
40
  #endif
41
41
 
42
42
  #define _SELF (RVAL2CRFONTFACE(self))
@@ -84,7 +84,7 @@ rb_cairo_font_face_to_ruby_object (cairo_font_face_t *face)
84
84
 
85
85
  switch (cairo_font_face_get_type (face))
86
86
  {
87
- #if CAIRO_CHECK_VERSION(1, 7, 2)
87
+ #if CAIRO_CHECK_VERSION(1, 7, 6)
88
88
  case CAIRO_FONT_TYPE_TOY:
89
89
  klass = rb_cCairo_ToyFontFace;
90
90
  break;
@@ -111,7 +111,7 @@ cr_font_face_allocate (VALUE klass)
111
111
  return Data_Wrap_Struct (klass, NULL, cr_font_face_free, NULL);
112
112
  }
113
113
 
114
- #if CAIRO_CHECK_VERSION(1, 7, 2)
114
+ #if CAIRO_CHECK_VERSION(1, 7, 6)
115
115
  static VALUE
116
116
  cr_toy_font_face_initialize (int argc, VALUE *argv, VALUE self)
117
117
  {
@@ -346,7 +346,7 @@ typedef struct _cr_text_to_glyphs_after_hook_data {
346
346
  int *num_glyphs;
347
347
  cairo_text_cluster_t **clusters;
348
348
  int *num_clusters;
349
- cairo_bool_t *backward;
349
+ cairo_text_cluster_flags_t *cluster_flags;
350
350
  } cr_text_to_glyphs_after_hook_data_t;
351
351
 
352
352
  static VALUE
@@ -381,12 +381,14 @@ cr_user_font_face_text_to_glyphs_func_after (VALUE user_data)
381
381
  after_hook_data->num_clusters);
382
382
  }
383
383
 
384
- if (after_hook_data->backward)
384
+ if (after_hook_data->cluster_flags)
385
385
  {
386
- VALUE rb_backward;
386
+ VALUE rb_cluster_flags;
387
387
 
388
- rb_backward = rb_ivar_get (text_to_glyphs_data, cr_id_at_backward);
389
- *(after_hook_data->backward) = RVAL2CBOOL (rb_backward);
388
+ rb_cluster_flags = rb_ivar_get (text_to_glyphs_data,
389
+ cr_id_at_cluster_flags);
390
+ *(after_hook_data->cluster_flags) =
391
+ RVAL2CRTEXTCLUSTERFLAGS (rb_cluster_flags);
390
392
  }
391
393
 
392
394
  return data->result;
@@ -398,7 +400,7 @@ cr_user_font_face_text_to_glyphs_func (cairo_scaled_font_t *scaled_font,
398
400
  cairo_glyph_t **glyphs, int *num_glyphs,
399
401
  cairo_text_cluster_t **clusters,
400
402
  int *num_clusters,
401
- cairo_bool_t *backward)
403
+ cairo_text_cluster_flags_t *cluster_flags)
402
404
  {
403
405
  cairo_status_t status = CAIRO_INT_STATUS_UNSUPPORTED;
404
406
  cairo_font_face_t *face;
@@ -434,7 +436,7 @@ cr_user_font_face_text_to_glyphs_func (cairo_scaled_font_t *scaled_font,
434
436
  3,
435
437
  CBOOL2RVAL (glyphs != NULL),
436
438
  CBOOL2RVAL (clusters != NULL),
437
- CBOOL2RVAL (backward != NULL));
439
+ CBOOL2RVAL (cluster_flags != NULL));
438
440
  argv[2] = text_to_glyphs_data;
439
441
 
440
442
  data.receiver = receiver;
@@ -450,7 +452,7 @@ cr_user_font_face_text_to_glyphs_func (cairo_scaled_font_t *scaled_font,
450
452
  after_hook_data.num_glyphs = num_glyphs;
451
453
  after_hook_data.clusters = clusters;
452
454
  after_hook_data.num_clusters = num_clusters;
453
- after_hook_data.backward = backward;
455
+ after_hook_data.cluster_flags = cluster_flags;
454
456
 
455
457
  rb_cairo__invoke_callback (cr_user_font_face_invoke_func, (VALUE)&data);
456
458
  }
@@ -581,22 +583,30 @@ cr_user_font_face_on_unicode_to_glyph (VALUE self)
581
583
  static VALUE
582
584
  cr_text_to_glyphs_data_initialize (VALUE self,
583
585
  VALUE need_glyphs, VALUE need_clusters,
584
- VALUE need_backward)
586
+ VALUE need_cluster_flags)
585
587
  {
586
588
  rb_ivar_set (self, cr_id_at_glyphs, Qnil);
587
589
  rb_ivar_set (self, cr_id_at_clusters, Qnil);
588
- rb_ivar_set (self, cr_id_at_backward, Qfalse);
590
+ rb_ivar_set (self, cr_id_at_cluster_flags, INT2NUM (0));
589
591
  rb_ivar_set (self, cr_id_at_need_glyphs, need_glyphs);
590
592
  rb_ivar_set (self, cr_id_at_need_clusters, need_clusters);
591
- rb_ivar_set (self, cr_id_at_need_backward, need_backward);
593
+ rb_ivar_set (self, cr_id_at_need_cluster_flags, need_cluster_flags);
592
594
 
593
595
  return Qnil;
594
596
  }
595
597
 
596
598
  static VALUE
597
- cr_text_to_glyphs_data_backward_p (VALUE self)
599
+ cr_text_to_glyphs_data_get_cluster_flags (VALUE self)
598
600
  {
599
- return rb_ivar_get (self, cr_id_at_backward);
601
+ return rb_ivar_get (self, cr_id_at_cluster_flags);
602
+ }
603
+
604
+ static VALUE
605
+ cr_text_to_glyphs_data_set_cluster_flags (VALUE self, VALUE cluster_flags)
606
+ {
607
+ rb_ivar_set (self, cr_id_at_cluster_flags,
608
+ INT2NUM (RVAL2CRTEXTCLUSTERFLAGS (cluster_flags)));
609
+ return Qnil;
600
610
  }
601
611
 
602
612
  static VALUE
@@ -612,16 +622,16 @@ cr_text_to_glyphs_data_need_clusters (VALUE self)
612
622
  }
613
623
 
614
624
  static VALUE
615
- cr_text_to_glyphs_data_need_backward (VALUE self)
625
+ cr_text_to_glyphs_data_need_cluster_flags (VALUE self)
616
626
  {
617
- return rb_ivar_get (self, cr_id_at_need_backward);
627
+ return rb_ivar_get (self, cr_id_at_need_cluster_flags);
618
628
  }
619
629
  #endif
620
630
 
621
631
  void
622
632
  Init_cairo_font (void)
623
633
  {
624
- #if CAIRO_CHECK_VERSION(1, 7, 2)
634
+ #if CAIRO_CHECK_VERSION(1, 7, 6)
625
635
  cr_id_call = rb_intern ("call");
626
636
  cr_id_new = rb_intern ("new");
627
637
 
@@ -632,17 +642,17 @@ Init_cairo_font (void)
632
642
 
633
643
  cr_id_at_glyphs = rb_intern ("@glyphs");
634
644
  cr_id_at_clusters = rb_intern ("@clusters");
635
- cr_id_at_backward = rb_intern ("@backward");
645
+ cr_id_at_cluster_flags = rb_intern ("@cluster_flags");
636
646
  cr_id_at_need_glyphs = rb_intern ("@need_glyphs");
637
647
  cr_id_at_need_clusters = rb_intern ("@need_clusters");
638
- cr_id_at_need_backward = rb_intern ("@need_backward");
648
+ cr_id_at_need_cluster_flags = rb_intern ("@need_cluster_flags");
639
649
  #endif
640
650
 
641
651
  rb_cCairo_FontFace =
642
652
  rb_define_class_under (rb_mCairo, "FontFace", rb_cObject);
643
653
  rb_define_alloc_func (rb_cCairo_FontFace, cr_font_face_allocate);
644
654
 
645
- #if CAIRO_CHECK_VERSION(1, 7, 2)
655
+ #if CAIRO_CHECK_VERSION(1, 7, 6)
646
656
  rb_cCairo_ToyFontFace =
647
657
  rb_define_class_under (rb_mCairo, "ToyFontFace", rb_cCairo_FontFace);
648
658
 
@@ -680,19 +690,24 @@ Init_cairo_font (void)
680
690
  CR_TRUE, CR_TRUE, CR_TRUE);
681
691
  rb_attr (rb_cCairo_UserFontFace_TextToGlyphsData, rb_intern ("clusters"),
682
692
  CR_TRUE, CR_TRUE, CR_TRUE);
683
- rb_attr (rb_cCairo_UserFontFace_TextToGlyphsData, rb_intern ("backward"),
684
- CR_FALSE, CR_TRUE, CR_TRUE);
685
693
 
686
694
  rb_define_method (rb_cCairo_UserFontFace_TextToGlyphsData,
687
695
  "initialize", cr_text_to_glyphs_data_initialize, 3);
688
696
 
689
697
  rb_define_method (rb_cCairo_UserFontFace_TextToGlyphsData,
690
- "backward?", cr_text_to_glyphs_data_backward_p, 0);
698
+ "cluster_flags",
699
+ cr_text_to_glyphs_data_get_cluster_flags, 0);
700
+ rb_define_method (rb_cCairo_UserFontFace_TextToGlyphsData,
701
+ "cluster_flags=",
702
+ cr_text_to_glyphs_data_set_cluster_flags, 1);
691
703
  rb_define_method (rb_cCairo_UserFontFace_TextToGlyphsData,
692
704
  "need_glyphs?", cr_text_to_glyphs_data_need_glyphs, 0);
693
705
  rb_define_method (rb_cCairo_UserFontFace_TextToGlyphsData,
694
706
  "need_clusters?", cr_text_to_glyphs_data_need_clusters, 0);
695
707
  rb_define_method (rb_cCairo_UserFontFace_TextToGlyphsData,
696
- "need_backward?", cr_text_to_glyphs_data_need_backward, 0);
708
+ "need_cluster_flags?",
709
+ cr_text_to_glyphs_data_need_cluster_flags, 0);
710
+
711
+ RB_CAIRO_DEF_SETTERS (rb_cCairo_UserFontFace_TextToGlyphsData);
697
712
  #endif
698
713
  }
@@ -3,7 +3,7 @@
3
3
  * Ruby Cairo Binding
4
4
  *
5
5
  * $Author: kou $
6
- * $Date: 2008-08-17 07:21:42 $
6
+ * $Date: 2008-09-19 12:56:27 $
7
7
  *
8
8
  * Copyright 2005-2008 Kouhei Sutou <kou@cozmixng.org>
9
9
  *
@@ -160,22 +160,6 @@ cr_options_get_hint_metrics (VALUE self)
160
160
  return INT2NUM (cairo_font_options_get_hint_metrics (_SELF (self)));
161
161
  }
162
162
 
163
- #if CAIRO_CHECK_VERSION(1, 7, 2)
164
- static VALUE
165
- cr_options_set_lcd_filter (VALUE self, VALUE lcd_filter)
166
- {
167
- cairo_font_options_set_lcd_filter (_SELF (self),
168
- RVAL2CRLCDFILTER (lcd_filter));
169
- return self;
170
- }
171
-
172
- static VALUE
173
- cr_options_get_lcd_filter (VALUE self)
174
- {
175
- return INT2NUM (cairo_font_options_get_lcd_filter (_SELF (self)));
176
- }
177
- #endif
178
-
179
163
 
180
164
  void
181
165
  Init_cairo_font_options (void)
@@ -208,12 +192,6 @@ Init_cairo_font_options (void)
208
192
  cr_options_set_hint_metrics, 1);
209
193
  rb_define_method (rb_cCairo_FontOptions, "hint_metrics",
210
194
  cr_options_get_hint_metrics, 0);
211
- #if CAIRO_CHECK_VERSION(1, 7, 2)
212
- rb_define_method (rb_cCairo_FontOptions, "set_lcd_filter",
213
- cr_options_set_lcd_filter, 1);
214
- rb_define_method (rb_cCairo_FontOptions, "lcd_filter",
215
- cr_options_get_lcd_filter, 0);
216
- #endif
217
195
 
218
196
  RB_CAIRO_DEF_SETTERS (rb_cCairo_FontOptions);
219
197
  }
@@ -3,7 +3,7 @@
3
3
  * Ruby Cairo Binding
4
4
  *
5
5
  * $Author: kou $
6
- * $Date: 2008-08-16 08:34:19 $
6
+ * $Date: 2008-09-19 12:56:27 $
7
7
  *
8
8
  * Copyright 2005-2008 Kouhei Sutou <kou@cozmixng.org>
9
9
  *
@@ -114,7 +114,7 @@ cr_scaled_font_glyph_extents (VALUE self, VALUE rb_glyphs)
114
114
  return CRTEXTEXTENTS2RVAL (&extents);
115
115
  }
116
116
 
117
- #if CAIRO_CHECK_VERSION(1, 7, 2)
117
+ #if CAIRO_CHECK_VERSION(1, 7, 6)
118
118
  static VALUE
119
119
  cr_scaled_font_text_to_glyphs (VALUE self, VALUE rb_x, VALUE rb_y, VALUE rb_utf8)
120
120
  {
@@ -125,7 +125,7 @@ cr_scaled_font_text_to_glyphs (VALUE self, VALUE rb_x, VALUE rb_y, VALUE rb_utf8
125
125
  int num_glyphs;
126
126
  cairo_text_cluster_t *clusters = NULL;
127
127
  int num_clusters;
128
- cairo_bool_t backward;
128
+ cairo_text_cluster_flags_t cluster_flags;
129
129
  cairo_status_t status;
130
130
  VALUE rb_glyphs, rb_clusters;
131
131
 
@@ -138,7 +138,7 @@ cr_scaled_font_text_to_glyphs (VALUE self, VALUE rb_x, VALUE rb_y, VALUE rb_utf8
138
138
  x, y, utf8, utf8_len,
139
139
  &glyphs, &num_glyphs,
140
140
  &clusters, &num_clusters,
141
- &backward);
141
+ &cluster_flags);
142
142
  rb_cairo_check_status (status);
143
143
 
144
144
  rb_glyphs = rb_cairo__glyphs_to_ruby_object (glyphs, num_glyphs);
@@ -146,7 +146,7 @@ cr_scaled_font_text_to_glyphs (VALUE self, VALUE rb_x, VALUE rb_y, VALUE rb_utf8
146
146
  rb_clusters = rb_cairo__text_clusters_to_ruby_object (clusters, num_clusters);
147
147
  cairo_text_cluster_free (clusters);
148
148
 
149
- return rb_ary_new3 (3, rb_glyphs, rb_clusters, CBOOL2RVAL (backward));
149
+ return rb_ary_new3 (3, rb_glyphs, rb_clusters, INT2NUM (cluster_flags));
150
150
  }
151
151
  #endif
152
152
 
@@ -0,0 +1,269 @@
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
+ ++ CC='gcc -mtune=pentium3 -mthreads -mms-bitfields'
6
+ ++ CPPFLAGS='-I /devel/dist/win32/zlib-1.2.3/include'
7
+ ++ LDFLAGS='-L/devel/dist/win32/zlib-1.2.3/lib -Wl,--enable-auto-image-base'
8
+ ++ CFLAGS=-O2
9
+ ++ ./configure --disable-static --without-libpng-compat --without-binconfigs --prefix=c:/devel/target/4c814631e37619e836612142f0b035ce
10
+ checking for a BSD-compatible install... /opt/local/bin/install -c
11
+ checking whether build environment is sane... yes
12
+ checking for a thread-safe mkdir -p... /bin/mkdir -p
13
+ checking for gawk... gawk
14
+ checking whether make sets $(MAKE)... yes
15
+ checking whether to enable maintainer-specific portions of Makefiles... no
16
+ checking for gcc... gcc -mtune=pentium3 -mthreads -mms-bitfields
17
+ checking for C compiler default output file name... a.exe
18
+ checking whether the C compiler works... yes
19
+ checking whether we are cross compiling... no
20
+ checking for suffix of executables... .exe
21
+ checking for suffix of object files... o
22
+ checking whether we are using the GNU C compiler... yes
23
+ checking whether gcc -mtune=pentium3 -mthreads -mms-bitfields accepts -g... yes
24
+ checking for gcc -mtune=pentium3 -mthreads -mms-bitfields option to accept ISO C89... none needed
25
+ checking for style of include used by make... GNU
26
+ checking dependency style of gcc -mtune=pentium3 -mthreads -mms-bitfields... gcc3
27
+ checking build system type... i686-pc-mingw32
28
+ checking host system type... i686-pc-mingw32
29
+ checking for a sed that does not truncate output... /bin/sed
30
+ checking for grep that handles long lines and -e... /opt/gnuwin32/bin/grep
31
+ checking for egrep... /opt/gnuwin32/bin/grep -E
32
+ checking for fgrep... /opt/gnuwin32/bin/grep -F
33
+ checking for ld used by gcc -mtune=pentium3 -mthreads -mms-bitfields... c:/opt/mingw/bin/../lib/gcc/mingw32/3.4.5/../../../../mingw32/bin/ld.exe
34
+ checking if the linker (c:/opt/mingw/bin/../lib/gcc/mingw32/3.4.5/../../../../mingw32/bin/ld.exe) is GNU ld... yes
35
+ checking how to run the C preprocessor... gcc -mtune=pentium3 -mthreads -mms-bitfields -E
36
+ checking for sed... /bin/sed
37
+ checking for as... as
38
+ checking for dlltool... dlltool
39
+ checking for objdump... objdump
40
+ checking for a BSD-compatible install... /opt/local/bin/install -c
41
+ checking whether ln -s works... no, using cp -p
42
+ checking whether make sets $(MAKE)... (cached) yes
43
+ checking for BSD- or MS-compatible name lister (nm)... /opt/mingw/bin/nm
44
+ checking the name lister (/opt/mingw/bin/nm) interface... BSD nm
45
+ checking the maximum length of command line arguments... 8192
46
+ checking whether the shell understands some XSI constructs... yes
47
+ checking whether the shell understands "+="... yes
48
+ checking for c:/opt/mingw/bin/../lib/gcc/mingw32/3.4.5/../../../../mingw32/bin/ld.exe option to reload object files... -r
49
+ checking how to recognize dependent libraries... file_magic ^x86 archive import|^x86 DLL
50
+ checking for ar... ar
51
+ checking for strip... strip
52
+ checking for ranlib... ranlib
53
+ checking command to parse /opt/mingw/bin/nm output from gcc -mtune=pentium3 -mthreads -mms-bitfields object... ok
54
+ checking for ANSI C header files... yes
55
+ checking for sys/types.h... yes
56
+ checking for sys/stat.h... yes
57
+ checking for stdlib.h... yes
58
+ checking for string.h... yes
59
+ checking for memory.h... yes
60
+ checking for strings.h... yes
61
+ checking for inttypes.h... yes
62
+ checking for stdint.h... yes
63
+ checking for unistd.h... yes
64
+ checking for dlfcn.h... no
65
+ checking for objdir... .libs
66
+ checking if gcc -mtune=pentium3 -mthreads -mms-bitfields supports -fno-rtti -fno-exceptions... no
67
+ checking for gcc -mtune=pentium3 -mthreads -mms-bitfields option to produce PIC... -DDLL_EXPORT -DPIC
68
+ checking if gcc -mtune=pentium3 -mthreads -mms-bitfields PIC flag -DDLL_EXPORT -DPIC works... yes
69
+ checking if gcc -mtune=pentium3 -mthreads -mms-bitfields static flag -static works... yes
70
+ checking if gcc -mtune=pentium3 -mthreads -mms-bitfields supports -c -o file.o... yes
71
+ checking if gcc -mtune=pentium3 -mthreads -mms-bitfields supports -c -o file.o... (cached) yes
72
+ checking whether the gcc -mtune=pentium3 -mthreads -mms-bitfields linker (c:/opt/mingw/bin/../lib/gcc/mingw32/3.4.5/../../../../mingw32/bin/ld.exe) supports shared libraries... yes
73
+ checking whether -lc should be explicitly linked in... yes
74
+ checking dynamic linker characteristics... Win32 ld.exe
75
+ checking how to hardcode library paths into programs... immediate
76
+ checking whether stripping libraries is possible... yes
77
+ checking if libtool supports shared libraries... yes
78
+ checking whether to build shared libraries... yes
79
+ checking whether to build static libraries... no
80
+ checking for ANSI C header files... (cached) yes
81
+ checking malloc.h usability... yes
82
+ checking malloc.h presence... yes
83
+ checking for malloc.h... yes
84
+ checking for stdlib.h... (cached) yes
85
+ checking for string.h... (cached) yes
86
+ checking for strings.h... (cached) yes
87
+ checking for an ANSI C-conforming const... yes
88
+ checking for size_t... yes
89
+ checking whether struct tm is in sys/time.h or time.h... time.h
90
+ checking for working strtod... yes
91
+ checking for memset... yes
92
+ checking for pow... yes
93
+ checking for zlibVersion in -lz... yes
94
+ checking if assembler code in pnggccrd.c can be compiled without PNG_NO_MMX_CODE... yes
95
+ checking if libraries can be versioned... yes
96
+ checking for symbol prefix... _
97
+ configure: pkgconfig directory is ${libdir}/pkgconfig
98
+ configure: libpng-config scripts will not be built
99
+ configure: libpng.so will not be built
100
+ configure: creating ./config.status
101
+ config.status: creating Makefile
102
+ config.status: creating libpng.pc
103
+ config.status: creating libpng-config
104
+ config.status: creating config.h
105
+ config.status: executing depfiles commands
106
+ config.status: executing libtool commands
107
+ ++ make install
108
+ /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
109
+ 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
110
+ mv -f .deps/libpng12_la-png.Tpo .deps/libpng12_la-png.Plo
111
+ /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
112
+ 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
113
+ mv -f .deps/libpng12_la-pngset.Tpo .deps/libpng12_la-pngset.Plo
114
+ /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
115
+ 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
116
+ mv -f .deps/libpng12_la-pngget.Tpo .deps/libpng12_la-pngget.Plo
117
+ /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
118
+ 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
119
+ mv -f .deps/libpng12_la-pngrutil.Tpo .deps/libpng12_la-pngrutil.Plo
120
+ /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
121
+ 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
122
+ mv -f .deps/libpng12_la-pngtrans.Tpo .deps/libpng12_la-pngtrans.Plo
123
+ /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
124
+ 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
125
+ mv -f .deps/libpng12_la-pngwutil.Tpo .deps/libpng12_la-pngwutil.Plo
126
+ /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
127
+ 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
128
+ mv -f .deps/libpng12_la-pngread.Tpo .deps/libpng12_la-pngread.Plo
129
+ /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
130
+ 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
131
+ mv -f .deps/libpng12_la-pngrio.Tpo .deps/libpng12_la-pngrio.Plo
132
+ /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
133
+ 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
134
+ mv -f .deps/libpng12_la-pngwio.Tpo .deps/libpng12_la-pngwio.Plo
135
+ /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
136
+ 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
137
+ mv -f .deps/libpng12_la-pngwrite.Tpo .deps/libpng12_la-pngwrite.Plo
138
+ /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
139
+ 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
140
+ mv -f .deps/libpng12_la-pngrtran.Tpo .deps/libpng12_la-pngrtran.Plo
141
+ /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
142
+ 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
143
+ mv -f .deps/libpng12_la-pngwtran.Tpo .deps/libpng12_la-pngwtran.Plo
144
+ /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
145
+ 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
146
+ mv -f .deps/libpng12_la-pngmem.Tpo .deps/libpng12_la-pngmem.Plo
147
+ /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
148
+ 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
149
+ mv -f .deps/libpng12_la-pngerror.Tpo .deps/libpng12_la-pngerror.Plo
150
+ /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
151
+ 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
152
+ mv -f .deps/libpng12_la-pngpread.Tpo .deps/libpng12_la-pngpread.Plo
153
+ rm -f libpng.sym libpng.sym.new
154
+ gcc -mtune=pentium3 -mthreads -mms-bitfields -E -DPNG_CONFIGURE_LIBPNG -I /devel/dist/win32/zlib-1.2.3/include -DPNG_BUILDSYMS ./png.h | \
155
+ /bin/sed -n -e \
156
+ 's|^.*PNG_FUNCTION_EXPORT[ ]*\(['_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789']*\).*$|_\1|p' \
157
+ -e 's|^.*PNG_DATA_EXPORT[ ]*\(['_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789']*\).*$|_\1|p' \
158
+ >libpng.sym.new
159
+ mv libpng.sym.new libpng.sym
160
+ rm -f libpng.vers libpng.vers.new
161
+ echo PNG12_0 '{global:' > libpng.vers.new
162
+ /bin/sed s/$/\;/ libpng.sym >> libpng.vers.new
163
+ echo 'local: *; };' >> libpng.vers.new
164
+ mv libpng.vers.new libpng.vers
165
+ /bin/sh ./libtool --tag=CC --mode=link gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -no-undefined -export-dynamic -version-number 0:32: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/4c814631e37619e836612142f0b035ce/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
166
+ 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
167
+ Creating library file: .libs/libpng12.dll.a
168
+ libtool: link: ( cd ".libs" && rm -f "libpng12.la" && cp -p "../libpng12.la" "libpng12.la" )
169
+ cp libpng.pc libpng12.pc
170
+ make[1]: Entering directory `/devel/src/libpng/1.2.32-1_win32'
171
+ test -z "c:/devel/target/4c814631e37619e836612142f0b035ce/bin" || /bin/mkdir -p "c:/devel/target/4c814631e37619e836612142f0b035ce/bin"
172
+ test -z "c:/devel/target/4c814631e37619e836612142f0b035ce/lib" || /bin/mkdir -p "c:/devel/target/4c814631e37619e836612142f0b035ce/lib"
173
+ /bin/sh ./libtool --mode=install /opt/local/bin/install -c 'libpng12.la' 'c:/devel/target/4c814631e37619e836612142f0b035ce/lib/libpng12.la'
174
+ libtool: install: /opt/local/bin/install -c .libs/libpng12.dll.a c:/devel/target/4c814631e37619e836612142f0b035ce/lib/libpng12.dll.a
175
+ libtool: install: base_file=`basename libpng12.la`
176
+ libtool: install: dlpath=`/bin/sh 2>&1 -c '. .libs/'libpng12.la'i; echo libpng12-0.dll'`
177
+ libtool: install: dldir=c:/devel/target/4c814631e37619e836612142f0b035ce/lib/`dirname ../bin/libpng12-0.dll`
178
+ libtool: install: test -d c:/devel/target/4c814631e37619e836612142f0b035ce/lib/../bin || mkdir -p c:/devel/target/4c814631e37619e836612142f0b035ce/lib/../bin
179
+ libtool: install: /opt/local/bin/install -c .libs/libpng12-0.dll c:/devel/target/4c814631e37619e836612142f0b035ce/lib/../bin/libpng12-0.dll
180
+ libtool: install: chmod a+x c:/devel/target/4c814631e37619e836612142f0b035ce/lib/../bin/libpng12-0.dll
181
+ libtool: install: if test -n '' && test -n 'strip --strip-unneeded'; then eval 'strip --strip-unneeded c:/devel/target/4c814631e37619e836612142f0b035ce/lib/../bin/libpng12-0.dll' || exit 0; fi
182
+ libtool: install: /opt/local/bin/install -c .libs/libpng12.lai c:/devel/target/4c814631e37619e836612142f0b035ce/lib/libpng12.la
183
+ ----------------------------------------------------------------------
184
+ Libraries have been installed in:
185
+ c:/devel/target/4c814631e37619e836612142f0b035ce/lib
186
+
187
+ If you ever happen to want to link against installed libraries
188
+ in a given directory, LIBDIR, you must either use libtool, and
189
+ specify the full pathname of the library, or use the `-LLIBDIR'
190
+ flag during linking and do at least one of the following:
191
+ - add LIBDIR to the `PATH' environment variable
192
+ during execution
193
+ - add LIBDIR to the `LD_RUN_PATH' environment variable
194
+ during linking
195
+ - use the `-LLIBDIR' linker flag
196
+
197
+ See any operating system documentation about shared libraries for
198
+ more information, such as the ld(1) and ld.so(8) manual pages.
199
+ ----------------------------------------------------------------------
200
+ make install-exec-hook
201
+ make[2]: Entering directory `/devel/src/libpng/1.2.32-1_win32'
202
+ cd c:/devel/target/4c814631e37619e836612142f0b035ce/bin; rm -f libpng-config
203
+ cd c:/devel/target/4c814631e37619e836612142f0b035ce/bin; cp -p libpng12-config libpng-config
204
+ cp: cannot stat `libpng12-config': No such file or directory
205
+ make[2]: [install-exec-hook] Error 1 (ignored)
206
+ + cd c:/devel/target/4c814631e37619e836612142f0b035ce/lib
207
+ + for ext in a la so sl dylib
208
+ + rm -f libpng.a
209
+ + test -f libpng12.a
210
+ + for ext in a la so sl dylib
211
+ + rm -f libpng.la
212
+ + test -f libpng12.la
213
+ + cp -p libpng12.la libpng.la
214
+ + for ext in a la so sl dylib
215
+ + rm -f libpng.so
216
+ + test -f libpng12.so
217
+ + for ext in a la so sl dylib
218
+ + rm -f libpng.sl
219
+ + test -f libpng12.sl
220
+ + for ext in a la so sl dylib
221
+ + rm -f libpng.dylib
222
+ + test -f libpng12.dylib
223
+ make[2]: Leaving directory `/devel/src/libpng/1.2.32-1_win32'
224
+ test -z "c:/devel/target/4c814631e37619e836612142f0b035ce/share/man/man3" || /bin/mkdir -p "c:/devel/target/4c814631e37619e836612142f0b035ce/share/man/man3"
225
+ /opt/local/bin/install -c -m 644 './libpng.3' 'c:/devel/target/4c814631e37619e836612142f0b035ce/share/man/man3/libpng.3'
226
+ /opt/local/bin/install -c -m 644 './libpngpf.3' 'c:/devel/target/4c814631e37619e836612142f0b035ce/share/man/man3/libpngpf.3'
227
+ test -z "c:/devel/target/4c814631e37619e836612142f0b035ce/share/man/man5" || /bin/mkdir -p "c:/devel/target/4c814631e37619e836612142f0b035ce/share/man/man5"
228
+ /opt/local/bin/install -c -m 644 './png.5' 'c:/devel/target/4c814631e37619e836612142f0b035ce/share/man/man5/png.5'
229
+ test -z "c:/devel/target/4c814631e37619e836612142f0b035ce/lib/pkgconfig" || /bin/mkdir -p "c:/devel/target/4c814631e37619e836612142f0b035ce/lib/pkgconfig"
230
+ /opt/local/bin/install -c -m 644 'libpng12.pc' 'c:/devel/target/4c814631e37619e836612142f0b035ce/lib/pkgconfig/libpng12.pc'
231
+ test -z "c:/devel/target/4c814631e37619e836612142f0b035ce/include/libpng12" || /bin/mkdir -p "c:/devel/target/4c814631e37619e836612142f0b035ce/include/libpng12"
232
+ /opt/local/bin/install -c -m 644 'png.h' 'c:/devel/target/4c814631e37619e836612142f0b035ce/include/libpng12/png.h'
233
+ /opt/local/bin/install -c -m 644 'pngconf.h' 'c:/devel/target/4c814631e37619e836612142f0b035ce/include/libpng12/pngconf.h'
234
+ make install-data-hook
235
+ make[2]: Entering directory `/devel/src/libpng/1.2.32-1_win32'
236
+ cd c:/devel/target/4c814631e37619e836612142f0b035ce/include; rm -f png.h pngconf.h
237
+ cd c:/devel/target/4c814631e37619e836612142f0b035ce/include; cp -p libpng12/png.h png.h
238
+ cd c:/devel/target/4c814631e37619e836612142f0b035ce/include; cp -p libpng12/pngconf.h pngconf.h
239
+ cd c:/devel/target/4c814631e37619e836612142f0b035ce/lib/pkgconfig; rm -f libpng.pc
240
+ cd c:/devel/target/4c814631e37619e836612142f0b035ce/lib/pkgconfig; cp -p libpng12.pc libpng.pc
241
+ make[2]: Leaving directory `/devel/src/libpng/1.2.32-1_win32'
242
+ make[1]: Leaving directory `/devel/src/libpng/1.2.32-1_win32'
243
+ ++ rm -f /tmp/libpng_1.2.32-1_win32.zip /tmp/libpng-dev_1.2.32-1_win32.zip
244
+ ++ cd /devel/target/4c814631e37619e836612142f0b035ce
245
+ ++ zip /tmp/libpng_1.2.32-1_win32.zip bin/libpng12-0.dll
246
+ adding: bin/libpng12-0.dll (224 bytes security) (deflated 55%)
247
+ ++ zip -r -D /tmp/libpng-dev_1.2.32-1_win32.zip include
248
+ adding: include/libpng12/png.h (224 bytes security) (deflated 77%)
249
+ adding: include/libpng12/pngconf.h (224 bytes security) (deflated 73%)
250
+ adding: include/png.h (224 bytes security) (deflated 77%)
251
+ adding: include/pngconf.h (224 bytes security) (deflated 73%)
252
+ ++ zip /tmp/libpng-dev_1.2.32-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.32-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.32-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.32-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%)