atk 0.90.2-x86-mingw32

Sign up to get free protection for your applications and to get access to all the features.
Files changed (849) hide show
  1. data/ChangeLog +241 -0
  2. data/README +30 -0
  3. data/Rakefile +74 -0
  4. data/ext/atk/Makefile +160 -0
  5. data/ext/atk/atk.def +2 -0
  6. data/ext/atk/depend +8 -0
  7. data/ext/atk/extconf.rb +60 -0
  8. data/ext/atk/makeinits.rb +39 -0
  9. data/ext/atk/rbatk.c +27 -0
  10. data/ext/atk/rbatk.h +36 -0
  11. data/ext/atk/rbatkaction.c +81 -0
  12. data/ext/atk/rbatkcomponent.c +184 -0
  13. data/ext/atk/rbatkdocument.c +95 -0
  14. data/ext/atk/rbatkeditabletext.c +102 -0
  15. data/ext/atk/rbatkgobjectaccessible.c +37 -0
  16. data/ext/atk/rbatkhyperlink.c +92 -0
  17. data/ext/atk/rbatkhypertext.c +44 -0
  18. data/ext/atk/rbatkimage.c +62 -0
  19. data/ext/atk/rbatkimplementor.c +27 -0
  20. data/ext/atk/rbatkinits.c +55 -0
  21. data/ext/atk/rbatknoopobject.c +30 -0
  22. data/ext/atk/rbatknoopobjectfactory.c +30 -0
  23. data/ext/atk/rbatkobject.c +178 -0
  24. data/ext/atk/rbatkobjectfactory.c +44 -0
  25. data/ext/atk/rbatkregistry.c +55 -0
  26. data/ext/atk/rbatkrelation.c +104 -0
  27. data/ext/atk/rbatkrelationset.c +94 -0
  28. data/ext/atk/rbatkselection.c +82 -0
  29. data/ext/atk/rbatkstate.c +41 -0
  30. data/ext/atk/rbatkstateset.c +143 -0
  31. data/ext/atk/rbatkstreamablecontent.c +50 -0
  32. data/ext/atk/rbatktable.c +292 -0
  33. data/ext/atk/rbatktext.c +364 -0
  34. data/ext/atk/rbatktextrange.c +91 -0
  35. data/ext/atk/rbatktextrectangle.c +156 -0
  36. data/ext/atk/rbatkutil.c +125 -0
  37. data/ext/atk/rbatkvalue.c +74 -0
  38. data/ext/atk/rbatkversion.h +24 -0
  39. data/extconf.rb +49 -0
  40. data/lib/1.8/atk.so +0 -0
  41. data/lib/1.9/atk.so +0 -0
  42. data/lib/atk.rb +12 -0
  43. data/vendor/local/bin/envsubst.exe +0 -0
  44. data/vendor/local/bin/gettext.exe +0 -0
  45. data/vendor/local/bin/gettext.sh +123 -0
  46. data/vendor/local/bin/glib-genmarshal.exe +0 -0
  47. data/vendor/local/bin/glib-gettextize +188 -0
  48. data/vendor/local/bin/glib-mkenums +511 -0
  49. data/vendor/local/bin/gobject-query.exe +0 -0
  50. data/vendor/local/bin/gspawn-win32-helper-console.exe +0 -0
  51. data/vendor/local/bin/gspawn-win32-helper.exe +0 -0
  52. data/vendor/local/bin/intl.dll +0 -0
  53. data/vendor/local/bin/libasprintf-0.dll +0 -0
  54. data/vendor/local/bin/libatk-1.0-0.dll +0 -0
  55. data/vendor/local/bin/libgcc_s_dw2-1.dll +0 -0
  56. data/vendor/local/bin/libgio-2.0-0.dll +0 -0
  57. data/vendor/local/bin/libglib-2.0-0.dll +0 -0
  58. data/vendor/local/bin/libgmodule-2.0-0.dll +0 -0
  59. data/vendor/local/bin/libgobject-2.0-0.dll +0 -0
  60. data/vendor/local/bin/libgthread-2.0-0.dll +0 -0
  61. data/vendor/local/bin/ngettext.exe +0 -0
  62. data/vendor/local/include/atk-1.0/atk/atk-enum-types.h +45 -0
  63. data/vendor/local/include/atk-1.0/atk/atk.h +56 -0
  64. data/vendor/local/include/atk-1.0/atk/atkaction.h +111 -0
  65. data/vendor/local/include/atk-1.0/atk/atkcomponent.h +171 -0
  66. data/vendor/local/include/atk-1.0/atk/atkdocument.h +83 -0
  67. data/vendor/local/include/atk-1.0/atk/atkeditabletext.h +104 -0
  68. data/vendor/local/include/atk-1.0/atk/atkgobjectaccessible.h +65 -0
  69. data/vendor/local/include/atk-1.0/atk/atkhyperlink.h +106 -0
  70. data/vendor/local/include/atk-1.0/atk/atkhyperlinkimpl.h +75 -0
  71. data/vendor/local/include/atk-1.0/atk/atkhypertext.h +78 -0
  72. data/vendor/local/include/atk-1.0/atk/atkimage.h +87 -0
  73. data/vendor/local/include/atk-1.0/atk/atkmisc.h +89 -0
  74. data/vendor/local/include/atk-1.0/atk/atknoopobject.h +55 -0
  75. data/vendor/local/include/atk-1.0/atk/atknoopobjectfactory.h +57 -0
  76. data/vendor/local/include/atk-1.0/atk/atkobject.h +649 -0
  77. data/vendor/local/include/atk-1.0/atk/atkobjectfactory.h +67 -0
  78. data/vendor/local/include/atk-1.0/atk/atkplug.h +61 -0
  79. data/vendor/local/include/atk-1.0/atk/atkregistry.h +69 -0
  80. data/vendor/local/include/atk-1.0/atk/atkrelation.h +89 -0
  81. data/vendor/local/include/atk-1.0/atk/atkrelationset.h +78 -0
  82. data/vendor/local/include/atk-1.0/atk/atkrelationtype.h +83 -0
  83. data/vendor/local/include/atk-1.0/atk/atkselection.h +95 -0
  84. data/vendor/local/include/atk-1.0/atk/atksocket.h +65 -0
  85. data/vendor/local/include/atk-1.0/atk/atkstate.h +178 -0
  86. data/vendor/local/include/atk-1.0/atk/atkstateset.h +80 -0
  87. data/vendor/local/include/atk-1.0/atk/atkstreamablecontent.h +105 -0
  88. data/vendor/local/include/atk-1.0/atk/atktable.h +217 -0
  89. data/vendor/local/include/atk-1.0/atk/atktext.h +365 -0
  90. data/vendor/local/include/atk-1.0/atk/atkutil.h +313 -0
  91. data/vendor/local/include/atk-1.0/atk/atkvalue.h +93 -0
  92. data/vendor/local/include/autosprintf.h +66 -0
  93. data/vendor/local/include/glib-2.0/gio/gappinfo.h +237 -0
  94. data/vendor/local/include/glib-2.0/gio/gasyncinitable.h +119 -0
  95. data/vendor/local/include/glib-2.0/gio/gasyncresult.h +73 -0
  96. data/vendor/local/include/glib-2.0/gio/gbufferedinputstream.h +123 -0
  97. data/vendor/local/include/glib-2.0/gio/gbufferedoutputstream.h +82 -0
  98. data/vendor/local/include/glib-2.0/gio/gcancellable.h +103 -0
  99. data/vendor/local/include/glib-2.0/gio/gcharsetconverter.h +60 -0
  100. data/vendor/local/include/glib-2.0/gio/gcontenttype.h +57 -0
  101. data/vendor/local/include/glib-2.0/gio/gconverter.h +95 -0
  102. data/vendor/local/include/glib-2.0/gio/gconverterinputstream.h +80 -0
  103. data/vendor/local/include/glib-2.0/gio/gconverteroutputstream.h +80 -0
  104. data/vendor/local/include/glib-2.0/gio/gdatainputstream.h +133 -0
  105. data/vendor/local/include/glib-2.0/gio/gdataoutputstream.h +116 -0
  106. data/vendor/local/include/glib-2.0/gio/gdrive.h +225 -0
  107. data/vendor/local/include/glib-2.0/gio/gemblem.h +58 -0
  108. data/vendor/local/include/glib-2.0/gio/gemblemedicon.h +62 -0
  109. data/vendor/local/include/glib-2.0/gio/gfile.h +1017 -0
  110. data/vendor/local/include/glib-2.0/gio/gfileattribute.h +77 -0
  111. data/vendor/local/include/glib-2.0/gio/gfileenumerator.h +133 -0
  112. data/vendor/local/include/glib-2.0/gio/gfileicon.h +56 -0
  113. data/vendor/local/include/glib-2.0/gio/gfileinfo.h +951 -0
  114. data/vendor/local/include/glib-2.0/gio/gfileinputstream.h +112 -0
  115. data/vendor/local/include/glib-2.0/gio/gfileiostream.h +118 -0
  116. data/vendor/local/include/glib-2.0/gio/gfilemonitor.h +95 -0
  117. data/vendor/local/include/glib-2.0/gio/gfilenamecompleter.h +76 -0
  118. data/vendor/local/include/glib-2.0/gio/gfileoutputstream.h +119 -0
  119. data/vendor/local/include/glib-2.0/gio/gfilterinputstream.h +76 -0
  120. data/vendor/local/include/glib-2.0/gio/gfilteroutputstream.h +76 -0
  121. data/vendor/local/include/glib-2.0/gio/gicon.h +91 -0
  122. data/vendor/local/include/glib-2.0/gio/ginetaddress.h +103 -0
  123. data/vendor/local/include/glib-2.0/gio/ginetsocketaddress.h +69 -0
  124. data/vendor/local/include/glib-2.0/gio/ginitable.h +96 -0
  125. data/vendor/local/include/glib-2.0/gio/ginputstream.h +172 -0
  126. data/vendor/local/include/glib-2.0/gio/gio.h +101 -0
  127. data/vendor/local/include/glib-2.0/gio/gioenums.h +703 -0
  128. data/vendor/local/include/glib-2.0/gio/gioenumtypes.h +79 -0
  129. data/vendor/local/include/glib-2.0/gio/gioerror.h +48 -0
  130. data/vendor/local/include/glib-2.0/gio/giomodule.h +132 -0
  131. data/vendor/local/include/glib-2.0/gio/gioscheduler.h +52 -0
  132. data/vendor/local/include/glib-2.0/gio/giostream.h +112 -0
  133. data/vendor/local/include/glib-2.0/gio/giotypes.h +339 -0
  134. data/vendor/local/include/glib-2.0/gio/gloadableicon.h +97 -0
  135. data/vendor/local/include/glib-2.0/gio/gmemoryinputstream.h +82 -0
  136. data/vendor/local/include/glib-2.0/gio/gmemoryoutputstream.h +97 -0
  137. data/vendor/local/include/glib-2.0/gio/gmount.h +242 -0
  138. data/vendor/local/include/glib-2.0/gio/gmountoperation.h +123 -0
  139. data/vendor/local/include/glib-2.0/gio/gnativevolumemonitor.h +62 -0
  140. data/vendor/local/include/glib-2.0/gio/gnetworkaddress.h +69 -0
  141. data/vendor/local/include/glib-2.0/gio/gnetworkservice.h +69 -0
  142. data/vendor/local/include/glib-2.0/gio/goutputstream.h +207 -0
  143. data/vendor/local/include/glib-2.0/gio/gresolver.h +167 -0
  144. data/vendor/local/include/glib-2.0/gio/gseekable.h +99 -0
  145. data/vendor/local/include/glib-2.0/gio/gsimpleasyncresult.h +125 -0
  146. data/vendor/local/include/glib-2.0/gio/gsocket.h +176 -0
  147. data/vendor/local/include/glib-2.0/gio/gsocketaddress.h +79 -0
  148. data/vendor/local/include/glib-2.0/gio/gsocketaddressenumerator.h +89 -0
  149. data/vendor/local/include/glib-2.0/gio/gsocketclient.h +130 -0
  150. data/vendor/local/include/glib-2.0/gio/gsocketconnectable.h +68 -0
  151. data/vendor/local/include/glib-2.0/gio/gsocketconnection.h +91 -0
  152. data/vendor/local/include/glib-2.0/gio/gsocketcontrolmessage.h +105 -0
  153. data/vendor/local/include/glib-2.0/gio/gsocketlistener.h +138 -0
  154. data/vendor/local/include/glib-2.0/gio/gsocketservice.h +88 -0
  155. data/vendor/local/include/glib-2.0/gio/gsrvtarget.h +52 -0
  156. data/vendor/local/include/glib-2.0/gio/gtcpconnection.h +68 -0
  157. data/vendor/local/include/glib-2.0/gio/gthemedicon.h +63 -0
  158. data/vendor/local/include/glib-2.0/gio/gthreadedsocketservice.h +81 -0
  159. data/vendor/local/include/glib-2.0/gio/gvfs.h +125 -0
  160. data/vendor/local/include/glib-2.0/gio/gvolume.h +211 -0
  161. data/vendor/local/include/glib-2.0/gio/gvolumemonitor.h +151 -0
  162. data/vendor/local/include/glib-2.0/gio/gzlibcompressor.h +55 -0
  163. data/vendor/local/include/glib-2.0/gio/gzlibdecompressor.h +54 -0
  164. data/vendor/local/include/glib-2.0/glib/galloca.h +63 -0
  165. data/vendor/local/include/glib-2.0/glib/garray.h +179 -0
  166. data/vendor/local/include/glib-2.0/glib/gasyncqueue.h +120 -0
  167. data/vendor/local/include/glib-2.0/glib/gatomic.h +85 -0
  168. data/vendor/local/include/glib-2.0/glib/gbacktrace.h +68 -0
  169. data/vendor/local/include/glib-2.0/glib/gbase64.h +57 -0
  170. data/vendor/local/include/glib-2.0/glib/gbitlock.h +43 -0
  171. data/vendor/local/include/glib-2.0/glib/gbookmarkfile.h +191 -0
  172. data/vendor/local/include/glib-2.0/glib/gcache.h +69 -0
  173. data/vendor/local/include/glib-2.0/glib/gchecksum.h +86 -0
  174. data/vendor/local/include/glib-2.0/glib/gcompletion.h +77 -0
  175. data/vendor/local/include/glib-2.0/glib/gconvert.h +138 -0
  176. data/vendor/local/include/glib-2.0/glib/gdataset.h +122 -0
  177. data/vendor/local/include/glib-2.0/glib/gdate.h +263 -0
  178. data/vendor/local/include/glib-2.0/glib/gdir.h +52 -0
  179. data/vendor/local/include/glib-2.0/glib/gerror.h +98 -0
  180. data/vendor/local/include/glib-2.0/glib/gfileutils.h +128 -0
  181. data/vendor/local/include/glib-2.0/glib/ghash.h +166 -0
  182. data/vendor/local/include/glib-2.0/glib/ghook.h +181 -0
  183. data/vendor/local/include/glib-2.0/glib/ghostutils.h +40 -0
  184. data/vendor/local/include/glib-2.0/glib/gi18n-lib.h +38 -0
  185. data/vendor/local/include/glib-2.0/glib/gi18n.h +34 -0
  186. data/vendor/local/include/glib-2.0/glib/giochannel.h +366 -0
  187. data/vendor/local/include/glib-2.0/glib/gkeyfile.h +250 -0
  188. data/vendor/local/include/glib-2.0/glib/glist.h +120 -0
  189. data/vendor/local/include/glib-2.0/glib/gmacros.h +277 -0
  190. data/vendor/local/include/glib-2.0/glib/gmain.h +304 -0
  191. data/vendor/local/include/glib-2.0/glib/gmappedfile.h +49 -0
  192. data/vendor/local/include/glib-2.0/glib/gmarkup.h +163 -0
  193. data/vendor/local/include/glib-2.0/glib/gmem.h +203 -0
  194. data/vendor/local/include/glib-2.0/glib/gmessages.h +343 -0
  195. data/vendor/local/include/glib-2.0/glib/gnode.h +288 -0
  196. data/vendor/local/include/glib-2.0/glib/goption.h +370 -0
  197. data/vendor/local/include/glib-2.0/glib/gpattern.h +49 -0
  198. data/vendor/local/include/glib-2.0/glib/gpoll.h +93 -0
  199. data/vendor/local/include/glib-2.0/glib/gprimes.h +51 -0
  200. data/vendor/local/include/glib-2.0/glib/gprintf.h +52 -0
  201. data/vendor/local/include/glib-2.0/glib/gqsort.h +46 -0
  202. data/vendor/local/include/glib-2.0/glib/gquark.h +52 -0
  203. data/vendor/local/include/glib-2.0/glib/gqueue.h +127 -0
  204. data/vendor/local/include/glib-2.0/glib/grand.h +85 -0
  205. data/vendor/local/include/glib-2.0/glib/gregex.h +243 -0
  206. data/vendor/local/include/glib-2.0/glib/grel.h +97 -0
  207. data/vendor/local/include/glib-2.0/glib/gscanner.h +278 -0
  208. data/vendor/local/include/glib-2.0/glib/gsequence.h +128 -0
  209. data/vendor/local/include/glib-2.0/glib/gshell.h +55 -0
  210. data/vendor/local/include/glib-2.0/glib/gslice.h +86 -0
  211. data/vendor/local/include/glib-2.0/glib/gslist.h +114 -0
  212. data/vendor/local/include/glib-2.0/glib/gspawn.h +139 -0
  213. data/vendor/local/include/glib-2.0/glib/gstdio.h +159 -0
  214. data/vendor/local/include/glib-2.0/glib/gstrfuncs.h +267 -0
  215. data/vendor/local/include/glib-2.0/glib/gstring.h +178 -0
  216. data/vendor/local/include/glib-2.0/glib/gtestutils.h +292 -0
  217. data/vendor/local/include/glib-2.0/glib/gthread.h +408 -0
  218. data/vendor/local/include/glib-2.0/glib/gthreadpool.h +114 -0
  219. data/vendor/local/include/glib-2.0/glib/gtimer.h +65 -0
  220. data/vendor/local/include/glib-2.0/glib/gtree.h +91 -0
  221. data/vendor/local/include/glib-2.0/glib/gtypes.h +451 -0
  222. data/vendor/local/include/glib-2.0/glib/gunicode.h +404 -0
  223. data/vendor/local/include/glib-2.0/glib/gurifuncs.h +81 -0
  224. data/vendor/local/include/glib-2.0/glib/gutils.h +490 -0
  225. data/vendor/local/include/glib-2.0/glib/gvariant.h +224 -0
  226. data/vendor/local/include/glib-2.0/glib/gvarianttype.h +305 -0
  227. data/vendor/local/include/glib-2.0/glib/gwin32.h +114 -0
  228. data/vendor/local/include/glib-2.0/glib-object.h +41 -0
  229. data/vendor/local/include/glib-2.0/glib.h +97 -0
  230. data/vendor/local/include/glib-2.0/gmodule.h +101 -0
  231. data/vendor/local/include/glib-2.0/gobject/gboxed.h +236 -0
  232. data/vendor/local/include/glib-2.0/gobject/gclosure.h +251 -0
  233. data/vendor/local/include/glib-2.0/gobject/genums.h +261 -0
  234. data/vendor/local/include/glib-2.0/gobject/gmarshal.h +169 -0
  235. data/vendor/local/include/glib-2.0/gobject/gobject.h +562 -0
  236. data/vendor/local/include/glib-2.0/gobject/gobjectnotifyqueue.c +166 -0
  237. data/vendor/local/include/glib-2.0/gobject/gparam.h +410 -0
  238. data/vendor/local/include/glib-2.0/gobject/gparamspecs.h +1083 -0
  239. data/vendor/local/include/glib-2.0/gobject/gsignal.h +509 -0
  240. data/vendor/local/include/glib-2.0/gobject/gsourceclosure.h +51 -0
  241. data/vendor/local/include/glib-2.0/gobject/gtype.h +1608 -0
  242. data/vendor/local/include/glib-2.0/gobject/gtypemodule.h +263 -0
  243. data/vendor/local/include/glib-2.0/gobject/gtypeplugin.h +134 -0
  244. data/vendor/local/include/glib-2.0/gobject/gvalue.h +159 -0
  245. data/vendor/local/include/glib-2.0/gobject/gvaluearray.h +77 -0
  246. data/vendor/local/include/glib-2.0/gobject/gvaluecollector.h +222 -0
  247. data/vendor/local/include/glib-2.0/gobject/gvaluetypes.h +243 -0
  248. data/vendor/local/include/libintl.h +464 -0
  249. data/vendor/local/lib/GNU.Gettext.dll +0 -0
  250. data/vendor/local/lib/atk-1.0.def +237 -0
  251. data/vendor/local/lib/atk-1.0.lib +0 -0
  252. data/vendor/local/lib/gio-2.0.def +800 -0
  253. data/vendor/local/lib/gio-2.0.lib +0 -0
  254. data/vendor/local/lib/glib-2.0/include/glibconfig.h +284 -0
  255. data/vendor/local/lib/glib-2.0.def +1381 -0
  256. data/vendor/local/lib/glib-2.0.lib +0 -0
  257. data/vendor/local/lib/gmodule-2.0.def +11 -0
  258. data/vendor/local/lib/gmodule-2.0.lib +0 -0
  259. data/vendor/local/lib/gobject-2.0.def +349 -0
  260. data/vendor/local/lib/gobject-2.0.lib +0 -0
  261. data/vendor/local/lib/gthread-2.0.def +3 -0
  262. data/vendor/local/lib/gthread-2.0.lib +0 -0
  263. data/vendor/local/lib/intl.lib +0 -0
  264. data/vendor/local/lib/libasprintf.dll.a +0 -0
  265. data/vendor/local/lib/libatk-1.0.dll.a +0 -0
  266. data/vendor/local/lib/libgio-2.0.dll.a +0 -0
  267. data/vendor/local/lib/libglib-2.0.dll.a +0 -0
  268. data/vendor/local/lib/libgmodule-2.0.dll.a +0 -0
  269. data/vendor/local/lib/libgobject-2.0.dll.a +0 -0
  270. data/vendor/local/lib/libgthread-2.0.dll.a +0 -0
  271. data/vendor/local/lib/libintl.def +31 -0
  272. data/vendor/local/lib/libintl.dll.a +0 -0
  273. data/vendor/local/lib/pkgconfig/atk.pc +11 -0
  274. data/vendor/local/lib/pkgconfig/gio-2.0.pc +14 -0
  275. data/vendor/local/lib/pkgconfig/glib-2.0.pc +15 -0
  276. data/vendor/local/lib/pkgconfig/gmodule-2.0.pc +14 -0
  277. data/vendor/local/lib/pkgconfig/gmodule-no-export-2.0.pc +14 -0
  278. data/vendor/local/lib/pkgconfig/gobject-2.0.pc +11 -0
  279. data/vendor/local/lib/pkgconfig/gthread-2.0.pc +11 -0
  280. data/vendor/local/manifest/atk-dev_1.30.0-2_win32.mft +37 -0
  281. data/vendor/local/manifest/atk_1.30.0-2_win32.mft +93 -0
  282. data/vendor/local/manifest/gettext-runtime-dev_0.18.1.1-2_win32.mft +81 -0
  283. data/vendor/local/manifest/gettext-runtime_0.18.1.1-2_win32.mft +3 -0
  284. data/vendor/local/manifest/glib-dev_2.24.2-2_win32.mft +491 -0
  285. data/vendor/local/manifest/glib_2.24.2-2_win32.mft +101 -0
  286. data/vendor/local/share/aclocal/glib-2.0.m4 +211 -0
  287. data/vendor/local/share/aclocal/glib-gettext.m4 +432 -0
  288. data/vendor/local/share/doc/gettext/bind_textdomain_codeset.3.html +165 -0
  289. data/vendor/local/share/doc/gettext/bindtextdomain.3.html +160 -0
  290. data/vendor/local/share/doc/gettext/csharpdoc/GNU_Gettext.html +8 -0
  291. data/vendor/local/share/doc/gettext/csharpdoc/GNU_Gettext_GettextResourceManager.html +305 -0
  292. data/vendor/local/share/doc/gettext/csharpdoc/GNU_Gettext_GettextResourceSet.html +356 -0
  293. data/vendor/local/share/doc/gettext/csharpdoc/begin.html +11 -0
  294. data/vendor/local/share/doc/gettext/csharpdoc/index.html +10 -0
  295. data/vendor/local/share/doc/gettext/csharpdoc/namespaces.html +6 -0
  296. data/vendor/local/share/doc/gettext/envsubst.1.html +213 -0
  297. data/vendor/local/share/doc/gettext/gettext.1.html +266 -0
  298. data/vendor/local/share/doc/gettext/gettext.3.html +186 -0
  299. data/vendor/local/share/doc/gettext/ngettext.1.html +280 -0
  300. data/vendor/local/share/doc/gettext/ngettext.3.html +143 -0
  301. data/vendor/local/share/doc/gettext/textdomain.3.html +150 -0
  302. data/vendor/local/share/doc/glib-2.24.2/COPYING +482 -0
  303. data/vendor/local/share/doc/glib-dev-2.24.2/COPYING +482 -0
  304. data/vendor/local/share/doc/libasprintf/autosprintf_all.html +174 -0
  305. data/vendor/local/share/glib-2.0/gdb/glib.py +252 -0
  306. data/vendor/local/share/glib-2.0/gdb/gobject.py +305 -0
  307. data/vendor/local/share/glib-2.0/gettext/mkinstalldirs +111 -0
  308. data/vendor/local/share/glib-2.0/gettext/po/Makefile.in.in +277 -0
  309. data/vendor/local/share/gtk-doc/html/gio/GAppInfo.html +1390 -0
  310. data/vendor/local/share/gtk-doc/html/gio/GAsyncInitable.html +531 -0
  311. data/vendor/local/share/gtk-doc/html/gio/GAsyncResult.html +343 -0
  312. data/vendor/local/share/gtk-doc/html/gio/GBufferedInputStream.html +568 -0
  313. data/vendor/local/share/gtk-doc/html/gio/GBufferedOutputStream.html +295 -0
  314. data/vendor/local/share/gtk-doc/html/gio/GCancellable.html +620 -0
  315. data/vendor/local/share/gtk-doc/html/gio/GCharsetConverter.html +245 -0
  316. data/vendor/local/share/gtk-doc/html/gio/GConverter.html +388 -0
  317. data/vendor/local/share/gtk-doc/html/gio/GDataInputStream.html +993 -0
  318. data/vendor/local/share/gtk-doc/html/gio/GDataOutputStream.html +544 -0
  319. data/vendor/local/share/gtk-doc/html/gio/GDrive.html +1416 -0
  320. data/vendor/local/share/gtk-doc/html/gio/GEmblem.html +272 -0
  321. data/vendor/local/share/gtk-doc/html/gio/GEmblemedIcon.html +206 -0
  322. data/vendor/local/share/gtk-doc/html/gio/GFile.html +7450 -0
  323. data/vendor/local/share/gtk-doc/html/gio/GFileDescriptorBased.html +115 -0
  324. data/vendor/local/share/gtk-doc/html/gio/GFileEnumerator.html +520 -0
  325. data/vendor/local/share/gtk-doc/html/gio/GFileIOStream.html +312 -0
  326. data/vendor/local/share/gtk-doc/html/gio/GFileIcon.html +155 -0
  327. data/vendor/local/share/gtk-doc/html/gio/GFileInfo.html +3116 -0
  328. data/vendor/local/share/gtk-doc/html/gio/GFileInputStream.html +262 -0
  329. data/vendor/local/share/gtk-doc/html/gio/GFileMonitor.html +353 -0
  330. data/vendor/local/share/gtk-doc/html/gio/GFileOutputStream.html +301 -0
  331. data/vendor/local/share/gtk-doc/html/gio/GFilenameCompleter.html +217 -0
  332. data/vendor/local/share/gtk-doc/html/gio/GFilterInputStream.html +182 -0
  333. data/vendor/local/share/gtk-doc/html/gio/GFilterOutputStream.html +183 -0
  334. data/vendor/local/share/gtk-doc/html/gio/GIOModule.html +261 -0
  335. data/vendor/local/share/gtk-doc/html/gio/GIOStream.html +479 -0
  336. data/vendor/local/share/gtk-doc/html/gio/GIcon.html +331 -0
  337. data/vendor/local/share/gtk-doc/html/gio/GInetAddress.html +717 -0
  338. data/vendor/local/share/gtk-doc/html/gio/GInetSocketAddress.html +195 -0
  339. data/vendor/local/share/gtk-doc/html/gio/GInitable.html +388 -0
  340. data/vendor/local/share/gtk-doc/html/gio/GInputStream.html +808 -0
  341. data/vendor/local/share/gtk-doc/html/gio/GLoadableIcon.html +301 -0
  342. data/vendor/local/share/gtk-doc/html/gio/GMemoryInputStream.html +185 -0
  343. data/vendor/local/share/gtk-doc/html/gio/GMemoryOutputStream.html +362 -0
  344. data/vendor/local/share/gtk-doc/html/gio/GMount.html +1465 -0
  345. data/vendor/local/share/gtk-doc/html/gio/GMountOperation.html +848 -0
  346. data/vendor/local/share/gtk-doc/html/gio/GNetworkAddress.html +263 -0
  347. data/vendor/local/share/gtk-doc/html/gio/GNetworkService.html +248 -0
  348. data/vendor/local/share/gtk-doc/html/gio/GOutputStream.html +1006 -0
  349. data/vendor/local/share/gtk-doc/html/gio/GResolver.html +787 -0
  350. data/vendor/local/share/gtk-doc/html/gio/GSeekable.html +350 -0
  351. data/vendor/local/share/gtk-doc/html/gio/GSimpleAsyncResult.html +979 -0
  352. data/vendor/local/share/gtk-doc/html/gio/GSocket.html +2152 -0
  353. data/vendor/local/share/gtk-doc/html/gio/GSocketAddress.html +297 -0
  354. data/vendor/local/share/gtk-doc/html/gio/GSocketClient.html +930 -0
  355. data/vendor/local/share/gtk-doc/html/gio/GSocketConnectable.html +428 -0
  356. data/vendor/local/share/gtk-doc/html/gio/GSocketConnection.html +548 -0
  357. data/vendor/local/share/gtk-doc/html/gio/GSocketControlMessage.html +274 -0
  358. data/vendor/local/share/gtk-doc/html/gio/GSocketListener.html +741 -0
  359. data/vendor/local/share/gtk-doc/html/gio/GSocketService.html +258 -0
  360. data/vendor/local/share/gtk-doc/html/gio/GThemedIcon.html +377 -0
  361. data/vendor/local/share/gtk-doc/html/gio/GThreadedSocketService.html +197 -0
  362. data/vendor/local/share/gtk-doc/html/gio/GUnixFDList.html +381 -0
  363. data/vendor/local/share/gtk-doc/html/gio/GUnixFDMessage.html +280 -0
  364. data/vendor/local/share/gtk-doc/html/gio/GUnixInputStream.html +237 -0
  365. data/vendor/local/share/gtk-doc/html/gio/GUnixOutputStream.html +237 -0
  366. data/vendor/local/share/gtk-doc/html/gio/GUnixSocketAddress.html +306 -0
  367. data/vendor/local/share/gtk-doc/html/gio/GVfs.html +274 -0
  368. data/vendor/local/share/gtk-doc/html/gio/GVolume.html +1028 -0
  369. data/vendor/local/share/gtk-doc/html/gio/GVolumeMonitor.html +709 -0
  370. data/vendor/local/share/gtk-doc/html/gio/GZlibCompressor.html +180 -0
  371. data/vendor/local/share/gtk-doc/html/gio/GZlibDecompressor.html +128 -0
  372. data/vendor/local/share/gtk-doc/html/gio/api-index-2-18.html +153 -0
  373. data/vendor/local/share/gtk-doc/html/gio/api-index-2-20.html +155 -0
  374. data/vendor/local/share/gtk-doc/html/gio/api-index-2-22.html +1088 -0
  375. data/vendor/local/share/gtk-doc/html/gio/api-index-2-24.html +206 -0
  376. data/vendor/local/share/gtk-doc/html/gio/api-index-deprecated.html +97 -0
  377. data/vendor/local/share/gtk-doc/html/gio/api-index-full.html +4499 -0
  378. data/vendor/local/share/gtk-doc/html/gio/async.html +44 -0
  379. data/vendor/local/share/gtk-doc/html/gio/ch01.html +171 -0
  380. data/vendor/local/share/gtk-doc/html/gio/ch02.html +45 -0
  381. data/vendor/local/share/gtk-doc/html/gio/ch03.html +80 -0
  382. data/vendor/local/share/gtk-doc/html/gio/ch19.html +75 -0
  383. data/vendor/local/share/gtk-doc/html/gio/ch20.html +217 -0
  384. data/vendor/local/share/gtk-doc/html/gio/ch20s02.html +41 -0
  385. data/vendor/local/share/gtk-doc/html/gio/ch20s03.html +39 -0
  386. data/vendor/local/share/gtk-doc/html/gio/conversion.html +44 -0
  387. data/vendor/local/share/gtk-doc/html/gio/extending-gio.html +96 -0
  388. data/vendor/local/share/gtk-doc/html/gio/extending.html +41 -0
  389. data/vendor/local/share/gtk-doc/html/gio/failable_initialization.html +38 -0
  390. data/vendor/local/share/gtk-doc/html/gio/file_mon.html +33 -0
  391. data/vendor/local/share/gtk-doc/html/gio/file_ops.html +50 -0
  392. data/vendor/local/share/gtk-doc/html/gio/gio-Desktop-file-based-GAppInfo.html +339 -0
  393. data/vendor/local/share/gtk-doc/html/gio/gio-Extension-Points.html +465 -0
  394. data/vendor/local/share/gtk-doc/html/gio/gio-GContentType.html +381 -0
  395. data/vendor/local/share/gtk-doc/html/gio/gio-GConverterInputstream.html +163 -0
  396. data/vendor/local/share/gtk-doc/html/gio/gio-GConverterOutputstream.html +163 -0
  397. data/vendor/local/share/gtk-doc/html/gio/gio-GFileAttribute.html +927 -0
  398. data/vendor/local/share/gtk-doc/html/gio/gio-GIOError.html +328 -0
  399. data/vendor/local/share/gtk-doc/html/gio/gio-GIOScheduler.html +297 -0
  400. data/vendor/local/share/gtk-doc/html/gio/gio-GSrvTarget.html +313 -0
  401. data/vendor/local/share/gtk-doc/html/gio/gio-Unix-Mounts.html +918 -0
  402. data/vendor/local/share/gtk-doc/html/gio/gio-hierarchy.html +107 -0
  403. data/vendor/local/share/gtk-doc/html/gio/gio.devhelp +1235 -0
  404. data/vendor/local/share/gtk-doc/html/gio/gio.devhelp2 +1384 -0
  405. data/vendor/local/share/gtk-doc/html/gio/gvfs-overview.png +0 -0
  406. data/vendor/local/share/gtk-doc/html/gio/highlevel-socket.html +47 -0
  407. data/vendor/local/share/gtk-doc/html/gio/home.png +0 -0
  408. data/vendor/local/share/gtk-doc/html/gio/icons.html +50 -0
  409. data/vendor/local/share/gtk-doc/html/gio/index.html +318 -0
  410. data/vendor/local/share/gtk-doc/html/gio/index.sgml +1795 -0
  411. data/vendor/local/share/gtk-doc/html/gio/left.png +0 -0
  412. data/vendor/local/share/gtk-doc/html/gio/migrating.html +42 -0
  413. data/vendor/local/share/gtk-doc/html/gio/networking.html +57 -0
  414. data/vendor/local/share/gtk-doc/html/gio/pt01.html +39 -0
  415. data/vendor/local/share/gtk-doc/html/gio/pt02.html +293 -0
  416. data/vendor/local/share/gtk-doc/html/gio/resolver.html +47 -0
  417. data/vendor/local/share/gtk-doc/html/gio/right.png +0 -0
  418. data/vendor/local/share/gtk-doc/html/gio/streaming.html +92 -0
  419. data/vendor/local/share/gtk-doc/html/gio/style.css +257 -0
  420. data/vendor/local/share/gtk-doc/html/gio/types.html +41 -0
  421. data/vendor/local/share/gtk-doc/html/gio/up.png +0 -0
  422. data/vendor/local/share/gtk-doc/html/gio/utils.html +33 -0
  423. data/vendor/local/share/gtk-doc/html/gio/volume_mon.html +47 -0
  424. data/vendor/local/share/gtk-doc/html/glib/api-index-2-10.html +180 -0
  425. data/vendor/local/share/gtk-doc/html/glib/api-index-2-12.html +312 -0
  426. data/vendor/local/share/gtk-doc/html/glib/api-index-2-14.html +563 -0
  427. data/vendor/local/share/gtk-doc/html/glib/api-index-2-16.html +362 -0
  428. data/vendor/local/share/gtk-doc/html/glib/api-index-2-18.html +102 -0
  429. data/vendor/local/share/gtk-doc/html/glib/api-index-2-2.html +124 -0
  430. data/vendor/local/share/gtk-doc/html/glib/api-index-2-20.html +83 -0
  431. data/vendor/local/share/gtk-doc/html/glib/api-index-2-22.html +194 -0
  432. data/vendor/local/share/gtk-doc/html/glib/api-index-2-24.html +419 -0
  433. data/vendor/local/share/gtk-doc/html/glib/api-index-2-4.html +389 -0
  434. data/vendor/local/share/gtk-doc/html/glib/api-index-2-6.html +413 -0
  435. data/vendor/local/share/gtk-doc/html/glib/api-index-2-8.html +158 -0
  436. data/vendor/local/share/gtk-doc/html/glib/api-index-deprecated.html +340 -0
  437. data/vendor/local/share/gtk-doc/html/glib/api-index-full.html +7835 -0
  438. data/vendor/local/share/gtk-doc/html/glib/file-name-encodings.png +0 -0
  439. data/vendor/local/share/gtk-doc/html/glib/glib-Arrays.html +893 -0
  440. data/vendor/local/share/gtk-doc/html/glib/glib-Asynchronous-Queues.html +818 -0
  441. data/vendor/local/share/gtk-doc/html/glib/glib-Atomic-Operations.html +413 -0
  442. data/vendor/local/share/gtk-doc/html/glib/glib-Automatic-String-Completion.html +430 -0
  443. data/vendor/local/share/gtk-doc/html/glib/glib-Balanced-Binary-Trees.html +802 -0
  444. data/vendor/local/share/gtk-doc/html/glib/glib-Base64-Encoding.html +372 -0
  445. data/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html +500 -0
  446. data/vendor/local/share/gtk-doc/html/glib/glib-Bookmark-file-parser.html +2054 -0
  447. data/vendor/local/share/gtk-doc/html/glib/glib-Byte-Arrays.html +560 -0
  448. data/vendor/local/share/gtk-doc/html/glib/glib-Byte-Order-Macros.html +1686 -0
  449. data/vendor/local/share/gtk-doc/html/glib/glib-Caches.html +398 -0
  450. data/vendor/local/share/gtk-doc/html/glib/glib-Character-Set-Conversion.html +1187 -0
  451. data/vendor/local/share/gtk-doc/html/glib/glib-Commandline-option-parser.html +1665 -0
  452. data/vendor/local/share/gtk-doc/html/glib/glib-Data-Checksums.html +460 -0
  453. data/vendor/local/share/gtk-doc/html/glib/glib-Datasets.html +528 -0
  454. data/vendor/local/share/gtk-doc/html/glib/glib-Date-and-Time-Functions.html +2042 -0
  455. data/vendor/local/share/gtk-doc/html/glib/glib-Double-ended-Queues.html +1278 -0
  456. data/vendor/local/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html +1406 -0
  457. data/vendor/local/share/gtk-doc/html/glib/glib-Dynamic-Loading-of-Modules.html +548 -0
  458. data/vendor/local/share/gtk-doc/html/glib/glib-Error-Reporting.html +1023 -0
  459. data/vendor/local/share/gtk-doc/html/glib/glib-File-Utilities.html +1810 -0
  460. data/vendor/local/share/gtk-doc/html/glib/glib-GVariant.html +3798 -0
  461. data/vendor/local/share/gtk-doc/html/glib/glib-GVariantType.html +1815 -0
  462. data/vendor/local/share/gtk-doc/html/glib/glib-Glob-style-pattern-matching.html +295 -0
  463. data/vendor/local/share/gtk-doc/html/glib/glib-Hash-Tables.html +1512 -0
  464. data/vendor/local/share/gtk-doc/html/glib/glib-Hook-Functions.html +1367 -0
  465. data/vendor/local/share/gtk-doc/html/glib/glib-Hostname-Utilities.html +229 -0
  466. data/vendor/local/share/gtk-doc/html/glib/glib-I18N.html +629 -0
  467. data/vendor/local/share/gtk-doc/html/glib/glib-IO-Channels.html +2196 -0
  468. data/vendor/local/share/gtk-doc/html/glib/glib-Key-value-file-parser.html +2556 -0
  469. data/vendor/local/share/gtk-doc/html/glib/glib-Keyed-Data-Lists.html +612 -0
  470. data/vendor/local/share/gtk-doc/html/glib/glib-Lexical-Scanner.html +1451 -0
  471. data/vendor/local/share/gtk-doc/html/glib/glib-Limits-of-Basic-Types.html +389 -0
  472. data/vendor/local/share/gtk-doc/html/glib/glib-Memory-Allocation.html +1029 -0
  473. data/vendor/local/share/gtk-doc/html/glib/glib-Memory-Allocators.html +141 -0
  474. data/vendor/local/share/gtk-doc/html/glib/glib-Memory-Chunks.html +706 -0
  475. data/vendor/local/share/gtk-doc/html/glib/glib-Memory-Slices.html +510 -0
  476. data/vendor/local/share/gtk-doc/html/glib/glib-Message-Logging.html +703 -0
  477. data/vendor/local/share/gtk-doc/html/glib/glib-Miscellaneous-Macros.html +1045 -0
  478. data/vendor/local/share/gtk-doc/html/glib/glib-Miscellaneous-Utility-Functions.html +1523 -0
  479. data/vendor/local/share/gtk-doc/html/glib/glib-N-ary-Trees.html +1466 -0
  480. data/vendor/local/share/gtk-doc/html/glib/glib-Numerical-Definitions.html +204 -0
  481. data/vendor/local/share/gtk-doc/html/glib/glib-Perl-compatible-regular-expressions.html +2648 -0
  482. data/vendor/local/share/gtk-doc/html/glib/glib-Pointer-Arrays.html +752 -0
  483. data/vendor/local/share/gtk-doc/html/glib/glib-Quarks.html +269 -0
  484. data/vendor/local/share/gtk-doc/html/glib/glib-Random-Numbers.html +578 -0
  485. data/vendor/local/share/gtk-doc/html/glib/glib-Relations-and-Tuples.html +483 -0
  486. data/vendor/local/share/gtk-doc/html/glib/glib-Sequences.html +1353 -0
  487. data/vendor/local/share/gtk-doc/html/glib/glib-Shell-related-Utilities.html +238 -0
  488. data/vendor/local/share/gtk-doc/html/glib/glib-Simple-XML-Subset-Parser.html +1283 -0
  489. data/vendor/local/share/gtk-doc/html/glib/glib-Singly-Linked-Lists.html +1212 -0
  490. data/vendor/local/share/gtk-doc/html/glib/glib-Spawning-Processes.html +924 -0
  491. data/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html +466 -0
  492. data/vendor/local/share/gtk-doc/html/glib/glib-String-Chunks.html +301 -0
  493. data/vendor/local/share/gtk-doc/html/glib/glib-String-Utility-Functions.html +2947 -0
  494. data/vendor/local/share/gtk-doc/html/glib/glib-Strings.html +1290 -0
  495. data/vendor/local/share/gtk-doc/html/glib/glib-Testing.html +1719 -0
  496. data/vendor/local/share/gtk-doc/html/glib/glib-The-Main-Event-Loop.html +3379 -0
  497. data/vendor/local/share/gtk-doc/html/glib/glib-Thread-Pools.html +606 -0
  498. data/vendor/local/share/gtk-doc/html/glib/glib-Threads.html +3411 -0
  499. data/vendor/local/share/gtk-doc/html/glib/glib-Timers.html +245 -0
  500. data/vendor/local/share/gtk-doc/html/glib/glib-Trash-Stacks.html +188 -0
  501. data/vendor/local/share/gtk-doc/html/glib/glib-Type-Conversion-Macros.html +263 -0
  502. data/vendor/local/share/gtk-doc/html/glib/glib-URI-Functions.html +314 -0
  503. data/vendor/local/share/gtk-doc/html/glib/glib-Unicode-Manipulation.html +3356 -0
  504. data/vendor/local/share/gtk-doc/html/glib/glib-Version-Information.html +150 -0
  505. data/vendor/local/share/gtk-doc/html/glib/glib-Warnings-and-Assertions.html +438 -0
  506. data/vendor/local/share/gtk-doc/html/glib/glib-Windows-Compatibility-Functions.html +476 -0
  507. data/vendor/local/share/gtk-doc/html/glib/glib-building.html +438 -0
  508. data/vendor/local/share/gtk-doc/html/glib/glib-changes.html +159 -0
  509. data/vendor/local/share/gtk-doc/html/glib/glib-compiling.html +118 -0
  510. data/vendor/local/share/gtk-doc/html/glib/glib-core.html +64 -0
  511. data/vendor/local/share/gtk-doc/html/glib/glib-cross-compiling.html +160 -0
  512. data/vendor/local/share/gtk-doc/html/glib/glib-data-types.html +120 -0
  513. data/vendor/local/share/gtk-doc/html/glib/glib-fundamentals.html +59 -0
  514. data/vendor/local/share/gtk-doc/html/glib/glib-gettextize.html +93 -0
  515. data/vendor/local/share/gtk-doc/html/glib/glib-regex-syntax.html +2395 -0
  516. data/vendor/local/share/gtk-doc/html/glib/glib-resources.html +121 -0
  517. data/vendor/local/share/gtk-doc/html/glib/glib-running.html +302 -0
  518. data/vendor/local/share/gtk-doc/html/glib/glib-utilities.html +112 -0
  519. data/vendor/local/share/gtk-doc/html/glib/glib.devhelp +2084 -0
  520. data/vendor/local/share/gtk-doc/html/glib/glib.devhelp2 +2556 -0
  521. data/vendor/local/share/gtk-doc/html/glib/glib.html +80 -0
  522. data/vendor/local/share/gtk-doc/html/glib/gtester-report.html +72 -0
  523. data/vendor/local/share/gtk-doc/html/glib/gtester.html +131 -0
  524. data/vendor/local/share/gtk-doc/html/glib/gvariant-format-strings.html +1171 -0
  525. data/vendor/local/share/gtk-doc/html/glib/home.png +0 -0
  526. data/vendor/local/share/gtk-doc/html/glib/index.html +336 -0
  527. data/vendor/local/share/gtk-doc/html/glib/index.sgml +2717 -0
  528. data/vendor/local/share/gtk-doc/html/glib/left.png +0 -0
  529. data/vendor/local/share/gtk-doc/html/glib/mainloop-states.gif +0 -0
  530. data/vendor/local/share/gtk-doc/html/glib/right.png +0 -0
  531. data/vendor/local/share/gtk-doc/html/glib/style.css +257 -0
  532. data/vendor/local/share/gtk-doc/html/glib/tools.html +41 -0
  533. data/vendor/local/share/gtk-doc/html/glib/up.png +0 -0
  534. data/vendor/local/share/gtk-doc/html/gobject/GTypeModule.html +710 -0
  535. data/vendor/local/share/gtk-doc/html/gobject/GTypePlugin.html +453 -0
  536. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-10.html +85 -0
  537. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-12.html +55 -0
  538. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-14.html +51 -0
  539. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-18.html +46 -0
  540. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-2.html +38 -0
  541. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-22.html +46 -0
  542. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-24.html +72 -0
  543. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-4.html +178 -0
  544. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-6.html +42 -0
  545. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-8.html +42 -0
  546. data/vendor/local/share/gtk-doc/html/gobject/api-index-deprecated.html +50 -0
  547. data/vendor/local/share/gtk-doc/html/gobject/api-index-full.html +2577 -0
  548. data/vendor/local/share/gtk-doc/html/gobject/ch01s02.html +136 -0
  549. data/vendor/local/share/gtk-doc/html/gobject/ch06s03.html +113 -0
  550. data/vendor/local/share/gtk-doc/html/gobject/chapter-gobject.html +293 -0
  551. data/vendor/local/share/gtk-doc/html/gobject/chapter-gtype.html +263 -0
  552. data/vendor/local/share/gtk-doc/html/gobject/chapter-intro.html +92 -0
  553. data/vendor/local/share/gtk-doc/html/gobject/chapter-signal.html +214 -0
  554. data/vendor/local/share/gtk-doc/html/gobject/glib-genmarshal.html +355 -0
  555. data/vendor/local/share/gtk-doc/html/gobject/glib-mkenums.html +295 -0
  556. data/vendor/local/share/gtk-doc/html/gobject/glue.png +0 -0
  557. data/vendor/local/share/gtk-doc/html/gobject/gobject-Boxed-Types.html +406 -0
  558. data/vendor/local/share/gtk-doc/html/gobject/gobject-Closures.html +2355 -0
  559. data/vendor/local/share/gtk-doc/html/gobject/gobject-Enumeration-and-Flag-Types.html +847 -0
  560. data/vendor/local/share/gtk-doc/html/gobject/gobject-GParamSpec.html +1423 -0
  561. data/vendor/local/share/gtk-doc/html/gobject/gobject-Generic-values.html +776 -0
  562. data/vendor/local/share/gtk-doc/html/gobject/gobject-Signals.html +2741 -0
  563. data/vendor/local/share/gtk-doc/html/gobject/gobject-Standard-Parameter-and-Value-Types.html +5242 -0
  564. data/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html +2609 -0
  565. data/vendor/local/share/gtk-doc/html/gobject/gobject-Type-Information.html +4227 -0
  566. data/vendor/local/share/gtk-doc/html/gobject/gobject-Value-arrays.html +413 -0
  567. data/vendor/local/share/gtk-doc/html/gobject/gobject-Varargs-Value-Collection.html +230 -0
  568. data/vendor/local/share/gtk-doc/html/gobject/gobject-memory.html +234 -0
  569. data/vendor/local/share/gtk-doc/html/gobject/gobject-properties.html +270 -0
  570. data/vendor/local/share/gtk-doc/html/gobject/gobject-query.html +117 -0
  571. data/vendor/local/share/gtk-doc/html/gobject/gobject.devhelp +723 -0
  572. data/vendor/local/share/gtk-doc/html/gobject/gobject.devhelp2 +757 -0
  573. data/vendor/local/share/gtk-doc/html/gobject/gtype-conventions.html +143 -0
  574. data/vendor/local/share/gtk-doc/html/gobject/gtype-instantiable-classed.html +287 -0
  575. data/vendor/local/share/gtk-doc/html/gobject/gtype-non-instantiable-classed.html +316 -0
  576. data/vendor/local/share/gtk-doc/html/gobject/gtype-non-instantiable.html +76 -0
  577. data/vendor/local/share/gtk-doc/html/gobject/home.png +0 -0
  578. data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-chainup.html +100 -0
  579. data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-code.html +86 -0
  580. data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-construction.html +113 -0
  581. data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-destruction.html +122 -0
  582. data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-methods.html +257 -0
  583. data/vendor/local/share/gtk-doc/html/gobject/howto-gobject.html +283 -0
  584. data/vendor/local/share/gtk-doc/html/gobject/howto-interface-implement.html +125 -0
  585. data/vendor/local/share/gtk-doc/html/gobject/howto-interface-properties.html +167 -0
  586. data/vendor/local/share/gtk-doc/html/gobject/howto-interface.html +160 -0
  587. data/vendor/local/share/gtk-doc/html/gobject/howto-signals.html +121 -0
  588. data/vendor/local/share/gtk-doc/html/gobject/index.html +187 -0
  589. data/vendor/local/share/gtk-doc/html/gobject/index.sgml +734 -0
  590. data/vendor/local/share/gtk-doc/html/gobject/left.png +0 -0
  591. data/vendor/local/share/gtk-doc/html/gobject/pr01.html +72 -0
  592. data/vendor/local/share/gtk-doc/html/gobject/pt01.html +80 -0
  593. data/vendor/local/share/gtk-doc/html/gobject/pt02.html +66 -0
  594. data/vendor/local/share/gtk-doc/html/gobject/pt03.html +55 -0
  595. data/vendor/local/share/gtk-doc/html/gobject/right.png +0 -0
  596. data/vendor/local/share/gtk-doc/html/gobject/rn01.html +82 -0
  597. data/vendor/local/share/gtk-doc/html/gobject/rn02.html +47 -0
  598. data/vendor/local/share/gtk-doc/html/gobject/signal.html +377 -0
  599. data/vendor/local/share/gtk-doc/html/gobject/style.css +257 -0
  600. data/vendor/local/share/gtk-doc/html/gobject/tools-ginspector.html +35 -0
  601. data/vendor/local/share/gtk-doc/html/gobject/tools-gob.html +40 -0
  602. data/vendor/local/share/gtk-doc/html/gobject/tools-gtkdoc.html +63 -0
  603. data/vendor/local/share/gtk-doc/html/gobject/tools-refdb.html +55 -0
  604. data/vendor/local/share/gtk-doc/html/gobject/tools-vala.html +43 -0
  605. data/vendor/local/share/gtk-doc/html/gobject/up.png +0 -0
  606. data/vendor/local/share/locale/af/LC_MESSAGES/atk10.mo +0 -0
  607. data/vendor/local/share/locale/af/LC_MESSAGES/glib20.mo +0 -0
  608. data/vendor/local/share/locale/am/LC_MESSAGES/atk10.mo +0 -0
  609. data/vendor/local/share/locale/am/LC_MESSAGES/glib20.mo +0 -0
  610. data/vendor/local/share/locale/ar/LC_MESSAGES/atk10.mo +0 -0
  611. data/vendor/local/share/locale/ar/LC_MESSAGES/glib20.mo +0 -0
  612. data/vendor/local/share/locale/as/LC_MESSAGES/atk10.mo +0 -0
  613. data/vendor/local/share/locale/as/LC_MESSAGES/glib20.mo +0 -0
  614. data/vendor/local/share/locale/ast/LC_MESSAGES/atk10.mo +0 -0
  615. data/vendor/local/share/locale/ast/LC_MESSAGES/glib20.mo +0 -0
  616. data/vendor/local/share/locale/az/LC_MESSAGES/atk10.mo +0 -0
  617. data/vendor/local/share/locale/az/LC_MESSAGES/glib20.mo +0 -0
  618. data/vendor/local/share/locale/be/LC_MESSAGES/atk10.mo +0 -0
  619. data/vendor/local/share/locale/be/LC_MESSAGES/gettext-runtime.mo +0 -0
  620. data/vendor/local/share/locale/be/LC_MESSAGES/glib20.mo +0 -0
  621. data/vendor/local/share/locale/be@latin/LC_MESSAGES/atk10.mo +0 -0
  622. data/vendor/local/share/locale/be@latin/LC_MESSAGES/glib20.mo +0 -0
  623. data/vendor/local/share/locale/bg/LC_MESSAGES/atk10.mo +0 -0
  624. data/vendor/local/share/locale/bg/LC_MESSAGES/gettext-runtime.mo +0 -0
  625. data/vendor/local/share/locale/bg/LC_MESSAGES/glib20.mo +0 -0
  626. data/vendor/local/share/locale/bn/LC_MESSAGES/atk10.mo +0 -0
  627. data/vendor/local/share/locale/bn/LC_MESSAGES/glib20.mo +0 -0
  628. data/vendor/local/share/locale/bn_IN/LC_MESSAGES/atk10.mo +0 -0
  629. data/vendor/local/share/locale/bn_IN/LC_MESSAGES/glib20.mo +0 -0
  630. data/vendor/local/share/locale/bs/LC_MESSAGES/atk10.mo +0 -0
  631. data/vendor/local/share/locale/bs/LC_MESSAGES/glib20.mo +0 -0
  632. data/vendor/local/share/locale/ca/LC_MESSAGES/atk10.mo +0 -0
  633. data/vendor/local/share/locale/ca/LC_MESSAGES/gettext-runtime.mo +0 -0
  634. data/vendor/local/share/locale/ca/LC_MESSAGES/glib20.mo +0 -0
  635. data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/atk10.mo +0 -0
  636. data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/glib20.mo +0 -0
  637. data/vendor/local/share/locale/cs/LC_MESSAGES/atk10.mo +0 -0
  638. data/vendor/local/share/locale/cs/LC_MESSAGES/gettext-runtime.mo +0 -0
  639. data/vendor/local/share/locale/cs/LC_MESSAGES/glib20.mo +0 -0
  640. data/vendor/local/share/locale/cy/LC_MESSAGES/atk10.mo +0 -0
  641. data/vendor/local/share/locale/cy/LC_MESSAGES/glib20.mo +0 -0
  642. data/vendor/local/share/locale/da/LC_MESSAGES/atk10.mo +0 -0
  643. data/vendor/local/share/locale/da/LC_MESSAGES/gettext-runtime.mo +0 -0
  644. data/vendor/local/share/locale/da/LC_MESSAGES/glib20.mo +0 -0
  645. data/vendor/local/share/locale/de/LC_MESSAGES/atk10.mo +0 -0
  646. data/vendor/local/share/locale/de/LC_MESSAGES/gettext-runtime.mo +0 -0
  647. data/vendor/local/share/locale/de/LC_MESSAGES/glib20.mo +0 -0
  648. data/vendor/local/share/locale/dz/LC_MESSAGES/atk10.mo +0 -0
  649. data/vendor/local/share/locale/dz/LC_MESSAGES/glib20.mo +0 -0
  650. data/vendor/local/share/locale/el/LC_MESSAGES/atk10.mo +0 -0
  651. data/vendor/local/share/locale/el/LC_MESSAGES/gettext-runtime.mo +0 -0
  652. data/vendor/local/share/locale/el/LC_MESSAGES/glib20.mo +0 -0
  653. data/vendor/local/share/locale/en@boldquot/LC_MESSAGES/gettext-runtime.mo +0 -0
  654. data/vendor/local/share/locale/en@quot/LC_MESSAGES/gettext-runtime.mo +0 -0
  655. data/vendor/local/share/locale/en@shaw/LC_MESSAGES/atk10.mo +0 -0
  656. data/vendor/local/share/locale/en@shaw/LC_MESSAGES/glib20.mo +0 -0
  657. data/vendor/local/share/locale/en_CA/LC_MESSAGES/atk10.mo +0 -0
  658. data/vendor/local/share/locale/en_CA/LC_MESSAGES/glib20.mo +0 -0
  659. data/vendor/local/share/locale/en_GB/LC_MESSAGES/atk10.mo +0 -0
  660. data/vendor/local/share/locale/en_GB/LC_MESSAGES/glib20.mo +0 -0
  661. data/vendor/local/share/locale/eo/LC_MESSAGES/atk10.mo +0 -0
  662. data/vendor/local/share/locale/eo/LC_MESSAGES/gettext-runtime.mo +0 -0
  663. data/vendor/local/share/locale/eo/LC_MESSAGES/glib20.mo +0 -0
  664. data/vendor/local/share/locale/es/LC_MESSAGES/atk10.mo +0 -0
  665. data/vendor/local/share/locale/es/LC_MESSAGES/gettext-runtime.mo +0 -0
  666. data/vendor/local/share/locale/es/LC_MESSAGES/glib20.mo +0 -0
  667. data/vendor/local/share/locale/et/LC_MESSAGES/atk10.mo +0 -0
  668. data/vendor/local/share/locale/et/LC_MESSAGES/gettext-runtime.mo +0 -0
  669. data/vendor/local/share/locale/et/LC_MESSAGES/glib20.mo +0 -0
  670. data/vendor/local/share/locale/eu/LC_MESSAGES/atk10.mo +0 -0
  671. data/vendor/local/share/locale/eu/LC_MESSAGES/glib20.mo +0 -0
  672. data/vendor/local/share/locale/fa/LC_MESSAGES/atk10.mo +0 -0
  673. data/vendor/local/share/locale/fa/LC_MESSAGES/glib20.mo +0 -0
  674. data/vendor/local/share/locale/fi/LC_MESSAGES/atk10.mo +0 -0
  675. data/vendor/local/share/locale/fi/LC_MESSAGES/gettext-runtime.mo +0 -0
  676. data/vendor/local/share/locale/fi/LC_MESSAGES/glib20.mo +0 -0
  677. data/vendor/local/share/locale/fr/LC_MESSAGES/atk10.mo +0 -0
  678. data/vendor/local/share/locale/fr/LC_MESSAGES/gettext-runtime.mo +0 -0
  679. data/vendor/local/share/locale/fr/LC_MESSAGES/glib20.mo +0 -0
  680. data/vendor/local/share/locale/ga/LC_MESSAGES/atk10.mo +0 -0
  681. data/vendor/local/share/locale/ga/LC_MESSAGES/gettext-runtime.mo +0 -0
  682. data/vendor/local/share/locale/ga/LC_MESSAGES/glib20.mo +0 -0
  683. data/vendor/local/share/locale/gl/LC_MESSAGES/atk10.mo +0 -0
  684. data/vendor/local/share/locale/gl/LC_MESSAGES/gettext-runtime.mo +0 -0
  685. data/vendor/local/share/locale/gl/LC_MESSAGES/glib20.mo +0 -0
  686. data/vendor/local/share/locale/gu/LC_MESSAGES/atk10.mo +0 -0
  687. data/vendor/local/share/locale/gu/LC_MESSAGES/glib20.mo +0 -0
  688. data/vendor/local/share/locale/he/LC_MESSAGES/atk10.mo +0 -0
  689. data/vendor/local/share/locale/he/LC_MESSAGES/glib20.mo +0 -0
  690. data/vendor/local/share/locale/hi/LC_MESSAGES/atk10.mo +0 -0
  691. data/vendor/local/share/locale/hi/LC_MESSAGES/glib20.mo +0 -0
  692. data/vendor/local/share/locale/hr/LC_MESSAGES/atk10.mo +0 -0
  693. data/vendor/local/share/locale/hr/LC_MESSAGES/glib20.mo +0 -0
  694. data/vendor/local/share/locale/hu/LC_MESSAGES/atk10.mo +0 -0
  695. data/vendor/local/share/locale/hu/LC_MESSAGES/glib20.mo +0 -0
  696. data/vendor/local/share/locale/hy/LC_MESSAGES/glib20.mo +0 -0
  697. data/vendor/local/share/locale/id/LC_MESSAGES/atk10.mo +0 -0
  698. data/vendor/local/share/locale/id/LC_MESSAGES/gettext-runtime.mo +0 -0
  699. data/vendor/local/share/locale/id/LC_MESSAGES/glib20.mo +0 -0
  700. data/vendor/local/share/locale/is/LC_MESSAGES/atk10.mo +0 -0
  701. data/vendor/local/share/locale/is/LC_MESSAGES/glib20.mo +0 -0
  702. data/vendor/local/share/locale/it/LC_MESSAGES/atk10.mo +0 -0
  703. data/vendor/local/share/locale/it/LC_MESSAGES/gettext-runtime.mo +0 -0
  704. data/vendor/local/share/locale/it/LC_MESSAGES/glib20.mo +0 -0
  705. data/vendor/local/share/locale/ja/LC_MESSAGES/atk10.mo +0 -0
  706. data/vendor/local/share/locale/ja/LC_MESSAGES/gettext-runtime.mo +0 -0
  707. data/vendor/local/share/locale/ja/LC_MESSAGES/glib20.mo +0 -0
  708. data/vendor/local/share/locale/ka/LC_MESSAGES/atk10.mo +0 -0
  709. data/vendor/local/share/locale/ka/LC_MESSAGES/glib20.mo +0 -0
  710. data/vendor/local/share/locale/kn/LC_MESSAGES/atk10.mo +0 -0
  711. data/vendor/local/share/locale/kn/LC_MESSAGES/glib20.mo +0 -0
  712. data/vendor/local/share/locale/ko/LC_MESSAGES/atk10.mo +0 -0
  713. data/vendor/local/share/locale/ko/LC_MESSAGES/gettext-runtime.mo +0 -0
  714. data/vendor/local/share/locale/ko/LC_MESSAGES/glib20.mo +0 -0
  715. data/vendor/local/share/locale/ku/LC_MESSAGES/atk10.mo +0 -0
  716. data/vendor/local/share/locale/ku/LC_MESSAGES/glib20.mo +0 -0
  717. data/vendor/local/share/locale/li/LC_MESSAGES/atk10.mo +0 -0
  718. data/vendor/local/share/locale/locale.alias +77 -0
  719. data/vendor/local/share/locale/lt/LC_MESSAGES/atk10.mo +0 -0
  720. data/vendor/local/share/locale/lt/LC_MESSAGES/glib20.mo +0 -0
  721. data/vendor/local/share/locale/lv/LC_MESSAGES/atk10.mo +0 -0
  722. data/vendor/local/share/locale/lv/LC_MESSAGES/glib20.mo +0 -0
  723. data/vendor/local/share/locale/mai/LC_MESSAGES/atk10.mo +0 -0
  724. data/vendor/local/share/locale/mai/LC_MESSAGES/glib20.mo +0 -0
  725. data/vendor/local/share/locale/mg/LC_MESSAGES/glib20.mo +0 -0
  726. data/vendor/local/share/locale/mk/LC_MESSAGES/atk10.mo +0 -0
  727. data/vendor/local/share/locale/mk/LC_MESSAGES/glib20.mo +0 -0
  728. data/vendor/local/share/locale/ml/LC_MESSAGES/atk10.mo +0 -0
  729. data/vendor/local/share/locale/ml/LC_MESSAGES/glib20.mo +0 -0
  730. data/vendor/local/share/locale/mn/LC_MESSAGES/atk10.mo +0 -0
  731. data/vendor/local/share/locale/mn/LC_MESSAGES/glib20.mo +0 -0
  732. data/vendor/local/share/locale/mr/LC_MESSAGES/atk10.mo +0 -0
  733. data/vendor/local/share/locale/mr/LC_MESSAGES/glib20.mo +0 -0
  734. data/vendor/local/share/locale/ms/LC_MESSAGES/atk10.mo +0 -0
  735. data/vendor/local/share/locale/ms/LC_MESSAGES/glib20.mo +0 -0
  736. data/vendor/local/share/locale/nb/LC_MESSAGES/atk10.mo +0 -0
  737. data/vendor/local/share/locale/nb/LC_MESSAGES/gettext-runtime.mo +0 -0
  738. data/vendor/local/share/locale/nb/LC_MESSAGES/glib20.mo +0 -0
  739. data/vendor/local/share/locale/nds/LC_MESSAGES/glib20.mo +0 -0
  740. data/vendor/local/share/locale/ne/LC_MESSAGES/atk10.mo +0 -0
  741. data/vendor/local/share/locale/ne/LC_MESSAGES/glib20.mo +0 -0
  742. data/vendor/local/share/locale/nl/LC_MESSAGES/atk10.mo +0 -0
  743. data/vendor/local/share/locale/nl/LC_MESSAGES/gettext-runtime.mo +0 -0
  744. data/vendor/local/share/locale/nl/LC_MESSAGES/glib20.mo +0 -0
  745. data/vendor/local/share/locale/nn/LC_MESSAGES/atk10.mo +0 -0
  746. data/vendor/local/share/locale/nn/LC_MESSAGES/gettext-runtime.mo +0 -0
  747. data/vendor/local/share/locale/nn/LC_MESSAGES/glib20.mo +0 -0
  748. data/vendor/local/share/locale/oc/LC_MESSAGES/atk10.mo +0 -0
  749. data/vendor/local/share/locale/oc/LC_MESSAGES/glib20.mo +0 -0
  750. data/vendor/local/share/locale/or/LC_MESSAGES/atk10.mo +0 -0
  751. data/vendor/local/share/locale/or/LC_MESSAGES/glib20.mo +0 -0
  752. data/vendor/local/share/locale/pa/LC_MESSAGES/atk10.mo +0 -0
  753. data/vendor/local/share/locale/pa/LC_MESSAGES/glib20.mo +0 -0
  754. data/vendor/local/share/locale/pl/LC_MESSAGES/atk10.mo +0 -0
  755. data/vendor/local/share/locale/pl/LC_MESSAGES/gettext-runtime.mo +0 -0
  756. data/vendor/local/share/locale/pl/LC_MESSAGES/glib20.mo +0 -0
  757. data/vendor/local/share/locale/ps/LC_MESSAGES/atk10.mo +0 -0
  758. data/vendor/local/share/locale/ps/LC_MESSAGES/glib20.mo +0 -0
  759. data/vendor/local/share/locale/pt/LC_MESSAGES/atk10.mo +0 -0
  760. data/vendor/local/share/locale/pt/LC_MESSAGES/gettext-runtime.mo +0 -0
  761. data/vendor/local/share/locale/pt/LC_MESSAGES/glib20.mo +0 -0
  762. data/vendor/local/share/locale/pt_BR/LC_MESSAGES/atk10.mo +0 -0
  763. data/vendor/local/share/locale/pt_BR/LC_MESSAGES/gettext-runtime.mo +0 -0
  764. data/vendor/local/share/locale/pt_BR/LC_MESSAGES/glib20.mo +0 -0
  765. data/vendor/local/share/locale/ro/LC_MESSAGES/atk10.mo +0 -0
  766. data/vendor/local/share/locale/ro/LC_MESSAGES/gettext-runtime.mo +0 -0
  767. data/vendor/local/share/locale/ro/LC_MESSAGES/glib20.mo +0 -0
  768. data/vendor/local/share/locale/ru/LC_MESSAGES/atk10.mo +0 -0
  769. data/vendor/local/share/locale/ru/LC_MESSAGES/gettext-runtime.mo +0 -0
  770. data/vendor/local/share/locale/ru/LC_MESSAGES/glib20.mo +0 -0
  771. data/vendor/local/share/locale/rw/LC_MESSAGES/atk10.mo +0 -0
  772. data/vendor/local/share/locale/rw/LC_MESSAGES/glib20.mo +0 -0
  773. data/vendor/local/share/locale/si/LC_MESSAGES/atk10.mo +0 -0
  774. data/vendor/local/share/locale/si/LC_MESSAGES/glib20.mo +0 -0
  775. data/vendor/local/share/locale/sk/LC_MESSAGES/atk10.mo +0 -0
  776. data/vendor/local/share/locale/sk/LC_MESSAGES/gettext-runtime.mo +0 -0
  777. data/vendor/local/share/locale/sk/LC_MESSAGES/glib20.mo +0 -0
  778. data/vendor/local/share/locale/sl/LC_MESSAGES/atk10.mo +0 -0
  779. data/vendor/local/share/locale/sl/LC_MESSAGES/gettext-runtime.mo +0 -0
  780. data/vendor/local/share/locale/sl/LC_MESSAGES/glib20.mo +0 -0
  781. data/vendor/local/share/locale/sq/LC_MESSAGES/atk10.mo +0 -0
  782. data/vendor/local/share/locale/sq/LC_MESSAGES/glib20.mo +0 -0
  783. data/vendor/local/share/locale/sr/LC_MESSAGES/atk10.mo +0 -0
  784. data/vendor/local/share/locale/sr/LC_MESSAGES/gettext-runtime.mo +0 -0
  785. data/vendor/local/share/locale/sr/LC_MESSAGES/glib20.mo +0 -0
  786. data/vendor/local/share/locale/sr@ije/LC_MESSAGES/atk10.mo +0 -0
  787. data/vendor/local/share/locale/sr@ije/LC_MESSAGES/glib20.mo +0 -0
  788. data/vendor/local/share/locale/sr@latin/LC_MESSAGES/atk10.mo +0 -0
  789. data/vendor/local/share/locale/sr@latin/LC_MESSAGES/glib20.mo +0 -0
  790. data/vendor/local/share/locale/sv/LC_MESSAGES/atk10.mo +0 -0
  791. data/vendor/local/share/locale/sv/LC_MESSAGES/gettext-runtime.mo +0 -0
  792. data/vendor/local/share/locale/sv/LC_MESSAGES/glib20.mo +0 -0
  793. data/vendor/local/share/locale/ta/LC_MESSAGES/atk10.mo +0 -0
  794. data/vendor/local/share/locale/ta/LC_MESSAGES/glib20.mo +0 -0
  795. data/vendor/local/share/locale/te/LC_MESSAGES/atk10.mo +0 -0
  796. data/vendor/local/share/locale/te/LC_MESSAGES/glib20.mo +0 -0
  797. data/vendor/local/share/locale/th/LC_MESSAGES/atk10.mo +0 -0
  798. data/vendor/local/share/locale/th/LC_MESSAGES/glib20.mo +0 -0
  799. data/vendor/local/share/locale/tk/LC_MESSAGES/atk10.mo +0 -0
  800. data/vendor/local/share/locale/tl/LC_MESSAGES/glib20.mo +0 -0
  801. data/vendor/local/share/locale/tr/LC_MESSAGES/atk10.mo +0 -0
  802. data/vendor/local/share/locale/tr/LC_MESSAGES/gettext-runtime.mo +0 -0
  803. data/vendor/local/share/locale/tr/LC_MESSAGES/glib20.mo +0 -0
  804. data/vendor/local/share/locale/tt/LC_MESSAGES/atk10.mo +0 -0
  805. data/vendor/local/share/locale/tt/LC_MESSAGES/glib20.mo +0 -0
  806. data/vendor/local/share/locale/ug/LC_MESSAGES/atk10.mo +0 -0
  807. data/vendor/local/share/locale/uk/LC_MESSAGES/atk10.mo +0 -0
  808. data/vendor/local/share/locale/uk/LC_MESSAGES/gettext-runtime.mo +0 -0
  809. data/vendor/local/share/locale/uk/LC_MESSAGES/glib20.mo +0 -0
  810. data/vendor/local/share/locale/vi/LC_MESSAGES/atk10.mo +0 -0
  811. data/vendor/local/share/locale/vi/LC_MESSAGES/gettext-runtime.mo +0 -0
  812. data/vendor/local/share/locale/vi/LC_MESSAGES/glib20.mo +0 -0
  813. data/vendor/local/share/locale/wa/LC_MESSAGES/atk10.mo +0 -0
  814. data/vendor/local/share/locale/wa/LC_MESSAGES/glib20.mo +0 -0
  815. data/vendor/local/share/locale/xh/LC_MESSAGES/atk10.mo +0 -0
  816. data/vendor/local/share/locale/xh/LC_MESSAGES/glib20.mo +0 -0
  817. data/vendor/local/share/locale/yi/LC_MESSAGES/atk10.mo +0 -0
  818. data/vendor/local/share/locale/yi/LC_MESSAGES/glib20.mo +0 -0
  819. data/vendor/local/share/locale/zh_CN/LC_MESSAGES/atk10.mo +0 -0
  820. data/vendor/local/share/locale/zh_CN/LC_MESSAGES/gettext-runtime.mo +0 -0
  821. data/vendor/local/share/locale/zh_CN/LC_MESSAGES/glib20.mo +0 -0
  822. data/vendor/local/share/locale/zh_HK/LC_MESSAGES/atk10.mo +0 -0
  823. data/vendor/local/share/locale/zh_HK/LC_MESSAGES/gettext-runtime.mo +0 -0
  824. data/vendor/local/share/locale/zh_HK/LC_MESSAGES/glib20.mo +0 -0
  825. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/atk10.mo +0 -0
  826. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/gettext-runtime.mo +0 -0
  827. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/glib20.mo +0 -0
  828. data/vendor/local/share/man/man1/envsubst.1 +54 -0
  829. data/vendor/local/share/man/man1/gettext.1 +69 -0
  830. data/vendor/local/share/man/man1/glib-genmarshal.1 +307 -0
  831. data/vendor/local/share/man/man1/glib-mkenums.1 +234 -0
  832. data/vendor/local/share/man/man1/gobject-query.1 +83 -0
  833. data/vendor/local/share/man/man1/ngettext.1 +68 -0
  834. data/vendor/local/share/man/man3/bind_textdomain_codeset.3 +72 -0
  835. data/vendor/local/share/man/man3/bindtextdomain.3 +69 -0
  836. data/vendor/local/share/man/man3/dcgettext.3 +1 -0
  837. data/vendor/local/share/man/man3/dcngettext.3 +1 -0
  838. data/vendor/local/share/man/man3/dgettext.3 +1 -0
  839. data/vendor/local/share/man/man3/dngettext.3 +1 -0
  840. data/vendor/local/share/man/man3/gettext.3 +99 -0
  841. data/vendor/local/share/man/man3/ngettext.3 +60 -0
  842. data/vendor/local/share/man/man3/textdomain.3 +57 -0
  843. data/vendor/local/src/tml/packaging/atk_1.30.0-2_win32.log +739 -0
  844. data/vendor/local/src/tml/packaging/atk_1.30.0-2_win32.sh +51 -0
  845. data/vendor/local/src/tml/packaging/gettext_0.18.1.1-2_win32.log +10423 -0
  846. data/vendor/local/src/tml/packaging/gettext_0.18.1.1-2_win32.sh +457 -0
  847. data/vendor/local/src/tml/packaging/glib_2.24.2-2_win32.log +2602 -0
  848. data/vendor/local/src/tml/packaging/glib_2.24.2-2_win32.sh +290 -0
  849. metadata +929 -0
@@ -0,0 +1,2602 @@
1
+ ++ dos2unix glib/win_iconv.c
2
+ sh: dos2unix: command not found
3
+ ++ patch --verbose --fuzz=0 -p1
4
+ Hmm... Looks like a unified diff to me...
5
+ The text leading up to this was:
6
+ --------------------------
7
+ |commit 86156c28b3b5a6cc2a3e22def530c355e9606504
8
+ |Author: Tor Lillqvist <tml@iki.fi>
9
+ |Date: Thu Sep 2 22:55:43 2010 +0300
10
+ |
11
+ | Reduce DLL hijack risk on Windows
12
+ |
13
+ | Don't call LoadLibrary() on shell32.dll or kernel32.dll. kernel32.dll
14
+ | is always loaded. Shell32.dll is also already loaded as glib links to
15
+ | functions in it. So just call GetModuleHandle() on them.
16
+ |
17
+ | For mlang.dll in win_iconv.c and winhttp.dll in gwinhttpvfs.c, always
18
+ | try loading them from a complete path, from the Windows system
19
+ | directory.
20
+ |
21
+ | Use the "tool help" API to enumerate modules in gmodule-win32.c. It is
22
+ | present in all Windows versions since Windows 2000, which is all we
23
+ | support anyway. Thus no need to look that API up dynamically. Just
24
+ | link to it normally. We can bin the fallback code that attempts to use
25
+ | the psapi API.
26
+ |
27
+ |diff --git a/gio/win32/gwinhttpvfs.c b/gio/win32/gwinhttpvfs.c
28
+ |index 494f53f..1e40324 100644
29
+ |--- a/gio/win32/gwinhttpvfs.c
30
+ |+++ b/gio/win32/gwinhttpvfs.c
31
+ --------------------------
32
+ Patching file gio/win32/gwinhttpvfs.c using Plan A...
33
+ Hunk #1 succeeded at 42.
34
+ Hmm... The next patch looks like a unified diff to me...
35
+ The text leading up to this was:
36
+ --------------------------
37
+ |diff --git a/glib/gutils.c b/glib/gutils.c
38
+ |index 8698746..b89351b 100644
39
+ |--- a/glib/gutils.c
40
+ |+++ b/glib/gutils.c
41
+ --------------------------
42
+ Patching file glib/gutils.c using Plan A...
43
+ Hunk #1 succeeded at 2262.
44
+ Hunk #2 succeeded at 2596.
45
+ Hmm... The next patch looks like a unified diff to me...
46
+ The text leading up to this was:
47
+ --------------------------
48
+ |diff --git a/glib/win_iconv.c b/glib/win_iconv.c
49
+ |index ea19240..6d726d7 100644
50
+ |--- a/glib/win_iconv.c
51
+ |+++ b/glib/win_iconv.c
52
+ --------------------------
53
+ Patching file glib/win_iconv.c using Plan A...
54
+ Hunk #1 FAILED at 706.
55
+ 1 out of 1 hunk FAILED -- saving rejects to file glib/win_iconv.c.rej
56
+ Hmm... The next patch looks like a unified diff to me...
57
+ The text leading up to this was:
58
+ --------------------------
59
+ |diff --git a/gmodule/gmodule-win32.c b/gmodule/gmodule-win32.c
60
+ |index 98d3fb9..439fb5d 100644
61
+ |--- a/gmodule/gmodule-win32.c
62
+ |+++ b/gmodule/gmodule-win32.c
63
+ --------------------------
64
+ Patching file gmodule/gmodule-win32.c using Plan A...
65
+ Hunk #1 succeeded at 110.
66
+ Hunk #2 succeeded at 134.
67
+ done
68
+ +++ latest --arch=win32 gettext-runtime gettext-tools glib pkg-config
69
+ ++ DEPS='gettext-runtime-0.18.1.1-1 gettext-tools-0.18.1.1-1 glib-2.24.2-1 pkg-config-0.23-3'
70
+ +++ latest --arch=win32 proxy-libintl
71
+ ++ PROXY_LIBINTL=proxy-libintl-20100902
72
+ +++ latest --arch=win32 zlib
73
+ ++ ZLIB=zlib-1.2.5-2
74
+ ++ PKG_CONFIG_PATH=/dummy
75
+ ++ for D in '$DEPS'
76
+ ++ PATH='/devel/dist/win32/gettext-runtime-0.18.1.1-1/bin:/opt/MSVS6/VC98/Bin:/opt/MSVS6/Common/MSDev98/Bin:/opt/MSVS6/Common/Tools:/opt/misc/bin:/opt/gnu/bin:/opt/mingw/bin:/opt/svn/bin:/opt/local/bin:/c/Windows/Microsoft.NET/Framework/v3.5:/c/Windows/Microsoft.NET/Framework/v2.0.50727:/opt/xemacs/XEmacs-21.4.22/i586-pc-win32:/bin:/c/Windows/system32:/c/Windows:/c/Windows/System32/Wbem:/c/Windows/System32/WindowsPowerShell/v1.0/:/c/Program Files (x86)/QuickTime/QTSystem/'
77
+ ++ '[' -d /devel/dist/win32/gettext-runtime-0.18.1.1-1/lib/pkgconfig ']'
78
+ ++ for D in '$DEPS'
79
+ ++ PATH='/devel/dist/win32/gettext-tools-0.18.1.1-1/bin:/devel/dist/win32/gettext-runtime-0.18.1.1-1/bin:/opt/MSVS6/VC98/Bin:/opt/MSVS6/Common/MSDev98/Bin:/opt/MSVS6/Common/Tools:/opt/misc/bin:/opt/gnu/bin:/opt/mingw/bin:/opt/svn/bin:/opt/local/bin:/c/Windows/Microsoft.NET/Framework/v3.5:/c/Windows/Microsoft.NET/Framework/v2.0.50727:/opt/xemacs/XEmacs-21.4.22/i586-pc-win32:/bin:/c/Windows/system32:/c/Windows:/c/Windows/System32/Wbem:/c/Windows/System32/WindowsPowerShell/v1.0/:/c/Program Files (x86)/QuickTime/QTSystem/'
80
+ ++ '[' -d /devel/dist/win32/gettext-tools-0.18.1.1-1/lib/pkgconfig ']'
81
+ ++ for D in '$DEPS'
82
+ ++ PATH='/devel/dist/win32/glib-2.24.2-1/bin:/devel/dist/win32/gettext-tools-0.18.1.1-1/bin:/devel/dist/win32/gettext-runtime-0.18.1.1-1/bin:/opt/MSVS6/VC98/Bin:/opt/MSVS6/Common/MSDev98/Bin:/opt/MSVS6/Common/Tools:/opt/misc/bin:/opt/gnu/bin:/opt/mingw/bin:/opt/svn/bin:/opt/local/bin:/c/Windows/Microsoft.NET/Framework/v3.5:/c/Windows/Microsoft.NET/Framework/v2.0.50727:/opt/xemacs/XEmacs-21.4.22/i586-pc-win32:/bin:/c/Windows/system32:/c/Windows:/c/Windows/System32/Wbem:/c/Windows/System32/WindowsPowerShell/v1.0/:/c/Program Files (x86)/QuickTime/QTSystem/'
83
+ ++ '[' -d /devel/dist/win32/glib-2.24.2-1/lib/pkgconfig ']'
84
+ ++ PKG_CONFIG_PATH=/devel/dist/win32/glib-2.24.2-1/lib/pkgconfig:/dummy
85
+ ++ for D in '$DEPS'
86
+ ++ PATH='/devel/dist/win32/pkg-config-0.23-3/bin:/devel/dist/win32/glib-2.24.2-1/bin:/devel/dist/win32/gettext-tools-0.18.1.1-1/bin:/devel/dist/win32/gettext-runtime-0.18.1.1-1/bin:/opt/MSVS6/VC98/Bin:/opt/MSVS6/Common/MSDev98/Bin:/opt/MSVS6/Common/Tools:/opt/misc/bin:/opt/gnu/bin:/opt/mingw/bin:/opt/svn/bin:/opt/local/bin:/c/Windows/Microsoft.NET/Framework/v3.5:/c/Windows/Microsoft.NET/Framework/v2.0.50727:/opt/xemacs/XEmacs-21.4.22/i586-pc-win32:/bin:/c/Windows/system32:/c/Windows:/c/Windows/System32/Wbem:/c/Windows/System32/WindowsPowerShell/v1.0/:/c/Program Files (x86)/QuickTime/QTSystem/'
87
+ ++ '[' -d /devel/dist/win32/pkg-config-0.23-3/lib/pkgconfig ']'
88
+ ++ lt_cv_deplibs_check_method=pass_all
89
+ ++ CC='gcc -mtune=pentium3 -mthreads'
90
+ ++ CPPFLAGS='-I/devel/dist/win32/proxy-libintl-20100902/include -I/devel/dist/win32/zlib-1.2.5-2/include'
91
+ ++ LDFLAGS='-L/devel/dist/win32/proxy-libintl-20100902/lib -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -L/devel/dist/win32/zlib-1.2.5-2/lib'
92
+ ++ CFLAGS=-O2
93
+ ++ ./configure --enable-silent-rules --disable-gtk-doc --prefix=c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0
94
+ checking for a BSD-compatible install... /opt/local/bin/install -c
95
+ checking whether build environment is sane... yes
96
+ checking for a thread-safe mkdir -p... /bin/mkdir -p
97
+ checking for gawk... gawk
98
+ checking whether make sets $(MAKE)... yes
99
+ checking whether to enable maintainer-specific portions of Makefiles... no
100
+ checking build system type... i686-pc-mingw32
101
+ checking host system type... i686-pc-mingw32
102
+ checking for the BeOS... no
103
+ checking for Win32... yes
104
+ checking for Mac OS X Carbon support... checking for style of include used by make... GNU
105
+ checking for gcc... gcc -mtune=pentium3 -mthreads
106
+ checking whether the C compiler works... yes
107
+ checking for C compiler default output file name... a.exe
108
+ checking for suffix of executables... .exe
109
+ checking whether we are cross compiling... no
110
+ checking for suffix of object files... o
111
+ checking whether we are using the GNU C compiler... yes
112
+ checking whether gcc -mtune=pentium3 -mthreads accepts -g... yes
113
+ checking for gcc -mtune=pentium3 -mthreads option to accept ISO C89... none needed
114
+ checking dependency style of gcc -mtune=pentium3 -mthreads... gcc3
115
+ checking how to run the C preprocessor... gcc -mtune=pentium3 -mthreads -E
116
+ no
117
+ checking for windres... windres
118
+ checking for nm... nm
119
+ checking for ranlib... ranlib
120
+ checking for lib.exe... yes
121
+ checking whether to enable garbage collector friendliness... no
122
+ checking whether to disable memory pools... no
123
+ ./configure: line 5276: readlink: command not found
124
+ checking for gcc... (cached) gcc -mtune=pentium3 -mthreads
125
+ checking whether we are using the GNU C compiler... (cached) yes
126
+ checking whether gcc -mtune=pentium3 -mthreads accepts -g... (cached) yes
127
+ checking for gcc -mtune=pentium3 -mthreads option to accept ISO C89... (cached) none needed
128
+ checking dependency style of gcc -mtune=pentium3 -mthreads... (cached) gcc3
129
+ checking how to run the C preprocessor... gcc -mtune=pentium3 -mthreads -E
130
+ checking for c++... c++
131
+ checking whether we are using the GNU C++ compiler... yes
132
+ checking whether c++ accepts -g... yes
133
+ checking dependency style of c++... gcc3
134
+ checking for gcc... (cached) gcc -mtune=pentium3 -mthreads
135
+ checking whether we are using the GNU C compiler... (cached) yes
136
+ checking whether gcc -mtune=pentium3 -mthreads accepts -g... (cached) yes
137
+ checking for gcc -mtune=pentium3 -mthreads option to accept ISO C89... (cached) none needed
138
+ checking dependency style of gcc -mtune=pentium3 -mthreads... (cached) gcc3
139
+ checking whether gcc -mtune=pentium3 -mthreads and cc understand -c and -o together... yes
140
+ checking for special C compiler options needed for large files... no
141
+ checking for _FILE_OFFSET_BITS value needed for large files... unknown
142
+ checking for _LARGE_FILES value needed for large files... unknown
143
+ checking for pkg-config... /devel/dist/win32/pkg-config-0.23-3/bin/pkg-config
144
+ checking how to get MSVC-compatible struct packing... -mms-bitfields
145
+ checking for gawk... (cached) gawk
146
+ checking for perl5... no
147
+ checking for perl... perl
148
+ checking for indent... no
149
+ checking for perl... /bin/perl
150
+ checking for a Python interpreter with version >= 2.4... none
151
+ checking for grep that handles long lines and -e... /bin/grep
152
+ checking for egrep... /bin/grep -E
153
+ checking whether we are using the GNU C Library 2.1 or newer... no
154
+ checking Whether to cache iconv descriptors... yes
155
+ checking for ANSI C header files... yes
156
+ checking for sys/types.h... yes
157
+ checking for sys/stat.h... yes
158
+ checking for stdlib.h... yes
159
+ checking for string.h... yes
160
+ checking for memory.h... yes
161
+ checking for strings.h... yes
162
+ checking for inttypes.h... yes
163
+ checking for stdint.h... yes
164
+ checking for unistd.h... yes
165
+ checking for inflate in -lz... yes
166
+ checking zlib.h usability... yes
167
+ checking zlib.h presence... yes
168
+ checking for zlib.h... yes
169
+ checking locale.h usability... yes
170
+ checking locale.h presence... yes
171
+ checking for locale.h... yes
172
+ checking for LC_MESSAGES... no
173
+ checking libintl.h usability... yes
174
+ checking libintl.h presence... yes
175
+ checking for libintl.h... yes
176
+ checking for ngettext in libc... no
177
+ checking for bindtextdomain in -lintl... yes
178
+ checking for ngettext in -lintl... yes
179
+ checking for dgettext in -lintl... yes
180
+ checking for bind_textdomain_codeset... yes
181
+ checking for msgfmt... /devel/dist/win32/gettext-tools-0.18.1.1-1/bin/msgfmt
182
+ checking for dcgettext... yes
183
+ checking if msgfmt accepts -c... yes
184
+ checking for gmsgfmt... /devel/dist/win32/gettext-tools-0.18.1.1-1/bin/msgfmt
185
+ checking for xgettext... /devel/dist/win32/gettext-tools-0.18.1.1-1/bin/xgettext
186
+ checking for catalogs to be installed... af am ar as ast az be be@latin bg bn bn_IN bs ca ca@valencia cs cy da de dz el en_CA en_GB en@shaw eo es et eu fa fi fr ga gl gu he hi hr hu hy id is it ja ka kn ko ku lt lv mai mg mk ml mn mr ms nb nds ne nl nn oc or pa pl ps pt pt_BR ro ru rw si sk sl sq sr sr@latin sr@ije sv ta te th tl tr tt uk vi wa xh yi zh_CN zh_HK zh_TW
187
+ checking for as... as
188
+ checking for dlltool... dlltool
189
+ checking for objdump... objdump
190
+ checking for a sed that does not truncate output... /bin/sed
191
+ checking for fgrep... /bin/grep -F
192
+ checking for ld used by gcc -mtune=pentium3 -mthreads... c:/opt/mingw/mingw32/bin/ld.exe
193
+ checking if the linker (c:/opt/mingw/mingw32/bin/ld.exe) is GNU ld... yes
194
+ checking for BSD- or MS-compatible name lister (nm)... nm
195
+ checking the name lister (nm) interface... BSD nm
196
+ checking whether ln -s works... yes
197
+ checking the maximum length of command line arguments... 8192
198
+ checking whether the shell understands some XSI constructs... yes
199
+ checking whether the shell understands "+="... yes
200
+ checking for c:/opt/mingw/mingw32/bin/ld.exe option to reload object files... -r
201
+ checking for objdump... (cached) objdump
202
+ checking how to recognize dependent libraries... (cached) pass_all
203
+ checking for ar... ar
204
+ checking for strip... strip
205
+ checking for ranlib... (cached) ranlib
206
+ checking command to parse nm output from gcc -mtune=pentium3 -mthreads object... ok
207
+ checking for dlfcn.h... no
208
+ checking whether we are using the GNU C++ compiler... (cached) yes
209
+ checking whether c++ accepts -g... (cached) yes
210
+ checking dependency style of c++... (cached) gcc3
211
+ checking how to run the C++ preprocessor... c++ -E
212
+ checking for objdir... .libs
213
+ checking if gcc -mtune=pentium3 -mthreads supports -fno-rtti -fno-exceptions... no
214
+ checking for gcc -mtune=pentium3 -mthreads option to produce PIC... -DDLL_EXPORT -DPIC
215
+ checking if gcc -mtune=pentium3 -mthreads PIC flag -DDLL_EXPORT -DPIC works... yes
216
+ checking if gcc -mtune=pentium3 -mthreads static flag -static works... yes
217
+ checking if gcc -mtune=pentium3 -mthreads supports -c -o file.o... yes
218
+ checking if gcc -mtune=pentium3 -mthreads supports -c -o file.o... (cached) yes
219
+ checking whether the gcc -mtune=pentium3 -mthreads linker (c:/opt/mingw/mingw32/bin/ld.exe) supports shared libraries... yes
220
+ checking whether -lc should be explicitly linked in... yes
221
+ checking dynamic linker characteristics... Win32 ld.exe
222
+ checking how to hardcode library paths into programs... immediate
223
+ checking whether stripping libraries is possible... yes
224
+ checking if libtool supports shared libraries... yes
225
+ checking whether to build shared libraries... yes
226
+ checking whether to build static libraries... no
227
+ checking for ld used by c++... c:/opt/mingw/mingw32/bin/ld.exe
228
+ checking if the linker (c:/opt/mingw/mingw32/bin/ld.exe) is GNU ld... yes
229
+ checking whether the c++ linker (c:/opt/mingw/mingw32/bin/ld.exe) supports shared libraries... yes
230
+ checking for c++ option to produce PIC... -DDLL_EXPORT -DPIC
231
+ checking if c++ PIC flag -DDLL_EXPORT -DPIC works... yes
232
+ checking if c++ static flag -static works... yes
233
+ checking if c++ supports -c -o file.o... yes
234
+ checking if c++ supports -c -o file.o... (cached) yes
235
+ checking whether the c++ linker (c:/opt/mingw/mingw32/bin/ld.exe) supports shared libraries... yes
236
+ checking dynamic linker characteristics... Win32 ld.exe
237
+ checking how to hardcode library paths into programs... immediate
238
+ configure: creating ./config.lt
239
+ config.lt: creating libtool
240
+ checking for extra flags to get ANSI library prototypes... none needed
241
+ checking for extra flags for POSIX compliance... none needed
242
+ checking for ANSI C header files... (cached) yes
243
+ checking for vprintf... yes
244
+ checking for _doprnt... no
245
+ checking for working alloca.h... no
246
+ checking for alloca... yes
247
+ checking for mmap... no
248
+ checking for posix_memalign... no
249
+ checking for memalign... no
250
+ checking for valloc... no
251
+ checking for fsync... no
252
+ checking for pipe2... no
253
+ checking for atexit... yes
254
+ checking for on_exit... no
255
+ checking for timegm... no
256
+ checking for gmtime_r... no
257
+ checking size of char... 1
258
+ checking size of short... 2
259
+ checking size of long... 4
260
+ checking size of int... 4
261
+ checking size of void *... 4
262
+ checking size of long long... 8
263
+ checking size of __int64... 8
264
+ checking for format to printf and scanf a guint64... %I64u
265
+ checking for an ANSI C-conforming const... yes
266
+ checking if malloc() and friends prototypes are gmem.h compatible... yes
267
+ checking for growing stack pointer... (cached) no
268
+ checking for __inline... yes
269
+ checking for __inline__... yes
270
+ checking for inline... yes
271
+ checking if inline functions in headers work... yes
272
+ checking for working do while(0) macros... yes
273
+ checking for ISO C99 varargs macros in C... yes
274
+ checking for ISO C99 varargs macros in C++... yes
275
+ checking for GNUC varargs macros... yes
276
+ checking for GNUC visibility attribute... no
277
+ checking whether using Sun Studio C compiler... no
278
+ checking whether byte ordering is bigendian... no
279
+ checking dirent.h usability... yes
280
+ checking dirent.h presence... yes
281
+ checking for dirent.h... yes
282
+ checking float.h usability... yes
283
+ checking float.h presence... yes
284
+ checking for float.h... yes
285
+ checking limits.h usability... yes
286
+ checking limits.h presence... yes
287
+ checking for limits.h... yes
288
+ checking pwd.h usability... no
289
+ checking pwd.h presence... no
290
+ checking for pwd.h... no
291
+ checking grp.h usability... no
292
+ checking grp.h presence... no
293
+ checking for grp.h... no
294
+ checking sys/param.h usability... yes
295
+ checking sys/param.h presence... yes
296
+ checking for sys/param.h... yes
297
+ checking sys/poll.h usability... no
298
+ checking sys/poll.h presence... no
299
+ checking for sys/poll.h... no
300
+ checking sys/resource.h usability... no
301
+ checking sys/resource.h presence... no
302
+ checking for sys/resource.h... no
303
+ checking sys/time.h usability... yes
304
+ checking sys/time.h presence... yes
305
+ checking for sys/time.h... yes
306
+ checking sys/times.h usability... no
307
+ checking sys/times.h presence... no
308
+ checking for sys/times.h... no
309
+ checking sys/wait.h usability... no
310
+ checking sys/wait.h presence... no
311
+ checking for sys/wait.h... no
312
+ checking for unistd.h... (cached) yes
313
+ checking values.h usability... yes
314
+ checking values.h presence... yes
315
+ checking for values.h... yes
316
+ checking sys/select.h usability... no
317
+ checking sys/select.h presence... no
318
+ checking for sys/select.h... no
319
+ checking for sys/types.h... (cached) yes
320
+ checking for stdint.h... (cached) yes
321
+ checking for inttypes.h... (cached) yes
322
+ checking sched.h usability... no
323
+ checking sched.h presence... no
324
+ checking for sched.h... no
325
+ checking malloc.h usability... yes
326
+ checking malloc.h presence... yes
327
+ checking for malloc.h... yes
328
+ checking sys/vfs.h usability... no
329
+ checking sys/vfs.h presence... no
330
+ checking for sys/vfs.h... no
331
+ checking sys/mount.h usability... no
332
+ checking sys/mount.h presence... no
333
+ checking for sys/mount.h... no
334
+ checking sys/vmount.h usability... no
335
+ checking sys/vmount.h presence... no
336
+ checking for sys/vmount.h... no
337
+ checking sys/statfs.h usability... no
338
+ checking sys/statfs.h presence... no
339
+ checking for sys/statfs.h... no
340
+ checking sys/statvfs.h usability... no
341
+ checking sys/statvfs.h presence... no
342
+ checking for sys/statvfs.h... no
343
+ checking mntent.h usability... no
344
+ checking mntent.h presence... no
345
+ checking for mntent.h... no
346
+ checking sys/mnttab.h usability... no
347
+ checking sys/mnttab.h presence... no
348
+ checking for sys/mnttab.h... no
349
+ checking sys/vfstab.h usability... no
350
+ checking sys/vfstab.h presence... no
351
+ checking for sys/vfstab.h... no
352
+ checking sys/mntctl.h usability... no
353
+ checking sys/mntctl.h presence... no
354
+ checking for sys/mntctl.h... no
355
+ checking sys/sysctl.h usability... no
356
+ checking sys/sysctl.h presence... no
357
+ checking for sys/sysctl.h... no
358
+ checking fstab.h usability... no
359
+ checking fstab.h presence... no
360
+ checking for fstab.h... no
361
+ checking sys/uio.h usability... no
362
+ checking sys/uio.h presence... no
363
+ checking for sys/uio.h... no
364
+ checking for struct stat.st_mtimensec... no
365
+ checking for struct stat.st_mtim.tv_nsec... no
366
+ checking for struct stat.st_atimensec... no
367
+ checking for struct stat.st_atim.tv_nsec... no
368
+ checking for struct stat.st_ctimensec... no
369
+ checking for struct stat.st_ctim.tv_nsec... no
370
+ checking for struct stat.st_blksize... no
371
+ checking for struct stat.st_blocks... no
372
+ checking for struct statfs.f_fstypename... no
373
+ checking for struct statfs.f_bavail... no
374
+ checking for struct statvfs.f_basetype... no
375
+ checking for nl_langinfo and CODESET... no
376
+ checking whether we are using the GNU C Library 2.1 or newer... (cached) no
377
+ checking stddef.h usability... yes
378
+ checking stddef.h presence... yes
379
+ checking for stddef.h... yes
380
+ checking for stdlib.h... (cached) yes
381
+ checking for string.h... (cached) yes
382
+ checking for setlocale... yes
383
+ checking size of size_t... 4
384
+ checking for the appropriate definition for size_t... unsigned int
385
+ checking for lstat... no
386
+ checking for strerror... yes
387
+ checking for strsignal... no
388
+ checking for memmove... yes
389
+ checking for vsnprintf... yes
390
+ checking for stpcpy... no
391
+ checking for strcasecmp... yes
392
+ checking for strncasecmp... yes
393
+ checking for poll... no
394
+ checking for getcwd... yes
395
+ checking for vasprintf... no
396
+ checking for setenv... no
397
+ checking for unsetenv... no
398
+ checking for getc_unlocked... no
399
+ checking for readlink... no
400
+ checking for symlink... no
401
+ checking for fdwalk... no
402
+ checking for chown... no
403
+ checking for lchmod... no
404
+ checking for lchown... no
405
+ checking for fchmod... no
406
+ checking for fchown... no
407
+ checking for link... no
408
+ checking for statvfs... no
409
+ checking for statfs... no
410
+ checking for utimes... no
411
+ checking for getgrgid... no
412
+ checking for getpwuid... no
413
+ checking for getmntent_r... no
414
+ checking for setmntent... no
415
+ checking for endmntent... no
416
+ checking for hasmntopt... no
417
+ checking for getmntinfo... no
418
+ checking for nanosleep... no
419
+ checking for nsleep... no
420
+ checking for splice... no
421
+ checking crt_externs.h usability... no
422
+ checking crt_externs.h presence... no
423
+ checking for crt_externs.h... no
424
+ checking for _NSGetEnviron... no
425
+ checking for C99 vsnprintf... (cached) no
426
+ checking whether printf supports positional parameters... no
427
+ checking value of AF_INET... 2
428
+ checking value of AF_INET6... 23
429
+ checking value of AF_UNIX... 1
430
+ checking value of MSG_PEEK... 2
431
+ checking value of MSG_OOB... 1
432
+ checking value of MSG_DONTROUTE... 4
433
+ checking for getprotobyname_r... no
434
+ checking for endservent... no
435
+ checking netdb.h usability... no
436
+ checking netdb.h presence... no
437
+ checking for netdb.h... no
438
+ checking wspiapi.h usability... no
439
+ checking wspiapi.h presence... no
440
+ checking for wspiapi.h... no
441
+ checking for signed... yes
442
+ checking for long long... yes
443
+ checking for long double... yes
444
+ checking for wchar_t... yes
445
+ checking for wint_t... yes
446
+ checking for size_t... yes
447
+ checking for ptrdiff_t... yes
448
+ checking for inttypes.h... yes
449
+ checking for stdint.h... yes
450
+ checking for snprintf... yes
451
+ checking for wcslen... yes
452
+ checking for C99 snprintf... (cached) no
453
+ checking for sys_errlist... no
454
+ checking for sys_siglist... no
455
+ checking for sys_siglist declaration... no
456
+ checking for fd_set... no
457
+ checking whether realloc (NULL,) will work... yes
458
+ checking for nl_langinfo (CODESET)... no
459
+ checking for a compliant posix_memalign() implementation... no
460
+ checking for OpenBSD strlcpy/strlcat... no
461
+ checking for an implementation of va_copy()... yes
462
+ checking for an implementation of __va_copy()... yes
463
+ checking whether va_lists can be copied by value... yes
464
+ checking for the suffix of module shared libraries... .dll
465
+ checking for gspawn implementation... gspawn-win32.lo
466
+ checking for GIOChannel implementation... giowin32.lo
467
+ checking for is_selinux_enabled in -lselinux... no
468
+ checking sys/inotify.h usability... no
469
+ checking sys/inotify.h presence... no
470
+ checking for sys/inotify.h... no
471
+ checking for FAMOpen in -lfam... no
472
+ configure: WARNING: *** FAM support will not be built (FAM library not found) ***
473
+ checking for getxattr in -lc... no
474
+ checking for getxattr in -lattr... no
475
+ checking for platform-dependent source... gwin32.lo
476
+ checking whether to compile timeloop... no
477
+ checking if building for some Win32 platform... yes
478
+ checking for thread implementation... win32
479
+ configure: WARNING: I can't find the MACRO to enable thread safety on your
480
+ platform (normally it's _REENTRANT). I'll not use any flag on
481
+ compilation now, but then your programs might not work.
482
+ Please provide information on how it is done on your system.
483
+ checking thread related cflags...
484
+ checking thread related libraries...
485
+ checking for localtime_r... no
486
+ checking for gmtime_r... (cached) no
487
+ checking size of struct _GThreadData *... 4
488
+ configure: WARNING: the 'g_get_(user_name|real_name|home_dir|tmp_dir)'
489
+ functions will not be MT-safe during their first call because
490
+ there is no working 'getpwuid_r' on your system.
491
+ configure: WARNING: the 'g_date_set_time' function will not be MT-safe
492
+ because there is no 'localtime_r' on your system.
493
+ checking for clock_gettime... no
494
+ checking for clock_gettime in -lrt... no
495
+ checking for monotonic clocks... no
496
+ checking whether to use assembler code for atomic operations... checking whether GCC supports build-in atomic intrinsics... no
497
+ i486
498
+ checking for futex(2) system call... no
499
+ checking for broken poll... yes
500
+ checking whether compiler understands -Wno-pointer-sign... yes
501
+ checking for EILSEQ... yes
502
+ checking for gtkdoc-check... no
503
+ checking for gtkdoc-rebase... no
504
+ checking for gtkdoc-mkpdf... no
505
+ checking whether to build gtk-doc documentation... no
506
+ configure: creating ./config.status
507
+ config.status: creating glib-2.0.pc
508
+ config.status: creating glib-2.0-uninstalled.pc
509
+ config.status: creating gmodule-2.0.pc
510
+ config.status: creating gmodule-export-2.0.pc
511
+ config.status: creating gmodule-no-export-2.0.pc
512
+ config.status: creating gmodule-2.0-uninstalled.pc
513
+ config.status: creating gmodule-no-export-2.0-uninstalled.pc
514
+ config.status: creating gthread-2.0.pc
515
+ config.status: creating gthread-2.0-uninstalled.pc
516
+ config.status: creating gobject-2.0.pc
517
+ config.status: creating gobject-2.0-uninstalled.pc
518
+ config.status: creating gio-2.0.pc
519
+ config.status: creating gio-unix-2.0.pc
520
+ config.status: creating gio-2.0-uninstalled.pc
521
+ config.status: creating gio-unix-2.0-uninstalled.pc
522
+ config.status: creating glib-zip
523
+ config.status: creating glib-gettextize
524
+ config.status: creating Makefile
525
+ config.status: creating build/Makefile
526
+ config.status: creating build/win32/Makefile
527
+ config.status: creating build/win32/dirent/Makefile
528
+ config.status: creating build/win32/vs9/Makefile
529
+ config.status: creating glib/Makefile
530
+ config.status: creating glib/libcharset/Makefile
531
+ config.status: creating glib/gnulib/Makefile
532
+ config.status: creating glib/pcre/Makefile
533
+ config.status: creating glib/update-pcre/Makefile
534
+ config.status: creating glib/tests/Makefile
535
+ config.status: creating gmodule/Makefile
536
+ config.status: creating gmodule/gmoduleconf.h
537
+ config.status: creating gobject/Makefile
538
+ config.status: creating gobject/glib-mkenums
539
+ config.status: creating gobject/tests/Makefile
540
+ config.status: creating gthread/Makefile
541
+ config.status: creating gthread/tests/Makefile
542
+ config.status: creating gio/Makefile
543
+ config.status: creating gio/xdgmime/Makefile
544
+ config.status: creating gio/inotify/Makefile
545
+ config.status: creating gio/libasyncns/Makefile
546
+ config.status: creating gio/fen/Makefile
547
+ config.status: creating gio/fam/Makefile
548
+ config.status: creating gio/win32/Makefile
549
+ config.status: creating gio/tests/Makefile
550
+ config.status: creating po/Makefile.in
551
+ config.status: creating docs/Makefile
552
+ config.status: creating docs/reference/Makefile
553
+ config.status: creating docs/reference/glib/Makefile
554
+ config.status: creating docs/reference/glib/version.xml
555
+ config.status: creating docs/reference/gobject/Makefile
556
+ config.status: creating docs/reference/gobject/version.xml
557
+ config.status: creating docs/reference/gio/Makefile
558
+ config.status: creating docs/reference/gio/version.xml
559
+ config.status: creating tests/Makefile
560
+ config.status: creating tests/gobject/Makefile
561
+ config.status: creating tests/refcount/Makefile
562
+ config.status: creating m4macros/Makefile
563
+ config.status: creating config.h
564
+ config.status: executing depfiles commands
565
+ config.status: executing default-1 commands
566
+ config.status: executing libtool commands
567
+ config.status: executing glibconfig.h commands
568
+ config.status: executing chmod-scripts commands
569
+ ++ make glibconfig.h.win32
570
+ cd . && /bin/sh ./config.status glibconfig.h.win32
571
+ config.status: creating glibconfig.h.win32
572
+ ++ make glibconfig.h
573
+ cd . && /bin/sh ./config.status glibconfig.h
574
+ config.status: executing glibconfig.h commands
575
+ config.status: glibconfig.h is unchanged
576
+ echo timestamp > stamp-gc-h
577
+ ++ mv glibconfig.h glibconfig.h.autogened
578
+ ++ cp glibconfig.h.win32 glibconfig.h
579
+ ++ PATH='/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/bin:/devel/dist/win32/pkg-config-0.23-3/bin:/devel/dist/win32/glib-2.24.2-1/bin:/devel/dist/win32/gettext-tools-0.18.1.1-1/bin:/devel/dist/win32/gettext-runtime-0.18.1.1-1/bin:/opt/MSVS6/VC98/Bin:/opt/MSVS6/Common/MSDev98/Bin:/opt/MSVS6/Common/Tools:/opt/misc/bin:/opt/gnu/bin:/opt/mingw/bin:/opt/svn/bin:/opt/local/bin:/c/Windows/Microsoft.NET/Framework/v3.5:/c/Windows/Microsoft.NET/Framework/v2.0.50727:/opt/xemacs/XEmacs-21.4.22/i586-pc-win32:/bin:/c/Windows/system32:/c/Windows:/c/Windows/System32/Wbem:/c/Windows/System32/WindowsPowerShell/v1.0/:/c/Program Files (x86)/QuickTime/QTSystem/'
580
+ ++ make -j3 install
581
+ make install-recursive
582
+ make[1]: Entering directory `/devel/src/gnome/glib/2.24.2-2_win32'
583
+ Making install in .
584
+ make[2]: Entering directory `/devel/src/gnome/glib/2.24.2-2_win32'
585
+ make[3]: Entering directory `/devel/src/gnome/glib/2.24.2-2_win32'
586
+ test -z "c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/bin" || /bin/mkdir -p "c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/bin"
587
+ test -z "c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib/glib-2.0/include" || /bin/mkdir -p "c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib/glib-2.0/include"
588
+ test -z "c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/glib-2.0/gettext" || /bin/mkdir -p "c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/glib-2.0/gettext"
589
+ /opt/local/bin/install -c mkinstalldirs 'c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/glib-2.0/gettext'
590
+ /opt/local/bin/install -c -m 644 glibconfig.h 'c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib/glib-2.0/include'
591
+ /opt/local/bin/install -c glib-gettextize 'c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/bin'
592
+ test -z "c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib/pkgconfig" || /bin/mkdir -p "c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib/pkgconfig"
593
+ /opt/local/bin/install -c -m 644 glib-2.0.pc gobject-2.0.pc gmodule-2.0.pc gmodule-export-2.0.pc gmodule-no-export-2.0.pc gthread-2.0.pc gio-2.0.pc 'c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib/pkgconfig'
594
+ make[3]: Leaving directory `/devel/src/gnome/glib/2.24.2-2_win32'
595
+ make[2]: Leaving directory `/devel/src/gnome/glib/2.24.2-2_win32'
596
+ Making install in m4macros
597
+ make[2]: Entering directory `/devel/src/gnome/glib/2.24.2-2_win32/m4macros'
598
+ make[3]: Entering directory `/devel/src/gnome/glib/2.24.2-2_win32/m4macros'
599
+ make[3]: Nothing to be done for `install-exec-am'.
600
+ test -z "c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/aclocal" || /bin/mkdir -p "c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/aclocal"
601
+ /opt/local/bin/install -c -m 644 glib-2.0.m4 glib-gettext.m4 'c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/aclocal'
602
+ make[3]: Leaving directory `/devel/src/gnome/glib/2.24.2-2_win32/m4macros'
603
+ make[2]: Leaving directory `/devel/src/gnome/glib/2.24.2-2_win32/m4macros'
604
+ Making install in glib
605
+ make[2]: Entering directory `/devel/src/gnome/glib/2.24.2-2_win32/glib'
606
+ make install-recursive
607
+ make[3]: Entering directory `/devel/src/gnome/glib/2.24.2-2_win32/glib'
608
+ Making install in libcharset
609
+ make[4]: Entering directory `/devel/src/gnome/glib/2.24.2-2_win32/glib/libcharset'
610
+ sed -e '/^#/d' -e 's/@''PACKAGE''@/glib/g' ref-add.sin > t-ref-add.sed
611
+ sed -e '/^#/d' -e 's/@''PACKAGE''@/glib/g' ref-del.sin > t-ref-del.sed
612
+ CC localcharset.lo
613
+ mv t-ref-add.sed ref-add.sed
614
+ mv t-ref-del.sed ref-del.sed
615
+ /bin/sh ./config.charset 'i686-pc-mingw32' > t-charset.alias
616
+ mv t-charset.alias charset.alias
617
+ CCLD libcharset.la
618
+ make[5]: Entering directory `/devel/src/gnome/glib/2.24.2-2_win32/glib/libcharset'
619
+ /bin/sh ../../mkinstalldirs c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib
620
+ make[5]: Nothing to be done for `install-data-am'.
621
+ if test -f c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib/charset.alias; then \
622
+ sed -f ref-add.sed c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib/charset.alias > c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib/charset.tmp ; \
623
+ /opt/local/bin/install -c -m 644 c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib/charset.tmp c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib/charset.alias ; \
624
+ rm -f c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib/charset.tmp ; \
625
+ else \
626
+ if test no = no; then \
627
+ sed -f ref-add.sed charset.alias > c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib/charset.tmp ; \
628
+ /opt/local/bin/install -c -m 644 c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib/charset.tmp c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib/charset.alias ; \
629
+ rm -f c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib/charset.tmp ; \
630
+ fi ; \
631
+ fi
632
+ make[5]: Leaving directory `/devel/src/gnome/glib/2.24.2-2_win32/glib/libcharset'
633
+ make[4]: Leaving directory `/devel/src/gnome/glib/2.24.2-2_win32/glib/libcharset'
634
+ Making install in gnulib
635
+ make[4]: Entering directory `/devel/src/gnome/glib/2.24.2-2_win32/glib/gnulib'
636
+ CC asnprintf.lo
637
+ CC printf-args.lo
638
+ CC printf-parse.lo
639
+ CC vasnprintf.lo
640
+ CC printf.lo
641
+ CCLD libgnulib.la
642
+ make[5]: Entering directory `/devel/src/gnome/glib/2.24.2-2_win32/glib/gnulib'
643
+ make[5]: Nothing to be done for `install-exec-am'.
644
+ make[5]: Nothing to be done for `install-data-am'.
645
+ make[5]: Leaving directory `/devel/src/gnome/glib/2.24.2-2_win32/glib/gnulib'
646
+ make[4]: Leaving directory `/devel/src/gnome/glib/2.24.2-2_win32/glib/gnulib'
647
+ Making install in pcre
648
+ make[4]: Entering directory `/devel/src/gnome/glib/2.24.2-2_win32/glib/pcre'
649
+ CC pcre_compile.lo
650
+ CC pcre_chartables.lo
651
+ CC pcre_config.lo
652
+ CC pcre_dfa_exec.lo
653
+ CC pcre_exec.lo
654
+ CC pcre_fullinfo.lo
655
+ CC pcre_get.lo
656
+ CC pcre_globals.lo
657
+ CC pcre_info.lo
658
+ CC pcre_maketables.lo
659
+ CC pcre_newline.lo
660
+ CC pcre_ord2utf8.lo
661
+ CC pcre_refcount.lo
662
+ CC pcre_study.lo
663
+ CC pcre_tables.lo
664
+ CC pcre_try_flipped.lo
665
+ CC pcre_ucp_searchfuncs.lo
666
+ CC pcre_valid_utf8.lo
667
+ CC pcre_version.lo
668
+ CC pcre_xclass.lo
669
+ CCLD libpcre.la
670
+ make[5]: Entering directory `/devel/src/gnome/glib/2.24.2-2_win32/glib/pcre'
671
+ make[5]: Nothing to be done for `install-exec-am'.
672
+ make[5]: Nothing to be done for `install-data-am'.
673
+ make[5]: Leaving directory `/devel/src/gnome/glib/2.24.2-2_win32/glib/pcre'
674
+ make[4]: Leaving directory `/devel/src/gnome/glib/2.24.2-2_win32/glib/pcre'
675
+ Making install in update-pcre
676
+ make[4]: Entering directory `/devel/src/gnome/glib/2.24.2-2_win32/glib/update-pcre'
677
+ make[5]: Entering directory `/devel/src/gnome/glib/2.24.2-2_win32/glib/update-pcre'
678
+ make[5]: Nothing to be done for `install-exec-am'.
679
+ make[5]: Nothing to be done for `install-data-am'.
680
+ make[5]: Leaving directory `/devel/src/gnome/glib/2.24.2-2_win32/glib/update-pcre'
681
+ make[4]: Leaving directory `/devel/src/gnome/glib/2.24.2-2_win32/glib/update-pcre'
682
+ Making install in .
683
+ make[4]: Entering directory `/devel/src/gnome/glib/2.24.2-2_win32/glib'
684
+ CC garray.lo
685
+ CC gasyncqueue.lo
686
+ CC gatomic.lo
687
+ CC gbacktrace.lo
688
+ CC gbase64.lo
689
+ CC gbitlock.lo
690
+ CC gbookmarkfile.lo
691
+ CC gbuffer.lo
692
+ CC gcache.lo
693
+ CC gchecksum.lo
694
+ CC gcompletion.lo
695
+ CC gconvert.lo
696
+ CC gdataset.lo
697
+ gconvert.c: In function 'g_iconv':
698
+ gconvert.c:183:3: warning: passing argument 2 of 'iconv' from incompatible pointer type
699
+ win_iconv.c:765:1: note: expected 'const char **' but argument is of type 'gchar **'
700
+ In file included from gconvert.c:40:0:
701
+ win_iconv.c: In function 'utf32_mbtowc':
702
+ win_iconv.c:1522:10: warning: 'wc' may be used uninitialized in this function
703
+ CC gdate.lo
704
+ CC gdir.lo
705
+ CC gerror.lo
706
+ CC gfileutils.lo
707
+ CC ghash.lo
708
+ CC ghook.lo
709
+ CC ghostutils.lo
710
+ CC giochannel.lo
711
+ CC gkeyfile.lo
712
+ CC glist.lo
713
+ CC gmain.lo
714
+ CC gmappedfile.lo
715
+ CC gmarkup.lo
716
+ CC gmem.lo
717
+ CC gmessages.lo
718
+ CC gnode.lo
719
+ CC goption.lo
720
+ CC gpattern.lo
721
+ CC gpoll.lo
722
+ CC gprimes.lo
723
+ CC gqsort.lo
724
+ CC gqueue.lo
725
+ CC grel.lo
726
+ CC grand.lo
727
+ CC gregex.lo
728
+ CC gscanner.lo
729
+ CC gsequence.lo
730
+ CC gshell.lo
731
+ CC gslice.lo
732
+ CC gslist.lo
733
+ CC gstdio.lo
734
+ CC gstrfuncs.lo
735
+ CC gstring.lo
736
+ CC gtestutils.lo
737
+ gtestutils.c: In function 'g_test_log_send':
738
+ gtestutils.c:166:13: warning: unknown conversion type character 'L' in format
739
+ gtestutils.c:166:13: warning: too many arguments for format
740
+ gtestutils.c: In function 'g_assertion_message_cmpnum':
741
+ gtestutils.c:1347:5: warning: unknown conversion type character 'L' in format
742
+ gtestutils.c:1347:5: warning: format '%s' expects type 'char *', but argument 3 has type 'long double'
743
+ gtestutils.c:1347:5: warning: unknown conversion type character 'L' in format
744
+ gtestutils.c:1347:5: warning: too many arguments for format
745
+ gtestutils.c:1349:5: warning: unknown conversion type character 'L' in format
746
+ gtestutils.c:1349:5: warning: format '%s' expects type 'char *', but argument 3 has type 'long double'
747
+ gtestutils.c:1349:5: warning: unknown conversion type character 'L' in format
748
+ gtestutils.c:1349:5: warning: too many arguments for format
749
+ CC gthread.lo
750
+ CC gthreadpool.lo
751
+ CC gtimer.lo
752
+ CC gtree.lo
753
+ CC guniprop.lo
754
+ CC gutf8.lo
755
+ CC gunibreak.lo
756
+ CC gunicollate.lo
757
+ CC gunidecomp.lo
758
+ CC gurifuncs.lo
759
+ CC gutils.lo
760
+ CC gvariant.lo
761
+ CC gvariant-core.lo
762
+ gutils.c: In function 'g_win32_get_system_data_dirs_for_module':
763
+ gutils.c:2639:11: warning: 'hmodule' may be used uninitialized in this function
764
+ CC gvariant-parser.lo
765
+ CC gvariant-serialiser.lo
766
+ CC gvarianttypeinfo.lo
767
+ CC gvarianttype.lo
768
+ CC gprintf.lo
769
+ CC giowin32.lo
770
+ CC gspawn-win32.lo
771
+ giowin32.c: In function 'g_io_channel_new_file_utf8':
772
+ giowin32.c:1680:7: warning: case value '9' not in enumerated type
773
+ giowin32.c:1684:7: warning: case value '10' not in enumerated type
774
+ giowin32.c:1688:7: warning: case value '12' not in enumerated type
775
+ giowin32.c:1734:7: warning: case value '9' not in enumerated type
776
+ giowin32.c:1735:7: warning: case value '10' not in enumerated type
777
+ giowin32.c:1736:7: warning: case value '12' not in enumerated type
778
+ CC gwin32.lo
779
+ giowin32.c: In function 'g_io_win32_sock_write':
780
+ giowin32.c:1513:7: warning: 'winsock_error' may be used uninitialized in this function
781
+ giowin32.c: In function 'g_io_win32_sock_read':
782
+ giowin32.c:1452:7: warning: 'winsock_error' may be used uninitialized in this function
783
+ cd .. && /bin/sh ./config.status glib/glib.rc
784
+ (echo -e EXPORTS; gcc -mtune=pentium3 -mthreads -E -P -DINCLUDE_VARIABLES -DINCLUDE_INTERNAL_SYMBOLS -DG_OS_WIN32 -DALL_FILES - <./glib.symbols | sed -e '/^$/d' -e 's/^/ /' -e 's/G_GNUC_[^ ]*//g') > glib.def
785
+ CC gspawn-win32-helper.o
786
+ CC gspawn-win32-helper-console.o
787
+ gspawn-win32.c:68:14: warning: 'debug' defined but not used
788
+ gspawn-win32.c:68:14: warning: 'debug' defined but not used
789
+ config.status: creating glib/glib.rc
790
+ windres glib.rc glib-win32-res.o
791
+ CCLD libglib-2.0.la
792
+ Creating library file: .libs/libglib-2.0.dll.a
793
+ lib -machine:X86 -name:libglib-2.0-0.dll -def:glib.def -out:glib-2.0.lib
794
+ CCLD gspawn-win32-helper.exe
795
+ CCLD gspawn-win32-helper-console.exe
796
+ Microsoft (R) Library Manager Version 6.00.8447
797
+ Copyright (C) Microsoft Corp 1992-1998. All rights reserved.
798
+
799
+ Creating library glib-2.0.lib and object glib-2.0.exp
800
+ make[5]: Entering directory `/devel/src/gnome/glib/2.24.2-2_win32/glib'
801
+ test -z "c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib" || /bin/mkdir -p "c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib"
802
+ test -z "c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/bin" || /bin/mkdir -p "c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/bin"
803
+ /opt/local/bin/install -c glib-2.0.lib c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib
804
+ /opt/local/bin/install -c glib.def c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib/glib-2.0.def
805
+ test -z "c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/glib-2.0/gdb" || /bin/mkdir -p "c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/glib-2.0/gdb"
806
+ /bin/sh ../libtool --mode=install /opt/local/bin/install -c libglib-2.0.la 'c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib'
807
+ test -z "c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/include/glib-2.0" || /bin/mkdir -p "c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/include/glib-2.0"
808
+ /opt/local/bin/install -c glib.py 'c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/glib-2.0/gdb'
809
+ test -z "c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/include/glib-2.0/glib" || /bin/mkdir -p "c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/include/glib-2.0/glib"
810
+ /opt/local/bin/install -c -m 644 glib-object.h glib.h 'c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/include/glib-2.0'
811
+ /opt/local/bin/install -c -m 644 galloca.h garray.h gasyncqueue.h gatomic.h gbacktrace.h gbase64.h gbitlock.h gbookmarkfile.h gcache.h gchecksum.h gcompletion.h gconvert.h gdataset.h gdate.h gdir.h gerror.h gfileutils.h ghash.h ghook.h ghostutils.h gi18n.h gi18n-lib.h giochannel.h gkeyfile.h glist.h gmacros.h gmain.h gmappedfile.h gmarkup.h gmem.h gmessages.h gnode.h goption.h gpattern.h gpoll.h gprimes.h gqsort.h gquark.h gqueue.h grand.h 'c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/include/glib-2.0/glib'
812
+ libtool: install: /opt/local/bin/install -c .libs/libglib-2.0.dll.a c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib/libglib-2.0.dll.a
813
+ /opt/local/bin/install -c -m 644 gregex.h grel.h gscanner.h gsequence.h gshell.h gslice.h gslist.h gspawn.h gstdio.h gstrfuncs.h gtestutils.h gstring.h gthread.h gthreadpool.h gtimer.h gtree.h gtypes.h gunicode.h gurifuncs.h gutils.h gvarianttype.h gvariant.h gwin32.h gprintf.h 'c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/include/glib-2.0/glib'
814
+ libtool: install: base_file=`basename libglib-2.0.la`
815
+ make install-data-hook
816
+ libtool: install: dlpath=`/bin/sh 2>&1 -c '. .libs/'libglib-2.0.la'i; echo libglib-2.0-0.dll'`
817
+ libtool: install: dldir=c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib/`dirname ../bin/libglib-2.0-0.dll`
818
+ libtool: install: test -d c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib/../bin || mkdir -p c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib/../bin
819
+ libtool: install: /opt/local/bin/install -c .libs/libglib-2.0-0.dll c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib/../bin/libglib-2.0-0.dll
820
+ libtool: install: chmod a+x c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib/../bin/libglib-2.0-0.dll
821
+ libtool: install: if test -n '' && test -n 'strip --strip-unneeded'; then eval 'strip --strip-unneeded c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib/../bin/libglib-2.0-0.dll' || exit 0; fi
822
+ libtool: install: /opt/local/bin/install -c .libs/libglib-2.0.lai c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib/libglib-2.0.la
823
+ make[6]: Entering directory `/devel/src/gnome/glib/2.24.2-2_win32/glib'
824
+ sed -e "s|\@datadir\@|c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share|" ./libglib-gdb.py.in > libglib-gdb.py
825
+ mkdir -p c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/gdb/auto-load
826
+ /opt/local/bin/install -c libglib-gdb.py c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/gdb/auto-load/libglib-2.0.so.0.2400.2-gdb.py
827
+ make[6]: Leaving directory `/devel/src/gnome/glib/2.24.2-2_win32/glib'
828
+ ----------------------------------------------------------------------
829
+ Libraries have been installed in:
830
+ c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib
831
+
832
+ If you ever happen to want to link against installed libraries
833
+ in a given directory, LIBDIR, you must either use libtool, and
834
+ specify the full pathname of the library, or use the `-LLIBDIR'
835
+ flag during linking and do at least one of the following:
836
+ - add LIBDIR to the `PATH' environment variable
837
+ during execution
838
+ - add LIBDIR to the `LD_RUN_PATH' environment variable
839
+ during linking
840
+ - use the `-LLIBDIR' linker flag
841
+
842
+ See any operating system documentation about shared libraries for
843
+ more information, such as the ld(1) and ld.so(8) manual pages.
844
+ ----------------------------------------------------------------------
845
+ test -z "c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/bin" || /bin/mkdir -p "c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/bin"
846
+ /bin/sh ../libtool --mode=install /opt/local/bin/install -c gspawn-win32-helper.exe gspawn-win32-helper-console.exe 'c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/bin'
847
+ libtool: install: /opt/local/bin/install -c .libs/gspawn-win32-helper.exe c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/bin/gspawn-win32-helper.exe
848
+ libtool: install: /opt/local/bin/install -c .libs/gspawn-win32-helper-console.exe c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/bin/gspawn-win32-helper-console.exe
849
+ make install-exec-hook
850
+ make[6]: Entering directory `/devel/src/gnome/glib/2.24.2-2_win32/glib'
851
+ make[6]: Nothing to be done for `install-exec-hook'.
852
+ make[6]: Leaving directory `/devel/src/gnome/glib/2.24.2-2_win32/glib'
853
+ make[5]: Leaving directory `/devel/src/gnome/glib/2.24.2-2_win32/glib'
854
+ make[4]: Leaving directory `/devel/src/gnome/glib/2.24.2-2_win32/glib'
855
+ Making install in tests
856
+ make[4]: Entering directory `/devel/src/gnome/glib/2.24.2-2_win32/glib/tests'
857
+ CC testing.o
858
+ CC option-context.o
859
+ CC keyfile.o
860
+ CC fileutils.o
861
+ fileutils.c: In function 'test_build_filename':
862
+ fileutils.c:252:3: warning: not enough variable arguments to fit a sentinel
863
+ CC printf.o
864
+ printf.c: In function 'test_64bit':
865
+ printf.c:655:3: warning: unknown conversion type character 'l' in format
866
+ printf.c:655:3: warning: too many arguments for format
867
+ printf.c:659:3: warning: unknown conversion type character 'l' in format
868
+ printf.c:659:3: warning: too many arguments for format
869
+ printf.c:663:3: warning: unknown conversion type character 'l' in format
870
+ printf.c:663:3: warning: too many arguments for format
871
+ printf.c:667:3: warning: unknown conversion type character 'l' in format
872
+ printf.c:667:3: warning: too many arguments for format
873
+ printf.c:671:3: warning: unknown conversion type character 'l' in format
874
+ printf.c:671:3: warning: too many arguments for format
875
+ printf.c:675:3: warning: unknown conversion type character 'l' in format
876
+ printf.c:675:3: warning: too many arguments for format
877
+ printf.c:679:3: warning: unknown conversion type character 'l' in format
878
+ printf.c:679:3: warning: too many arguments for format
879
+ printf.c:683:3: warning: unknown conversion type character 'l' in format
880
+ printf.c:683:3: warning: too many arguments for format
881
+ CC rand.o
882
+ CC strfuncs.o
883
+ CC string.o
884
+ CC markup-subparser.o
885
+ CC array-test.o
886
+ CC hostutils.o
887
+ CC gvariant.o
888
+ CC mem-overflow.o
889
+ CCLD testing.exe
890
+ CCLD option-context.exe
891
+ CCLD keyfile.exe
892
+ CCLD fileutils.exe
893
+ CCLD printf.exe
894
+ CCLD rand.exe
895
+ CCLD strfuncs.exe
896
+ CCLD string.exe
897
+ CCLD markup-subparser.exe
898
+ CCLD array-test.exe
899
+ CCLD hostutils.exe
900
+ CCLD gvariant.exe
901
+ CCLD mem-overflow.exe
902
+ make[5]: Entering directory `/devel/src/gnome/glib/2.24.2-2_win32/glib/tests'
903
+ make[5]: Nothing to be done for `install-exec-am'.
904
+ make[5]: Nothing to be done for `install-data-am'.
905
+ make[5]: Leaving directory `/devel/src/gnome/glib/2.24.2-2_win32/glib/tests'
906
+ make[4]: Leaving directory `/devel/src/gnome/glib/2.24.2-2_win32/glib/tests'
907
+ make[3]: Leaving directory `/devel/src/gnome/glib/2.24.2-2_win32/glib'
908
+ make[2]: Leaving directory `/devel/src/gnome/glib/2.24.2-2_win32/glib'
909
+ Making install in gmodule
910
+ make[2]: Entering directory `/devel/src/gnome/glib/2.24.2-2_win32/gmodule'
911
+ make install-am
912
+ make[3]: Entering directory `/devel/src/gnome/glib/2.24.2-2_win32/gmodule'
913
+ cd .. && /bin/sh ./config.status gmodule/gmodule.rc
914
+ CC gmodule.lo
915
+ (echo -e EXPORTS; gcc -mtune=pentium3 -mthreads -E -P - <./gmodule.symbols | sed -e '/^$/d' -e 's/^/ /') > gmodule.def
916
+ config.status: creating gmodule/gmodule.rc
917
+ windres gmodule.rc gmodule-win32-res.o
918
+ CCLD libgmodule-2.0.la
919
+ Creating library file: .libs/libgmodule-2.0.dll.a
920
+ lib -machine:X86 -name:libgmodule-2.0-0.dll -def:gmodule.def -out:gmodule-2.0.lib
921
+ Microsoft (R) Library Manager Version 6.00.8447
922
+ Copyright (C) Microsoft Corp 1992-1998. All rights reserved.
923
+
924
+ Creating library gmodule-2.0.lib and object gmodule-2.0.exp
925
+ make[4]: Entering directory `/devel/src/gnome/glib/2.24.2-2_win32/gmodule'
926
+ test -z "c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib" || /bin/mkdir -p "c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib"
927
+ /opt/local/bin/install -c gmodule-2.0.lib c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib
928
+ /opt/local/bin/install -c gmodule.def c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib/gmodule-2.0.def
929
+ test -z "c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/include/glib-2.0" || /bin/mkdir -p "c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/include/glib-2.0"
930
+ /bin/sh ../libtool --mode=install /opt/local/bin/install -c libgmodule-2.0.la 'c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib'
931
+ /opt/local/bin/install -c -m 644 gmodule.h 'c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/include/glib-2.0'
932
+ make install-data-hook
933
+ make[5]: Entering directory `/devel/src/gnome/glib/2.24.2-2_win32/gmodule'
934
+ make[5]: Nothing to be done for `install-data-hook'.
935
+ make[5]: Leaving directory `/devel/src/gnome/glib/2.24.2-2_win32/gmodule'
936
+ libtool: install: /opt/local/bin/install -c .libs/libgmodule-2.0.dll.a c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib/libgmodule-2.0.dll.a
937
+ libtool: install: base_file=`basename libgmodule-2.0.la`
938
+ libtool: install: dlpath=`/bin/sh 2>&1 -c '. .libs/'libgmodule-2.0.la'i; echo libgmodule-2.0-0.dll'`
939
+ libtool: install: dldir=c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib/`dirname ../bin/libgmodule-2.0-0.dll`
940
+ libtool: install: test -d c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib/../bin || mkdir -p c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib/../bin
941
+ libtool: install: /opt/local/bin/install -c .libs/libgmodule-2.0-0.dll c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib/../bin/libgmodule-2.0-0.dll
942
+ libtool: install: chmod a+x c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib/../bin/libgmodule-2.0-0.dll
943
+ libtool: install: if test -n '' && test -n 'strip --strip-unneeded'; then eval 'strip --strip-unneeded c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib/../bin/libgmodule-2.0-0.dll' || exit 0; fi
944
+ libtool: install: /opt/local/bin/install -c .libs/libgmodule-2.0.lai c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib/libgmodule-2.0.la
945
+ ----------------------------------------------------------------------
946
+ Libraries have been installed in:
947
+ c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib
948
+
949
+ If you ever happen to want to link against installed libraries
950
+ in a given directory, LIBDIR, you must either use libtool, and
951
+ specify the full pathname of the library, or use the `-LLIBDIR'
952
+ flag during linking and do at least one of the following:
953
+ - add LIBDIR to the `PATH' environment variable
954
+ during execution
955
+ - add LIBDIR to the `LD_RUN_PATH' environment variable
956
+ during linking
957
+ - use the `-LLIBDIR' linker flag
958
+
959
+ See any operating system documentation about shared libraries for
960
+ more information, such as the ld(1) and ld.so(8) manual pages.
961
+ ----------------------------------------------------------------------
962
+ make[4]: Leaving directory `/devel/src/gnome/glib/2.24.2-2_win32/gmodule'
963
+ make[3]: Leaving directory `/devel/src/gnome/glib/2.24.2-2_win32/gmodule'
964
+ make[2]: Leaving directory `/devel/src/gnome/glib/2.24.2-2_win32/gmodule'
965
+ Making install in gthread
966
+ make[2]: Entering directory `/devel/src/gnome/glib/2.24.2-2_win32/gthread'
967
+ Making install in .
968
+ make[3]: Entering directory `/devel/src/gnome/glib/2.24.2-2_win32/gthread'
969
+ cd .. && /bin/sh ./config.status gthread/gthread.rc
970
+ CC gthread-impl.lo
971
+ gthread-impl.c: In function 'g_thread_init':
972
+ gthread-impl.c:320:7: warning: the address of 'g_thread_gettime_impl' will always evaluate as 'true'
973
+ config.status: creating gthread/gthread.rc
974
+ windres gthread.rc gthread-win32-res.o
975
+ CCLD libgthread-2.0.la
976
+ Creating library file: .libs/libgthread-2.0.dll.a
977
+ lib -machine:X86 -name:libgthread-2.0-0.dll -def:./gthread.def -out:gthread-2.0.lib
978
+ Microsoft (R) Library Manager Version 6.00.8447
979
+ Copyright (C) Microsoft Corp 1992-1998. All rights reserved.
980
+
981
+ Creating library gthread-2.0.lib and object gthread-2.0.exp
982
+ make[4]: Entering directory `/devel/src/gnome/glib/2.24.2-2_win32/gthread'
983
+ test -z "c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib" || /bin/mkdir -p "c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib"
984
+ /opt/local/bin/install -c gthread-2.0.lib c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib
985
+ /opt/local/bin/install -c ./gthread.def c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib/gthread-2.0.def
986
+ make install-data-hook
987
+ /bin/sh ../libtool --mode=install /opt/local/bin/install -c libgthread-2.0.la 'c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib'
988
+ make[5]: Entering directory `/devel/src/gnome/glib/2.24.2-2_win32/gthread'
989
+ make[5]: Nothing to be done for `install-data-hook'.
990
+ make[5]: Leaving directory `/devel/src/gnome/glib/2.24.2-2_win32/gthread'
991
+ libtool: install: /opt/local/bin/install -c .libs/libgthread-2.0.dll.a c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib/libgthread-2.0.dll.a
992
+ libtool: install: base_file=`basename libgthread-2.0.la`
993
+ libtool: install: dlpath=`/bin/sh 2>&1 -c '. .libs/'libgthread-2.0.la'i; echo libgthread-2.0-0.dll'`
994
+ libtool: install: dldir=c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib/`dirname ../bin/libgthread-2.0-0.dll`
995
+ libtool: install: test -d c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib/../bin || mkdir -p c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib/../bin
996
+ libtool: install: /opt/local/bin/install -c .libs/libgthread-2.0-0.dll c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib/../bin/libgthread-2.0-0.dll
997
+ libtool: install: chmod a+x c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib/../bin/libgthread-2.0-0.dll
998
+ libtool: install: if test -n '' && test -n 'strip --strip-unneeded'; then eval 'strip --strip-unneeded c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib/../bin/libgthread-2.0-0.dll' || exit 0; fi
999
+ libtool: install: /opt/local/bin/install -c .libs/libgthread-2.0.lai c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib/libgthread-2.0.la
1000
+ ----------------------------------------------------------------------
1001
+ Libraries have been installed in:
1002
+ c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib
1003
+
1004
+ If you ever happen to want to link against installed libraries
1005
+ in a given directory, LIBDIR, you must either use libtool, and
1006
+ specify the full pathname of the library, or use the `-LLIBDIR'
1007
+ flag during linking and do at least one of the following:
1008
+ - add LIBDIR to the `PATH' environment variable
1009
+ during execution
1010
+ - add LIBDIR to the `LD_RUN_PATH' environment variable
1011
+ during linking
1012
+ - use the `-LLIBDIR' linker flag
1013
+
1014
+ See any operating system documentation about shared libraries for
1015
+ more information, such as the ld(1) and ld.so(8) manual pages.
1016
+ ----------------------------------------------------------------------
1017
+ make[4]: Leaving directory `/devel/src/gnome/glib/2.24.2-2_win32/gthread'
1018
+ make[3]: Leaving directory `/devel/src/gnome/glib/2.24.2-2_win32/gthread'
1019
+ Making install in tests
1020
+ make[3]: Entering directory `/devel/src/gnome/glib/2.24.2-2_win32/gthread/tests'
1021
+ CC 1bit-mutex.o
1022
+ CC 1bit_emufutex-1bit-mutex.o
1023
+ CCLD 1bit-mutex.exe
1024
+ CCLD 1bit-emufutex.exe
1025
+ Info: resolving _g_thread_functions_for_glib_use by linking to __imp__g_thread_functions_for_glib_use (auto-import)
1026
+ Info: resolving _g_threads_got_initialized by linking to __imp__g_threads_got_initialized (auto-importc:/opt/mingw/bin/../lib/gcc/mingw32/4.5.0/../../../../mingw32/bin/ld.exe: warning: auto-importing has been activated without --enable-auto-import specified on the command line.
1027
+ This should work unless it involves constant data structures referencing symbols from auto-imported DLLs.)
1028
+
1029
+ make[4]: Entering directory `/devel/src/gnome/glib/2.24.2-2_win32/gthread/tests'
1030
+ make[4]: Nothing to be done for `install-exec-am'.
1031
+ make[4]: Nothing to be done for `install-data-am'.
1032
+ make[4]: Leaving directory `/devel/src/gnome/glib/2.24.2-2_win32/gthread/tests'
1033
+ make[3]: Leaving directory `/devel/src/gnome/glib/2.24.2-2_win32/gthread/tests'
1034
+ make[2]: Leaving directory `/devel/src/gnome/glib/2.24.2-2_win32/gthread'
1035
+ Making install in gobject
1036
+ make[2]: Entering directory `/devel/src/gnome/glib/2.24.2-2_win32/gobject'
1037
+ CC glib-genmarshal.o
1038
+ glib-genmarshal.c: In function 'main':
1039
+ glib-genmarshal.c:691:6: warning: case value '10' not in enumerated type 'GTokenType'
1040
+ CCLD glib-genmarshal.exe
1041
+ make glib-genmarshal.exe
1042
+ make[3]: Entering directory `/devel/src/gnome/glib/2.24.2-2_win32/gobject'
1043
+ make[3]: `glib-genmarshal.exe' is up to date.
1044
+ make[3]: Leaving directory `/devel/src/gnome/glib/2.24.2-2_win32/gobject'
1045
+ echo "#ifndef __G_MARSHAL_H__" > xgen-gmh \
1046
+ && echo "#define __G_MARSHAL_H__" >> xgen-gmh \
1047
+ && ./glib-genmarshal --nostdinc --prefix=g_cclosure_marshal ./gmarshal.list --header >> xgen-gmh \
1048
+ && echo "#endif /* __G_MARSHAL_H__ */" >> xgen-gmh \
1049
+ && (cmp -s xgen-gmh gmarshal.h 2>/dev/null || cp xgen-gmh gmarshal.h) \
1050
+ && rm -f xgen-gmh xgen-gmh~ \
1051
+ && echo timestamp > stamp-gmarshal.h
1052
+ ./glib-genmarshal --nostdinc --prefix=g_cclosure_marshal ./gmarshal.list --body >> xgen-gmc \
1053
+ && cp xgen-gmc gmarshal.c \
1054
+ && rm -f xgen-gmc xgen-gmc~
1055
+ make install-recursive
1056
+ make[3]: Entering directory `/devel/src/gnome/glib/2.24.2-2_win32/gobject'
1057
+ Making install in .
1058
+ make[4]: Entering directory `/devel/src/gnome/glib/2.24.2-2_win32/gobject'
1059
+ CC gatomicarray.lo
1060
+ CC gboxed.lo
1061
+ CC gclosure.lo
1062
+ CC genums.lo
1063
+ CC gobject.lo
1064
+ CC gparam.lo
1065
+ CC gparamspecs.lo
1066
+ CC gsignal.lo
1067
+ CC gsourceclosure.lo
1068
+ CC gtype.lo
1069
+ CC gtypemodule.lo
1070
+ CC gtypeplugin.lo
1071
+ CC gvalue.lo
1072
+ CC gvaluearray.lo
1073
+ CC gvaluetransform.lo
1074
+ CC gvaluetypes.lo
1075
+ cd .. && /bin/sh ./config.status gobject/gobject.rc
1076
+ (echo -e EXPORTS; gcc -mtune=pentium3 -mthreads -E -P -DINCLUDE_VARIABLES -DINCLUDE_INTERNAL_SYMBOLS -DG_OS_WIN32 -DALL_FILES - <./gobject.symbols | sed -e '/^$/d' -e 's/^/ /' -e 's/G_GNUC_[^ ]*//g' | sort) > gobject.def
1077
+ CC gobject-query.o
1078
+ CC testgobject.o
1079
+ config.status: creating gobject/gobject.rc
1080
+ windres gobject.rc gobject-win32-res.o
1081
+ CCLD libgobject-2.0.la
1082
+ Creating library file: .libs/libgobject-2.0.dll.a
1083
+ lib -machine:X86 -name:libgobject-2.0-0.dll -def:gobject.def -out:gobject-2.0.lib
1084
+ CCLD gobject-query.exe
1085
+ CCLD testgobject.exe
1086
+ Microsoft (R) Library Manager Version 6.00.8447
1087
+ Copyright (C) Microsoft Corp 1992-1998. All rights reserved.
1088
+
1089
+ Creating library gobject-2.0.lib and object gobject-2.0.exp
1090
+ make[5]: Entering directory `/devel/src/gnome/glib/2.24.2-2_win32/gobject'
1091
+ test -z "c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib" || /bin/mkdir -p "c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib"
1092
+ test -z "c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/bin" || /bin/mkdir -p "c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/bin"
1093
+ /opt/local/bin/install -c gobject-2.0.lib c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib
1094
+ /opt/local/bin/install -c gobject.def c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib/gobject-2.0.def
1095
+ test -z "c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/glib-2.0/gdb" || /bin/mkdir -p "c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/glib-2.0/gdb"
1096
+ /bin/sh ../libtool --mode=install /opt/local/bin/install -c libgobject-2.0.la 'c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib'
1097
+ /opt/local/bin/install -c glib-mkenums 'c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/bin'
1098
+ /opt/local/bin/install -c gobject.py 'c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/glib-2.0/gdb'
1099
+ test -z "c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/include/glib-2.0/gobject" || /bin/mkdir -p "c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/include/glib-2.0/gobject"
1100
+ /opt/local/bin/install -c -m 644 gboxed.h gclosure.h genums.h gobject.h gparam.h gparamspecs.h gsignal.h gsourceclosure.h gtype.h gtypemodule.h gtypeplugin.h gvalue.h gvaluearray.h gvaluecollector.h gvaluetypes.h gobjectnotifyqueue.c gmarshal.h 'c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/include/glib-2.0/gobject'
1101
+ libtool: install: /opt/local/bin/install -c .libs/libgobject-2.0.dll.a c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib/libgobject-2.0.dll.a
1102
+ make install-data-hook
1103
+ libtool: install: base_file=`basename libgobject-2.0.la`
1104
+ libtool: install: dlpath=`/bin/sh 2>&1 -c '. .libs/'libgobject-2.0.la'i; echo libgobject-2.0-0.dll'`
1105
+ make[6]: Entering directory `/devel/src/gnome/glib/2.24.2-2_win32/gobject'
1106
+ sed -e "s|\@datadir\@|c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share|" ./libgobject-gdb.py.in > libgobject-gdb.py
1107
+ mkdir -p c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/gdb/auto-load/
1108
+ /opt/local/bin/install -c libgobject-gdb.py c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/gdb/auto-load//libgobject-2.0.so.0.2400.2-gdb.py
1109
+ libtool: install: dldir=c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib/`dirname ../bin/libgobject-2.0-0.dll`
1110
+ make[6]: Leaving directory `/devel/src/gnome/glib/2.24.2-2_win32/gobject'
1111
+ libtool: install: test -d c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib/../bin || mkdir -p c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib/../bin
1112
+ libtool: install: /opt/local/bin/install -c .libs/libgobject-2.0-0.dll c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib/../bin/libgobject-2.0-0.dll
1113
+ libtool: install: chmod a+x c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib/../bin/libgobject-2.0-0.dll
1114
+ libtool: install: if test -n '' && test -n 'strip --strip-unneeded'; then eval 'strip --strip-unneeded c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib/../bin/libgobject-2.0-0.dll' || exit 0; fi
1115
+ libtool: install: /opt/local/bin/install -c .libs/libgobject-2.0.lai c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib/libgobject-2.0.la
1116
+ ----------------------------------------------------------------------
1117
+ Libraries have been installed in:
1118
+ c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib
1119
+
1120
+ If you ever happen to want to link against installed libraries
1121
+ in a given directory, LIBDIR, you must either use libtool, and
1122
+ specify the full pathname of the library, or use the `-LLIBDIR'
1123
+ flag during linking and do at least one of the following:
1124
+ - add LIBDIR to the `PATH' environment variable
1125
+ during execution
1126
+ - add LIBDIR to the `LD_RUN_PATH' environment variable
1127
+ during linking
1128
+ - use the `-LLIBDIR' linker flag
1129
+
1130
+ See any operating system documentation about shared libraries for
1131
+ more information, such as the ld(1) and ld.so(8) manual pages.
1132
+ ----------------------------------------------------------------------
1133
+ test -z "c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/bin" || /bin/mkdir -p "c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/bin"
1134
+ /bin/sh ../libtool --mode=install /opt/local/bin/install -c gobject-query.exe glib-genmarshal.exe 'c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/bin'
1135
+ libtool: install: /opt/local/bin/install -c .libs/gobject-query.exe c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/bin/gobject-query.exe
1136
+ libtool: install: /opt/local/bin/install -c .libs/glib-genmarshal.exe c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/bin/glib-genmarshal.exe
1137
+ make[5]: Leaving directory `/devel/src/gnome/glib/2.24.2-2_win32/gobject'
1138
+ make[4]: Leaving directory `/devel/src/gnome/glib/2.24.2-2_win32/gobject'
1139
+ Making install in tests
1140
+ make[4]: Entering directory `/devel/src/gnome/glib/2.24.2-2_win32/gobject/tests'
1141
+ CC threadtests.o
1142
+ CC dynamictests.o
1143
+ CCLD dynamictests.exe
1144
+ CCLD threadtests.exe
1145
+ make[5]: Entering directory `/devel/src/gnome/glib/2.24.2-2_win32/gobject/tests'
1146
+ make[5]: Nothing to be done for `install-exec-am'.
1147
+ make[5]: Nothing to be done for `install-data-am'.
1148
+ make[5]: Leaving directory `/devel/src/gnome/glib/2.24.2-2_win32/gobject/tests'
1149
+ make[4]: Leaving directory `/devel/src/gnome/glib/2.24.2-2_win32/gobject/tests'
1150
+ make[3]: Leaving directory `/devel/src/gnome/glib/2.24.2-2_win32/gobject'
1151
+ make[2]: Leaving directory `/devel/src/gnome/glib/2.24.2-2_win32/gobject'
1152
+ Making install in gio
1153
+ make[2]: Entering directory `/devel/src/gnome/glib/2.24.2-2_win32/gio'
1154
+ make install-recursive
1155
+ make[3]: Entering directory `/devel/src/gnome/glib/2.24.2-2_win32/gio'
1156
+ Making install in win32
1157
+ make[4]: Entering directory `/devel/src/gnome/glib/2.24.2-2_win32/gio/win32'
1158
+ CC libgiowin32_la-gwin32directorymonitor.lo
1159
+ CC libgiowin32_la-gwinhttpvfs.lo
1160
+ CC libgiowin32_la-gwinhttpfile.lo
1161
+ CC libgiowin32_la-gwinhttpfileinputstream.lo
1162
+ CC libgiowin32_la-gwinhttpfileoutputstream.lo
1163
+ CCLD libgiowin32.la
1164
+ make[5]: Entering directory `/devel/src/gnome/glib/2.24.2-2_win32/gio/win32'
1165
+ make[5]: Nothing to be done for `install-exec-am'.
1166
+ make[5]: Nothing to be done for `install-data-am'.
1167
+ make[5]: Leaving directory `/devel/src/gnome/glib/2.24.2-2_win32/gio/win32'
1168
+ make[4]: Leaving directory `/devel/src/gnome/glib/2.24.2-2_win32/gio/win32'
1169
+ Making install in .
1170
+ make[4]: Entering directory `/devel/src/gnome/glib/2.24.2-2_win32/gio'
1171
+ CC gappinfo.lo
1172
+ CC gasynchelper.lo
1173
+ CC gasyncinitable.lo
1174
+ CC gasyncresult.lo
1175
+ CC gbufferedinputstream.lo
1176
+ CC gbufferedoutputstream.lo
1177
+ CC gcancellable.lo
1178
+ CC gcontenttype.lo
1179
+ CC gcharsetconverter.lo
1180
+ CC gconverter.lo
1181
+ CC gconverterinputstream.lo
1182
+ CC gconverteroutputstream.lo
1183
+ CC gdatainputstream.lo
1184
+ CC gdataoutputstream.lo
1185
+ CC gdrive.lo
1186
+ CC gdummyfile.lo
1187
+ CC gemblem.lo
1188
+ CC gemblemedicon.lo
1189
+ CC gfile.lo
1190
+ CC gfileattribute.lo
1191
+ CC gfiledescriptorbased.lo
1192
+ CC gfileenumerator.lo
1193
+ CC gfileicon.lo
1194
+ CC gfileinfo.lo
1195
+ CC gfileinputstream.lo
1196
+ CC gfilemonitor.lo
1197
+ CC gfilenamecompleter.lo
1198
+ CC gfileoutputstream.lo
1199
+ CC gfileiostream.lo
1200
+ CC gfilterinputstream.lo
1201
+ CC gfilteroutputstream.lo
1202
+ CC gicon.lo
1203
+ CC ginetaddress.lo
1204
+ CC ginetsocketaddress.lo
1205
+ CC ginitable.lo
1206
+ CC ginputstream.lo
1207
+ CC gioerror.lo
1208
+ CC giomodule.lo
1209
+ CC gioscheduler.lo
1210
+ CC giostream.lo
1211
+ CC gloadableicon.lo
1212
+ CC gmount.lo
1213
+ CC gmemoryinputstream.lo
1214
+ CC gmemoryoutputstream.lo
1215
+ CC gmountoperation.lo
1216
+ CC gnativevolumemonitor.lo
1217
+ CC gnetworkaddress.lo
1218
+ CC gnetworkservice.lo
1219
+ CC goutputstream.lo
1220
+ CC gpollfilemonitor.lo
1221
+ CC gresolver.lo
1222
+ CC gseekable.lo
1223
+ CC gsimpleasyncresult.lo
1224
+ CC gsocket.lo
1225
+ CC gsocketaddress.lo
1226
+ CC gsocketaddressenumerator.lo
1227
+ gsocket.c: In function 'g_socket_details_from_fd':
1228
+ gsocket.c:316:3: warning: pointer targets in passing argument 5 of 'getsockopt' differ in signedness
1229
+ c:\opt\mingw\bin\../lib/gcc/mingw32/4.5.0/../../../../include/winsock2.h:543:32: note: expected 'int *' but argument is of type 'guint *'
1230
+ gsocket.c:360:32: warning: pointer targets in passing argument 3 of 'getsockname' differ in signedness
1231
+ c:\opt\mingw\bin\../lib/gcc/mingw32/4.5.0/../../../../include/winsock2.h:542:32: note: expected 'int *' but argument is of type 'guint *'
1232
+ gsocket.c:384:36: warning: pointer targets in passing argument 3 of 'getpeername' differ in signedness
1233
+ c:\opt\mingw\bin\../lib/gcc/mingw32/4.5.0/../../../../include/winsock2.h:541:32: note: expected 'int *' but argument is of type 'guint *'
1234
+ gsocket.c:390:5: warning: pointer targets in passing argument 5 of 'getsockopt' differ in signedness
1235
+ c:\opt\mingw\bin\../lib/gcc/mingw32/4.5.0/../../../../include/winsock2.h:543:32: note: expected 'int *' but argument is of type 'guint *'
1236
+ gsocket.c: In function 'g_socket_get_local_address':
1237
+ gsocket.c:1122:46: warning: pointer targets in passing argument 3 of 'getsockname' differ in signedness
1238
+ c:\opt\mingw\bin\../lib/gcc/mingw32/4.5.0/../../../../include/winsock2.h:542:32: note: expected 'int *' but argument is of type 'guint32 *'
1239
+ gsocket.c: In function 'g_socket_get_remote_address':
1240
+ gsocket.c:1155:46: warning: pointer targets in passing argument 3 of 'getpeername' differ in signedness
1241
+ c:\opt\mingw\bin\../lib/gcc/mingw32/4.5.0/../../../../include/winsock2.h:541:32: note: expected 'int *' but argument is of type 'guint32 *'
1242
+ gsocket.c: In function 'g_socket_check_connect_result':
1243
+ gsocket.c:1568:3: warning: pointer targets in passing argument 5 of 'getsockopt' differ in signedness
1244
+ c:\opt\mingw\bin\../lib/gcc/mingw32/4.5.0/../../../../include/winsock2.h:543:32: note: expected 'int *' but argument is of type 'guint *'
1245
+ CC gsocketclient.lo
1246
+ CC gsocketconnectable.lo
1247
+ CC gsocketconnection.lo
1248
+ CC gsocketcontrolmessage.lo
1249
+ CC gsocketinputstream.lo
1250
+ CC gsocketlistener.lo
1251
+ CC gsocketoutputstream.lo
1252
+ CC gsocketservice.lo
1253
+ CC gsrvtarget.lo
1254
+ CC gtcpconnection.lo
1255
+ CC gthreadedsocketservice.lo
1256
+ CC gthemedicon.lo
1257
+ CC gthreadedresolver.lo
1258
+ CC gunionvolumemonitor.lo
1259
+ CC gvfs.lo
1260
+ CC gvolume.lo
1261
+ CC gvolumemonitor.lo
1262
+ CC gzlibcompressor.lo
1263
+ CC gzlibdecompressor.lo
1264
+ CC gioenumtypes.lo
1265
+ CC gioaliasdef.lo
1266
+ CC gwin32appinfo.lo
1267
+ CC gwin32mount.lo
1268
+ CC gwin32resolver.lo
1269
+ CC gwin32volumemonitor.lo
1270
+ CC glocaldirectorymonitor.lo
1271
+ gwin32volumemonitor.c: In function 'get_connected_drives':
1272
+ gwin32volumemonitor.c:173:11: warning: unused variable 'wc_name'
1273
+ gwin32volumemonitor.c:172:11: warning: unused variable 'found'
1274
+ gwin32volumemonitor.c:171:11: warning: unused variable 'find_handle'
1275
+ CC glocalfile.lo
1276
+ CC glocalfileenumerator.lo
1277
+ CC glocalfileinfo.lo
1278
+ glocalfile.c:1564:1: warning: 'expand_all_symlinks' defined but not used
1279
+ CC glocalfileinputstream.lo
1280
+ CC glocalfilemonitor.lo
1281
+ CC glocalfileoutputstream.lo
1282
+ CC glocalfileiostream.lo
1283
+ CC glocalvfs.lo
1284
+ CC gio-marshal.lo
1285
+ cd .. && /bin/sh ./config.status gio/gio.rc
1286
+ (echo -e EXPORTS; gcc -mtune=pentium3 -mthreads -E -P -DINCLUDE_VARIABLES -DINCLUDE_INTERNAL_SYMBOLS -DG_OS_WIN32 -DALL_FILES - <./gio.symbols | sed -e '/^$/d' -e 's/^/ /' -e 's/G_GNUC_[^ ]*//g' | sort) > gio.def.tmp && \
1287
+ mv gio.def.tmp gio.def
1288
+ CC gio-querymodules.o
1289
+ config.status: creating gio/gio.rc
1290
+ windres gio.rc gio-win32-res.o
1291
+ CCLD libgio-2.0.la
1292
+ Creating library file: .libs/libgio-2.0.dll.a
1293
+ lib -machine:X86 -name:libgio-2.0-0.dll -def:gio.def -out:gio-2.0.lib
1294
+ CCLD gio-querymodules.exe
1295
+ Microsoft (R) Library Manager Version 6.00.8447
1296
+ Copyright (C) Microsoft Corp 1992-1998. All rights reserved.
1297
+
1298
+ Creating library gio-2.0.lib and object gio-2.0.exp
1299
+ make[5]: Entering directory `/devel/src/gnome/glib/2.24.2-2_win32/gio'
1300
+ test -z "c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib" || /bin/mkdir -p "c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib"
1301
+ /opt/local/bin/install -c gio-2.0.lib c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib
1302
+ /opt/local/bin/install -c gio.def c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib/gio-2.0.def
1303
+ test -z "c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/include/glib-2.0/gio/" || /bin/mkdir -p "c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/include/glib-2.0/gio/"
1304
+ test -z "" || /bin/mkdir -p ""
1305
+ /bin/sh ../libtool --mode=install /opt/local/bin/install -c libgio-2.0.la 'c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib'
1306
+ /bin/sh ../mkinstalldirs c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib/gio/modules
1307
+ /opt/local/bin/install -c -m 644 gappinfo.h gasyncinitable.h gasyncresult.h gbufferedinputstream.h gbufferedoutputstream.h gcancellable.h gcontenttype.h gcharsetconverter.h gconverter.h gconverterinputstream.h gconverteroutputstream.h gdatainputstream.h gdataoutputstream.h gdrive.h gemblem.h gemblemedicon.h gfile.h gfileattribute.h gfileenumerator.h gfileicon.h gfileinfo.h gfileinputstream.h gfilemonitor.h gfilenamecompleter.h gfileoutputstream.h gfileiostream.h gfilterinputstream.h gfilteroutputstream.h gicon.h ginetaddress.h ginetsocketaddress.h ginputstream.h ginitable.h gio.h giotypes.h gioenums.h gioerror.h giomodule.h gioscheduler.h giostream.h 'c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/include/glib-2.0/gio/'
1308
+ /opt/local/bin/install -c -m 644 gloadableicon.h gmount.h gmemoryinputstream.h gmemoryoutputstream.h gmountoperation.h gnativevolumemonitor.h gnetworkaddress.h gnetworkservice.h goutputstream.h gresolver.h gseekable.h gsimpleasyncresult.h gsocket.h gsocketaddress.h gsocketaddressenumerator.h gsocketclient.h gsocketconnectable.h gsocketconnection.h gsocketcontrolmessage.h gsocketlistener.h gsocketservice.h gsrvtarget.h gtcpconnection.h gthreadedsocketservice.h gthemedicon.h gvfs.h gvolume.h gvolumemonitor.h gzlibcompressor.h gzlibdecompressor.h gioenumtypes.h 'c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/include/glib-2.0/gio/'
1309
+ libtool: install: /opt/local/bin/install -c .libs/libgio-2.0.dll.a c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib/libgio-2.0.dll.a
1310
+ make install-data-hook
1311
+ libtool: install: base_file=`basename libgio-2.0.la`
1312
+ libtool: install: dlpath=`/bin/sh 2>&1 -c '. .libs/'libgio-2.0.la'i; echo libgio-2.0-0.dll'`
1313
+ libtool: install: dldir=c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib/`dirname ../bin/libgio-2.0-0.dll`
1314
+ libtool: install: test -d c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib/../bin || mkdir -p c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib/../bin
1315
+ libtool: install: /opt/local/bin/install -c .libs/libgio-2.0-0.dll c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib/../bin/libgio-2.0-0.dll
1316
+ libtool: install: chmod a+x c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib/../bin/libgio-2.0-0.dll
1317
+ libtool: install: if test -n '' && test -n 'strip --strip-unneeded'; then eval 'strip --strip-unneeded c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib/../bin/libgio-2.0-0.dll' || exit 0; fi
1318
+ libtool: install: /opt/local/bin/install -c .libs/libgio-2.0.lai c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib/libgio-2.0.la
1319
+ make[6]: Entering directory `/devel/src/gnome/glib/2.24.2-2_win32/gio'
1320
+ make[6]: Nothing to be done for `install-data-hook'.
1321
+ make[6]: Leaving directory `/devel/src/gnome/glib/2.24.2-2_win32/gio'
1322
+ ----------------------------------------------------------------------
1323
+ Libraries have been installed in:
1324
+ c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/lib
1325
+
1326
+ If you ever happen to want to link against installed libraries
1327
+ in a given directory, LIBDIR, you must either use libtool, and
1328
+ specify the full pathname of the library, or use the `-LLIBDIR'
1329
+ flag during linking and do at least one of the following:
1330
+ - add LIBDIR to the `PATH' environment variable
1331
+ during execution
1332
+ - add LIBDIR to the `LD_RUN_PATH' environment variable
1333
+ during linking
1334
+ - use the `-LLIBDIR' linker flag
1335
+
1336
+ See any operating system documentation about shared libraries for
1337
+ more information, such as the ld(1) and ld.so(8) manual pages.
1338
+ ----------------------------------------------------------------------
1339
+ test -z "c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/bin" || /bin/mkdir -p "c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/bin"
1340
+ /bin/sh ../libtool --mode=install /opt/local/bin/install -c gio-querymodules.exe 'c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/bin'
1341
+ libtool: install: /opt/local/bin/install -c .libs/gio-querymodules.exe c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/bin/gio-querymodules.exe
1342
+ make[5]: Leaving directory `/devel/src/gnome/glib/2.24.2-2_win32/gio'
1343
+ make[4]: Leaving directory `/devel/src/gnome/glib/2.24.2-2_win32/gio'
1344
+ Making install in tests
1345
+ make[4]: Entering directory `/devel/src/gnome/glib/2.24.2-2_win32/gio/tests'
1346
+ CC memory-input-stream.o
1347
+ CC memory-output-stream.o
1348
+ CC readwrite.o
1349
+ memory-output-stream.c: In function 'test_properties':
1350
+ memory-output-stream.c:118:3: warning: initialization makes integer from pointer without a cast
1351
+ memory-output-stream.c:118:3: warning: initialization makes integer from pointer without a cast
1352
+ CC g-file.o
1353
+ CC g-file-info.o
1354
+ CC converter-stream.o
1355
+ CC data-input-stream.o
1356
+ CC data-output-stream.o
1357
+ CC g-icon.o
1358
+ CC buffered-input-stream.o
1359
+ CC sleepy-stream.o
1360
+ CC filter-streams.o
1361
+ CC simple-async-result.o
1362
+ filter-streams.c:100:1: warning: 'test_input_async' defined but not used
1363
+ filter-streams.c:172:1: warning: 'test_output_async' defined but not used
1364
+ CC srvtarget.o
1365
+ CC contexts.o
1366
+ CC resolver.o
1367
+ CC socket-server.o
1368
+ CC socket-client.o
1369
+ CC echo-server.o
1370
+ CC httpd.o
1371
+ CC send-data.o
1372
+ CC filter-cat.o
1373
+ CCLD memory-input-stream.exe
1374
+ CCLD memory-output-stream.exe
1375
+ CCLD readwrite.exe
1376
+ CCLD g-file.exe
1377
+ CCLD g-file-info.exe
1378
+ CCLD converter-stream.exe
1379
+ CCLD data-input-stream.exe
1380
+ CCLD data-output-stream.exe
1381
+ CCLD g-icon.exe
1382
+ CCLD buffered-input-stream.exe
1383
+ CCLD sleepy-stream.exe
1384
+ CCLD filter-streams.exe
1385
+ CCLD simple-async-result.exe
1386
+ CCLD srvtarget.exe
1387
+ CCLD contexts.exe
1388
+ CCLD resolver.exe
1389
+ CCLD socket-server.exe
1390
+ CCLD socket-client.exe
1391
+ CCLD echo-server.exe
1392
+ CCLD httpd.exe
1393
+ CCLD send-data.exe
1394
+ CCLD filter-cat.exe
1395
+ make[5]: Entering directory `/devel/src/gnome/glib/2.24.2-2_win32/gio/tests'
1396
+ make[5]: Nothing to be done for `install-exec-am'.
1397
+ make[5]: Nothing to be done for `install-data-am'.
1398
+ make[5]: Leaving directory `/devel/src/gnome/glib/2.24.2-2_win32/gio/tests'
1399
+ make[4]: Leaving directory `/devel/src/gnome/glib/2.24.2-2_win32/gio/tests'
1400
+ make[3]: Leaving directory `/devel/src/gnome/glib/2.24.2-2_win32/gio'
1401
+ make[2]: Leaving directory `/devel/src/gnome/glib/2.24.2-2_win32/gio'
1402
+ Making install in tests
1403
+ make[2]: Entering directory `/devel/src/gnome/glib/2.24.2-2_win32/tests'
1404
+ Making install in gobject
1405
+ make[3]: Entering directory `/devel/src/gnome/glib/2.24.2-2_win32/tests/gobject'
1406
+ ../../gobject/glib-genmarshal --prefix=test_marshal ./testmarshal.list --header >> xgen-gmh \
1407
+ && (cmp -s xgen-gmh testmarshal.h 2>/dev/null || cp xgen-gmh testmarshal.h) \
1408
+ && rm -f xgen-gmh xgen-gmh~ \
1409
+ && echo timestamp > stamp-testmarshal.h
1410
+ ../../gobject/glib-genmarshal --prefix=test_marshal ./testmarshal.list --body >> xgen-gmc \
1411
+ && cp xgen-gmc testmarshal.c \
1412
+ && rm -f xgen-gmc xgen-gmc~
1413
+ make install-am
1414
+ make[4]: Entering directory `/devel/src/gnome/glib/2.24.2-2_win32/tests/gobject'
1415
+ CC testmarshal.lo
1416
+ CC testmodule.lo
1417
+ CCLD libtestgobject.la
1418
+ make[5]: Entering directory `/devel/src/gnome/glib/2.24.2-2_win32/tests/gobject'
1419
+ make[5]: Nothing to be done for `install-exec-am'.
1420
+ make[5]: Nothing to be done for `install-data-am'.
1421
+ make[5]: Leaving directory `/devel/src/gnome/glib/2.24.2-2_win32/tests/gobject'
1422
+ make[4]: Leaving directory `/devel/src/gnome/glib/2.24.2-2_win32/tests/gobject'
1423
+ make[3]: Leaving directory `/devel/src/gnome/glib/2.24.2-2_win32/tests/gobject'
1424
+ Making install in refcount
1425
+ make[3]: Entering directory `/devel/src/gnome/glib/2.24.2-2_win32/tests/refcount'
1426
+ make[4]: Entering directory `/devel/src/gnome/glib/2.24.2-2_win32/tests/refcount'
1427
+ make[4]: Nothing to be done for `install-exec-am'.
1428
+ make[4]: Nothing to be done for `install-data-am'.
1429
+ make[4]: Leaving directory `/devel/src/gnome/glib/2.24.2-2_win32/tests/refcount'
1430
+ make[3]: Leaving directory `/devel/src/gnome/glib/2.24.2-2_win32/tests/refcount'
1431
+ make[3]: Entering directory `/devel/src/gnome/glib/2.24.2-2_win32/tests'
1432
+ CC libmoduletestplugin_a.lo
1433
+ CC libmoduletestplugin_b.lo
1434
+ CC scannerapi.o
1435
+ CC testglib.o
1436
+ testglib.c: In function 'various_string_tests':
1437
+ testglib.c:1312:6: warning: assignment discards qualifiers from pointer target type
1438
+ CC testingbase64.o
1439
+ CC testgdate.o
1440
+ CC testgdateparser.o
1441
+ CC unicode-normalize.o
1442
+ CC unicode-collate.o
1443
+ CC errorcheck-mutex-test.o
1444
+ CC assert-msg-test.o
1445
+ CCLD libmoduletestplugin_a.la
1446
+ CCLD libmoduletestplugin_b.la
1447
+ CCLD scannerapi.exe
1448
+ Creating library file: .libs/libmoduletestplugin_a.dll.a
1449
+ Creating library file: .libs/libmoduletestplugin_b.dll.a
1450
+ CCLD testglib.exe
1451
+ CCLD testingbase64.exe
1452
+ CCLD testgdate.exe
1453
+ CCLD testgdateparser.exe
1454
+ CCLD unicode-normalize.exe
1455
+ CCLD unicode-collate.exe
1456
+ CCLD errorcheck-mutex-test.exe
1457
+ CCLD assert-msg-test.exe
1458
+ make[4]: Entering directory `/devel/src/gnome/glib/2.24.2-2_win32/tests'
1459
+ make[4]: Nothing to be done for `install-exec-am'.
1460
+ make[4]: Nothing to be done for `install-data-am'.
1461
+ make[4]: Leaving directory `/devel/src/gnome/glib/2.24.2-2_win32/tests'
1462
+ make[3]: Leaving directory `/devel/src/gnome/glib/2.24.2-2_win32/tests'
1463
+ make[2]: Leaving directory `/devel/src/gnome/glib/2.24.2-2_win32/tests'
1464
+ Making install in po
1465
+ make[2]: Entering directory `/devel/src/gnome/glib/2.24.2-2_win32/po'
1466
+ if test -r ".././mkinstalldirs"; then \
1467
+ .././mkinstalldirs c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share; \
1468
+ else \
1469
+ /bin/sh ../mkinstalldirs c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share; \
1470
+ fi
1471
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/af/LC_MESSAGES
1472
+ installing af.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/af/LC_MESSAGES/glib20.mo
1473
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/am/LC_MESSAGES
1474
+ installing am.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/am/LC_MESSAGES/glib20.mo
1475
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/ar/LC_MESSAGES
1476
+ installing ar.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/ar/LC_MESSAGES/glib20.mo
1477
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/as/LC_MESSAGES
1478
+ installing as.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/as/LC_MESSAGES/glib20.mo
1479
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/ast/LC_MESSAGES
1480
+ installing ast.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/ast/LC_MESSAGES/glib20.mo
1481
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/az/LC_MESSAGES
1482
+ installing az.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/az/LC_MESSAGES/glib20.mo
1483
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/be/LC_MESSAGES
1484
+ installing be.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/be/LC_MESSAGES/glib20.mo
1485
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/be@latin/LC_MESSAGES
1486
+ installing be@latin.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/be@latin/LC_MESSAGES/glib20.mo
1487
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/bg/LC_MESSAGES
1488
+ installing bg.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/bg/LC_MESSAGES/glib20.mo
1489
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/bn/LC_MESSAGES
1490
+ installing bn.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/bn/LC_MESSAGES/glib20.mo
1491
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/bn_IN/LC_MESSAGES
1492
+ installing bn_IN.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/bn_IN/LC_MESSAGES/glib20.mo
1493
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/bs/LC_MESSAGES
1494
+ installing bs.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/bs/LC_MESSAGES/glib20.mo
1495
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/ca/LC_MESSAGES
1496
+ installing ca.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/ca/LC_MESSAGES/glib20.mo
1497
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/ca@valencia/LC_MESSAGES
1498
+ installing ca@valencia.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/ca@valencia/LC_MESSAGES/glib20.mo
1499
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/cs/LC_MESSAGES
1500
+ installing cs.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/cs/LC_MESSAGES/glib20.mo
1501
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/cy/LC_MESSAGES
1502
+ installing cy.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/cy/LC_MESSAGES/glib20.mo
1503
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/da/LC_MESSAGES
1504
+ installing da.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/da/LC_MESSAGES/glib20.mo
1505
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/de/LC_MESSAGES
1506
+ installing de.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/de/LC_MESSAGES/glib20.mo
1507
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/dz/LC_MESSAGES
1508
+ installing dz.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/dz/LC_MESSAGES/glib20.mo
1509
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/el/LC_MESSAGES
1510
+ installing el.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/el/LC_MESSAGES/glib20.mo
1511
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/en_CA/LC_MESSAGES
1512
+ installing en_CA.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/en_CA/LC_MESSAGES/glib20.mo
1513
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/en_GB/LC_MESSAGES
1514
+ installing en_GB.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/en_GB/LC_MESSAGES/glib20.mo
1515
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/en@shaw/LC_MESSAGES
1516
+ installing en@shaw.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/en@shaw/LC_MESSAGES/glib20.mo
1517
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/eo/LC_MESSAGES
1518
+ installing eo.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/eo/LC_MESSAGES/glib20.mo
1519
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/es/LC_MESSAGES
1520
+ installing es.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/es/LC_MESSAGES/glib20.mo
1521
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/et/LC_MESSAGES
1522
+ installing et.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/et/LC_MESSAGES/glib20.mo
1523
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/eu/LC_MESSAGES
1524
+ installing eu.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/eu/LC_MESSAGES/glib20.mo
1525
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/fa/LC_MESSAGES
1526
+ installing fa.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/fa/LC_MESSAGES/glib20.mo
1527
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/fi/LC_MESSAGES
1528
+ installing fi.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/fi/LC_MESSAGES/glib20.mo
1529
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/fr/LC_MESSAGES
1530
+ installing fr.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/fr/LC_MESSAGES/glib20.mo
1531
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/ga/LC_MESSAGES
1532
+ installing ga.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/ga/LC_MESSAGES/glib20.mo
1533
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/gl/LC_MESSAGES
1534
+ installing gl.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/gl/LC_MESSAGES/glib20.mo
1535
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/gu/LC_MESSAGES
1536
+ installing gu.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/gu/LC_MESSAGES/glib20.mo
1537
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/he/LC_MESSAGES
1538
+ installing he.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/he/LC_MESSAGES/glib20.mo
1539
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/hi/LC_MESSAGES
1540
+ installing hi.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/hi/LC_MESSAGES/glib20.mo
1541
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/hr/LC_MESSAGES
1542
+ installing hr.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/hr/LC_MESSAGES/glib20.mo
1543
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/hu/LC_MESSAGES
1544
+ installing hu.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/hu/LC_MESSAGES/glib20.mo
1545
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/hy/LC_MESSAGES
1546
+ installing hy.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/hy/LC_MESSAGES/glib20.mo
1547
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/id/LC_MESSAGES
1548
+ installing id.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/id/LC_MESSAGES/glib20.mo
1549
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/is/LC_MESSAGES
1550
+ installing is.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/is/LC_MESSAGES/glib20.mo
1551
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/it/LC_MESSAGES
1552
+ installing it.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/it/LC_MESSAGES/glib20.mo
1553
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/ja/LC_MESSAGES
1554
+ installing ja.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/ja/LC_MESSAGES/glib20.mo
1555
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/ka/LC_MESSAGES
1556
+ installing ka.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/ka/LC_MESSAGES/glib20.mo
1557
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/kn/LC_MESSAGES
1558
+ installing kn.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/kn/LC_MESSAGES/glib20.mo
1559
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/ko/LC_MESSAGES
1560
+ installing ko.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/ko/LC_MESSAGES/glib20.mo
1561
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/ku/LC_MESSAGES
1562
+ installing ku.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/ku/LC_MESSAGES/glib20.mo
1563
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/lt/LC_MESSAGES
1564
+ installing lt.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/lt/LC_MESSAGES/glib20.mo
1565
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/lv/LC_MESSAGES
1566
+ installing lv.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/lv/LC_MESSAGES/glib20.mo
1567
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/mai/LC_MESSAGES
1568
+ installing mai.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/mai/LC_MESSAGES/glib20.mo
1569
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/mg/LC_MESSAGES
1570
+ installing mg.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/mg/LC_MESSAGES/glib20.mo
1571
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/mk/LC_MESSAGES
1572
+ installing mk.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/mk/LC_MESSAGES/glib20.mo
1573
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/ml/LC_MESSAGES
1574
+ installing ml.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/ml/LC_MESSAGES/glib20.mo
1575
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/mn/LC_MESSAGES
1576
+ installing mn.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/mn/LC_MESSAGES/glib20.mo
1577
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/mr/LC_MESSAGES
1578
+ installing mr.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/mr/LC_MESSAGES/glib20.mo
1579
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/ms/LC_MESSAGES
1580
+ installing ms.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/ms/LC_MESSAGES/glib20.mo
1581
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/nb/LC_MESSAGES
1582
+ installing nb.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/nb/LC_MESSAGES/glib20.mo
1583
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/nds/LC_MESSAGES
1584
+ installing nds.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/nds/LC_MESSAGES/glib20.mo
1585
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/ne/LC_MESSAGES
1586
+ installing ne.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/ne/LC_MESSAGES/glib20.mo
1587
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/nl/LC_MESSAGES
1588
+ installing nl.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/nl/LC_MESSAGES/glib20.mo
1589
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/nn/LC_MESSAGES
1590
+ installing nn.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/nn/LC_MESSAGES/glib20.mo
1591
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/oc/LC_MESSAGES
1592
+ installing oc.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/oc/LC_MESSAGES/glib20.mo
1593
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/or/LC_MESSAGES
1594
+ installing or.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/or/LC_MESSAGES/glib20.mo
1595
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/pa/LC_MESSAGES
1596
+ installing pa.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/pa/LC_MESSAGES/glib20.mo
1597
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/pl/LC_MESSAGES
1598
+ installing pl.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/pl/LC_MESSAGES/glib20.mo
1599
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/ps/LC_MESSAGES
1600
+ installing ps.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/ps/LC_MESSAGES/glib20.mo
1601
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/pt/LC_MESSAGES
1602
+ installing pt.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/pt/LC_MESSAGES/glib20.mo
1603
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/pt_BR/LC_MESSAGES
1604
+ installing pt_BR.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/pt_BR/LC_MESSAGES/glib20.mo
1605
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/ro/LC_MESSAGES
1606
+ installing ro.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/ro/LC_MESSAGES/glib20.mo
1607
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/ru/LC_MESSAGES
1608
+ installing ru.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/ru/LC_MESSAGES/glib20.mo
1609
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/rw/LC_MESSAGES
1610
+ installing rw.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/rw/LC_MESSAGES/glib20.mo
1611
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/si/LC_MESSAGES
1612
+ installing si.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/si/LC_MESSAGES/glib20.mo
1613
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/sk/LC_MESSAGES
1614
+ installing sk.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/sk/LC_MESSAGES/glib20.mo
1615
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/sl/LC_MESSAGES
1616
+ installing sl.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/sl/LC_MESSAGES/glib20.mo
1617
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/sq/LC_MESSAGES
1618
+ installing sq.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/sq/LC_MESSAGES/glib20.mo
1619
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/sr/LC_MESSAGES
1620
+ installing sr.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/sr/LC_MESSAGES/glib20.mo
1621
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/sr@latin/LC_MESSAGES
1622
+ installing sr@latin.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/sr@latin/LC_MESSAGES/glib20.mo
1623
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/sr@ije/LC_MESSAGES
1624
+ installing sr@ije.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/sr@ije/LC_MESSAGES/glib20.mo
1625
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/sv/LC_MESSAGES
1626
+ installing sv.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/sv/LC_MESSAGES/glib20.mo
1627
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/ta/LC_MESSAGES
1628
+ installing ta.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/ta/LC_MESSAGES/glib20.mo
1629
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/te/LC_MESSAGES
1630
+ installing te.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/te/LC_MESSAGES/glib20.mo
1631
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/th/LC_MESSAGES
1632
+ installing th.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/th/LC_MESSAGES/glib20.mo
1633
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/tl/LC_MESSAGES
1634
+ installing tl.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/tl/LC_MESSAGES/glib20.mo
1635
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/tr/LC_MESSAGES
1636
+ installing tr.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/tr/LC_MESSAGES/glib20.mo
1637
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/tt/LC_MESSAGES
1638
+ installing tt.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/tt/LC_MESSAGES/glib20.mo
1639
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/uk/LC_MESSAGES
1640
+ installing uk.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/uk/LC_MESSAGES/glib20.mo
1641
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/vi/LC_MESSAGES
1642
+ installing vi.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/vi/LC_MESSAGES/glib20.mo
1643
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/wa/LC_MESSAGES
1644
+ installing wa.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/wa/LC_MESSAGES/glib20.mo
1645
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/xh/LC_MESSAGES
1646
+ installing xh.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/xh/LC_MESSAGES/glib20.mo
1647
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/yi/LC_MESSAGES
1648
+ installing yi.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/yi/LC_MESSAGES/glib20.mo
1649
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/zh_CN/LC_MESSAGES
1650
+ installing zh_CN.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/zh_CN/LC_MESSAGES/glib20.mo
1651
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/zh_HK/LC_MESSAGES
1652
+ installing zh_HK.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/zh_HK/LC_MESSAGES/glib20.mo
1653
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/zh_TW/LC_MESSAGES
1654
+ installing zh_TW.gmo as c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/locale/zh_TW/LC_MESSAGES/glib20.mo
1655
+ if test "glib" = "glib"; then \
1656
+ if test -r ".././mkinstalldirs"; then \
1657
+ .././mkinstalldirs c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/glib-2.0/gettext/po; \
1658
+ else \
1659
+ /bin/sh ../mkinstalldirs c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/glib-2.0/gettext/po; \
1660
+ fi; \
1661
+ /opt/local/bin/install -c -m 644 ./Makefile.in.in \
1662
+ c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/glib-2.0/gettext/po/Makefile.in.in; \
1663
+ else \
1664
+ : ; \
1665
+ fi
1666
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/glib-2.0/gettext/po
1667
+ make[2]: Leaving directory `/devel/src/gnome/glib/2.24.2-2_win32/po'
1668
+ Making install in docs
1669
+ make[2]: Entering directory `/devel/src/gnome/glib/2.24.2-2_win32/docs'
1670
+ Making install in reference
1671
+ make[3]: Entering directory `/devel/src/gnome/glib/2.24.2-2_win32/docs/reference'
1672
+ Making install in glib
1673
+ make[4]: Entering directory `/devel/src/gnome/glib/2.24.2-2_win32/docs/reference/glib'
1674
+ make[5]: Entering directory `/devel/src/gnome/glib/2.24.2-2_win32/docs/reference/glib'
1675
+ make[5]: Nothing to be done for `install-exec-am'.
1676
+ test -z "c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/man/man1" || /bin/mkdir -p "c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/man/man1"
1677
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/gtk-doc/html/glib
1678
+ -- Installing ./html/api-index-2-10.html
1679
+ -- Installing ./html/api-index-2-12.html
1680
+ /opt/local/bin/install -c -m 644 glib-gettextize.1 gtester.1 gtester-report.1 'c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/man/man1'
1681
+ -- Installing ./html/api-index-2-14.html
1682
+ -- Installing ./html/api-index-2-16.html
1683
+ -- Installing ./html/api-index-2-18.html
1684
+ -- Installing ./html/api-index-2-2.html
1685
+ -- Installing ./html/api-index-2-20.html
1686
+ -- Installing ./html/api-index-2-22.html
1687
+ -- Installing ./html/api-index-2-24.html
1688
+ -- Installing ./html/api-index-2-4.html
1689
+ -- Installing ./html/api-index-2-6.html
1690
+ -- Installing ./html/api-index-2-8.html
1691
+ -- Installing ./html/api-index-deprecated.html
1692
+ -- Installing ./html/api-index-full.html
1693
+ -- Installing ./html/file-name-encodings.png
1694
+ -- Installing ./html/glib-Arrays.html
1695
+ -- Installing ./html/glib-Asynchronous-Queues.html
1696
+ -- Installing ./html/glib-Atomic-Operations.html
1697
+ -- Installing ./html/glib-Automatic-String-Completion.html
1698
+ -- Installing ./html/glib-Balanced-Binary-Trees.html
1699
+ -- Installing ./html/glib-Base64-Encoding.html
1700
+ -- Installing ./html/glib-Basic-Types.html
1701
+ -- Installing ./html/glib-Bookmark-file-parser.html
1702
+ -- Installing ./html/glib-Byte-Arrays.html
1703
+ -- Installing ./html/glib-Byte-Order-Macros.html
1704
+ -- Installing ./html/glib-Caches.html
1705
+ -- Installing ./html/glib-Character-Set-Conversion.html
1706
+ -- Installing ./html/glib-Commandline-option-parser.html
1707
+ -- Installing ./html/glib-Data-Checksums.html
1708
+ -- Installing ./html/glib-Datasets.html
1709
+ -- Installing ./html/glib-Date-and-Time-Functions.html
1710
+ -- Installing ./html/glib-Double-ended-Queues.html
1711
+ -- Installing ./html/glib-Doubly-Linked-Lists.html
1712
+ -- Installing ./html/glib-Dynamic-Loading-of-Modules.html
1713
+ -- Installing ./html/glib-Error-Reporting.html
1714
+ -- Installing ./html/glib-File-Utilities.html
1715
+ -- Installing ./html/glib-GVariant.html
1716
+ -- Installing ./html/glib-GVariantType.html
1717
+ -- Installing ./html/glib-Glob-style-pattern-matching.html
1718
+ -- Installing ./html/glib-Hash-Tables.html
1719
+ -- Installing ./html/glib-Hook-Functions.html
1720
+ -- Installing ./html/glib-Hostname-Utilities.html
1721
+ -- Installing ./html/glib-I18N.html
1722
+ -- Installing ./html/glib-IO-Channels.html
1723
+ -- Installing ./html/glib-Key-value-file-parser.html
1724
+ -- Installing ./html/glib-Keyed-Data-Lists.html
1725
+ -- Installing ./html/glib-Lexical-Scanner.html
1726
+ -- Installing ./html/glib-Limits-of-Basic-Types.html
1727
+ -- Installing ./html/glib-Memory-Allocation.html
1728
+ -- Installing ./html/glib-Memory-Allocators.html
1729
+ -- Installing ./html/glib-Memory-Chunks.html
1730
+ -- Installing ./html/glib-Memory-Slices.html
1731
+ -- Installing ./html/glib-Message-Logging.html
1732
+ -- Installing ./html/glib-Miscellaneous-Macros.html
1733
+ -- Installing ./html/glib-Miscellaneous-Utility-Functions.html
1734
+ -- Installing ./html/glib-N-ary-Trees.html
1735
+ -- Installing ./html/glib-Numerical-Definitions.html
1736
+ -- Installing ./html/glib-Perl-compatible-regular-expressions.html
1737
+ -- Installing ./html/glib-Pointer-Arrays.html
1738
+ -- Installing ./html/glib-Quarks.html
1739
+ -- Installing ./html/glib-Random-Numbers.html
1740
+ -- Installing ./html/glib-Relations-and-Tuples.html
1741
+ -- Installing ./html/glib-Sequences.html
1742
+ -- Installing ./html/glib-Shell-related-Utilities.html
1743
+ -- Installing ./html/glib-Simple-XML-Subset-Parser.html
1744
+ -- Installing ./html/glib-Singly-Linked-Lists.html
1745
+ -- Installing ./html/glib-Spawning-Processes.html
1746
+ -- Installing ./html/glib-Standard-Macros.html
1747
+ -- Installing ./html/glib-String-Chunks.html
1748
+ -- Installing ./html/glib-String-Utility-Functions.html
1749
+ -- Installing ./html/glib-Strings.html
1750
+ -- Installing ./html/glib-Testing.html
1751
+ -- Installing ./html/glib-The-Main-Event-Loop.html
1752
+ -- Installing ./html/glib-Thread-Pools.html
1753
+ -- Installing ./html/glib-Threads.html
1754
+ -- Installing ./html/glib-Timers.html
1755
+ -- Installing ./html/glib-Trash-Stacks.html
1756
+ -- Installing ./html/glib-Type-Conversion-Macros.html
1757
+ -- Installing ./html/glib-URI-Functions.html
1758
+ -- Installing ./html/glib-Unicode-Manipulation.html
1759
+ -- Installing ./html/glib-Version-Information.html
1760
+ -- Installing ./html/glib-Warnings-and-Assertions.html
1761
+ -- Installing ./html/glib-Windows-Compatibility-Functions.html
1762
+ -- Installing ./html/glib-building.html
1763
+ -- Installing ./html/glib-changes.html
1764
+ -- Installing ./html/glib-compiling.html
1765
+ -- Installing ./html/glib-core.html
1766
+ -- Installing ./html/glib-cross-compiling.html
1767
+ -- Installing ./html/glib-data-types.html
1768
+ -- Installing ./html/glib-fundamentals.html
1769
+ -- Installing ./html/glib-gettextize.html
1770
+ -- Installing ./html/glib-regex-syntax.html
1771
+ -- Installing ./html/glib-resources.html
1772
+ -- Installing ./html/glib-running.html
1773
+ -- Installing ./html/glib-utilities.html
1774
+ -- Installing ./html/glib.devhelp
1775
+ -- Installing ./html/glib.devhelp2
1776
+ -- Installing ./html/glib.html
1777
+ -- Installing ./html/gtester-report.html
1778
+ -- Installing ./html/gtester.html
1779
+ -- Installing ./html/gvariant-format-strings.html
1780
+ -- Installing ./html/home.png
1781
+ -- Installing ./html/index.html
1782
+ -- Installing ./html/index.sgml
1783
+ -- Installing ./html/left.png
1784
+ -- Installing ./html/mainloop-states.gif
1785
+ -- Installing ./html/right.png
1786
+ -- Installing ./html/style.css
1787
+ -- Installing ./html/tools.html
1788
+ -- Installing ./html/up.png
1789
+ make[5]: Leaving directory `/devel/src/gnome/glib/2.24.2-2_win32/docs/reference/glib'
1790
+ make[4]: Leaving directory `/devel/src/gnome/glib/2.24.2-2_win32/docs/reference/glib'
1791
+ Making install in gobject
1792
+ make[4]: Entering directory `/devel/src/gnome/glib/2.24.2-2_win32/docs/reference/gobject'
1793
+ make[5]: Entering directory `/devel/src/gnome/glib/2.24.2-2_win32/docs/reference/gobject'
1794
+ make[5]: Nothing to be done for `install-exec-am'.
1795
+ test -z "c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/man/man1" || /bin/mkdir -p "c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/man/man1"
1796
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/gtk-doc/html/gobject
1797
+ -- Installing ./html/GTypeModule.html
1798
+ -- Installing ./html/GTypePlugin.html
1799
+ /opt/local/bin/install -c -m 644 glib-mkenums.1 glib-genmarshal.1 gobject-query.1 'c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/man/man1'
1800
+ -- Installing ./html/api-index-2-10.html
1801
+ -- Installing ./html/api-index-2-12.html
1802
+ -- Installing ./html/api-index-2-14.html
1803
+ -- Installing ./html/api-index-2-18.html
1804
+ -- Installing ./html/api-index-2-2.html
1805
+ -- Installing ./html/api-index-2-22.html
1806
+ -- Installing ./html/api-index-2-24.html
1807
+ -- Installing ./html/api-index-2-4.html
1808
+ -- Installing ./html/api-index-2-6.html
1809
+ -- Installing ./html/api-index-2-8.html
1810
+ -- Installing ./html/api-index-deprecated.html
1811
+ -- Installing ./html/api-index-full.html
1812
+ -- Installing ./html/ch01s02.html
1813
+ -- Installing ./html/ch06s03.html
1814
+ -- Installing ./html/chapter-gobject.html
1815
+ -- Installing ./html/chapter-gtype.html
1816
+ -- Installing ./html/chapter-intro.html
1817
+ -- Installing ./html/chapter-signal.html
1818
+ -- Installing ./html/glib-genmarshal.html
1819
+ -- Installing ./html/glib-mkenums.html
1820
+ -- Installing ./html/glue.png
1821
+ -- Installing ./html/gobject-Boxed-Types.html
1822
+ -- Installing ./html/gobject-Closures.html
1823
+ -- Installing ./html/gobject-Enumeration-and-Flag-Types.html
1824
+ -- Installing ./html/gobject-GParamSpec.html
1825
+ -- Installing ./html/gobject-Generic-values.html
1826
+ -- Installing ./html/gobject-Signals.html
1827
+ -- Installing ./html/gobject-Standard-Parameter-and-Value-Types.html
1828
+ -- Installing ./html/gobject-The-Base-Object-Type.html
1829
+ -- Installing ./html/gobject-Type-Information.html
1830
+ -- Installing ./html/gobject-Value-arrays.html
1831
+ -- Installing ./html/gobject-Varargs-Value-Collection.html
1832
+ -- Installing ./html/gobject-memory.html
1833
+ -- Installing ./html/gobject-properties.html
1834
+ -- Installing ./html/gobject-query.html
1835
+ -- Installing ./html/gobject.devhelp
1836
+ -- Installing ./html/gobject.devhelp2
1837
+ -- Installing ./html/gtype-conventions.html
1838
+ -- Installing ./html/gtype-instantiable-classed.html
1839
+ -- Installing ./html/gtype-non-instantiable-classed.html
1840
+ -- Installing ./html/gtype-non-instantiable.html
1841
+ -- Installing ./html/home.png
1842
+ -- Installing ./html/howto-gobject-chainup.html
1843
+ -- Installing ./html/howto-gobject-code.html
1844
+ -- Installing ./html/howto-gobject-construction.html
1845
+ -- Installing ./html/howto-gobject-destruction.html
1846
+ -- Installing ./html/howto-gobject-methods.html
1847
+ -- Installing ./html/howto-gobject.html
1848
+ -- Installing ./html/howto-interface-implement.html
1849
+ -- Installing ./html/howto-interface-properties.html
1850
+ -- Installing ./html/howto-interface.html
1851
+ -- Installing ./html/howto-signals.html
1852
+ -- Installing ./html/index.html
1853
+ -- Installing ./html/index.sgml
1854
+ -- Installing ./html/left.png
1855
+ -- Installing ./html/pr01.html
1856
+ -- Installing ./html/pt01.html
1857
+ -- Installing ./html/pt02.html
1858
+ -- Installing ./html/pt03.html
1859
+ -- Installing ./html/right.png
1860
+ -- Installing ./html/rn01.html
1861
+ -- Installing ./html/rn02.html
1862
+ -- Installing ./html/signal.html
1863
+ -- Installing ./html/style.css
1864
+ -- Installing ./html/tools-ginspector.html
1865
+ -- Installing ./html/tools-gob.html
1866
+ -- Installing ./html/tools-gtkdoc.html
1867
+ -- Installing ./html/tools-refdb.html
1868
+ -- Installing ./html/tools-vala.html
1869
+ -- Installing ./html/up.png
1870
+ make[5]: Leaving directory `/devel/src/gnome/glib/2.24.2-2_win32/docs/reference/gobject'
1871
+ make[4]: Leaving directory `/devel/src/gnome/glib/2.24.2-2_win32/docs/reference/gobject'
1872
+ Making install in gio
1873
+ make[4]: Entering directory `/devel/src/gnome/glib/2.24.2-2_win32/docs/reference/gio'
1874
+ make[5]: Entering directory `/devel/src/gnome/glib/2.24.2-2_win32/docs/reference/gio'
1875
+ make[5]: Nothing to be done for `install-exec-am'.
1876
+ mkdir -p -- c:/devel/target/fd56e00a6de2dc0ebdb82aea42c4eec0/share/gtk-doc/html/gio
1877
+ -- Installing ./html/GAppInfo.html
1878
+ -- Installing ./html/GAsyncInitable.html
1879
+ -- Installing ./html/GAsyncResult.html
1880
+ -- Installing ./html/GBufferedInputStream.html
1881
+ -- Installing ./html/GBufferedOutputStream.html
1882
+ -- Installing ./html/GCancellable.html
1883
+ -- Installing ./html/GCharsetConverter.html
1884
+ -- Installing ./html/GConverter.html
1885
+ -- Installing ./html/GDataInputStream.html
1886
+ -- Installing ./html/GDataOutputStream.html
1887
+ -- Installing ./html/GDrive.html
1888
+ -- Installing ./html/GEmblem.html
1889
+ -- Installing ./html/GEmblemedIcon.html
1890
+ -- Installing ./html/GFile.html
1891
+ -- Installing ./html/GFileDescriptorBased.html
1892
+ -- Installing ./html/GFileEnumerator.html
1893
+ -- Installing ./html/GFileIOStream.html
1894
+ -- Installing ./html/GFileIcon.html
1895
+ -- Installing ./html/GFileInfo.html
1896
+ -- Installing ./html/GFileInputStream.html
1897
+ -- Installing ./html/GFileMonitor.html
1898
+ -- Installing ./html/GFileOutputStream.html
1899
+ -- Installing ./html/GFilenameCompleter.html
1900
+ -- Installing ./html/GFilterInputStream.html
1901
+ -- Installing ./html/GFilterOutputStream.html
1902
+ -- Installing ./html/GIOModule.html
1903
+ -- Installing ./html/GIOStream.html
1904
+ -- Installing ./html/GIcon.html
1905
+ -- Installing ./html/GInetAddress.html
1906
+ -- Installing ./html/GInetSocketAddress.html
1907
+ -- Installing ./html/GInitable.html
1908
+ -- Installing ./html/GInputStream.html
1909
+ -- Installing ./html/GLoadableIcon.html
1910
+ -- Installing ./html/GMemoryInputStream.html
1911
+ -- Installing ./html/GMemoryOutputStream.html
1912
+ -- Installing ./html/GMount.html
1913
+ -- Installing ./html/GMountOperation.html
1914
+ -- Installing ./html/GNetworkAddress.html
1915
+ -- Installing ./html/GNetworkService.html
1916
+ -- Installing ./html/GOutputStream.html
1917
+ -- Installing ./html/GResolver.html
1918
+ -- Installing ./html/GSeekable.html
1919
+ -- Installing ./html/GSimpleAsyncResult.html
1920
+ -- Installing ./html/GSocket.html
1921
+ -- Installing ./html/GSocketAddress.html
1922
+ -- Installing ./html/GSocketClient.html
1923
+ -- Installing ./html/GSocketConnectable.html
1924
+ -- Installing ./html/GSocketConnection.html
1925
+ -- Installing ./html/GSocketControlMessage.html
1926
+ -- Installing ./html/GSocketListener.html
1927
+ -- Installing ./html/GSocketService.html
1928
+ -- Installing ./html/GThemedIcon.html
1929
+ -- Installing ./html/GThreadedSocketService.html
1930
+ -- Installing ./html/GUnixFDList.html
1931
+ -- Installing ./html/GUnixFDMessage.html
1932
+ -- Installing ./html/GUnixInputStream.html
1933
+ -- Installing ./html/GUnixOutputStream.html
1934
+ -- Installing ./html/GUnixSocketAddress.html
1935
+ -- Installing ./html/GVfs.html
1936
+ -- Installing ./html/GVolume.html
1937
+ -- Installing ./html/GVolumeMonitor.html
1938
+ -- Installing ./html/GZlibCompressor.html
1939
+ -- Installing ./html/GZlibDecompressor.html
1940
+ -- Installing ./html/api-index-2-18.html
1941
+ -- Installing ./html/api-index-2-20.html
1942
+ -- Installing ./html/api-index-2-22.html
1943
+ -- Installing ./html/api-index-2-24.html
1944
+ -- Installing ./html/api-index-deprecated.html
1945
+ -- Installing ./html/api-index-full.html
1946
+ -- Installing ./html/async.html
1947
+ -- Installing ./html/ch01.html
1948
+ -- Installing ./html/ch02.html
1949
+ -- Installing ./html/ch03.html
1950
+ -- Installing ./html/ch19.html
1951
+ -- Installing ./html/ch20.html
1952
+ -- Installing ./html/ch20s02.html
1953
+ -- Installing ./html/ch20s03.html
1954
+ -- Installing ./html/conversion.html
1955
+ -- Installing ./html/extending-gio.html
1956
+ -- Installing ./html/extending.html
1957
+ -- Installing ./html/failable_initialization.html
1958
+ -- Installing ./html/file_mon.html
1959
+ -- Installing ./html/file_ops.html
1960
+ -- Installing ./html/gio-Desktop-file-based-GAppInfo.html
1961
+ -- Installing ./html/gio-Extension-Points.html
1962
+ -- Installing ./html/gio-GContentType.html
1963
+ -- Installing ./html/gio-GConverterInputstream.html
1964
+ -- Installing ./html/gio-GConverterOutputstream.html
1965
+ -- Installing ./html/gio-GFileAttribute.html
1966
+ -- Installing ./html/gio-GIOError.html
1967
+ -- Installing ./html/gio-GIOScheduler.html
1968
+ -- Installing ./html/gio-GSrvTarget.html
1969
+ -- Installing ./html/gio-Unix-Mounts.html
1970
+ -- Installing ./html/gio-hierarchy.html
1971
+ -- Installing ./html/gio.devhelp
1972
+ -- Installing ./html/gio.devhelp2
1973
+ -- Installing ./html/gvfs-overview.png
1974
+ -- Installing ./html/highlevel-socket.html
1975
+ -- Installing ./html/home.png
1976
+ -- Installing ./html/icons.html
1977
+ -- Installing ./html/index.html
1978
+ -- Installing ./html/index.sgml
1979
+ -- Installing ./html/left.png
1980
+ -- Installing ./html/migrating.html
1981
+ -- Installing ./html/networking.html
1982
+ -- Installing ./html/pt01.html
1983
+ -- Installing ./html/pt02.html
1984
+ -- Installing ./html/resolver.html
1985
+ -- Installing ./html/right.png
1986
+ -- Installing ./html/streaming.html
1987
+ -- Installing ./html/style.css
1988
+ -- Installing ./html/types.html
1989
+ -- Installing ./html/up.png
1990
+ -- Installing ./html/utils.html
1991
+ -- Installing ./html/volume_mon.html
1992
+ make[5]: Leaving directory `/devel/src/gnome/glib/2.24.2-2_win32/docs/reference/gio'
1993
+ make[4]: Leaving directory `/devel/src/gnome/glib/2.24.2-2_win32/docs/reference/gio'
1994
+ make[4]: Entering directory `/devel/src/gnome/glib/2.24.2-2_win32/docs/reference'
1995
+ make[5]: Entering directory `/devel/src/gnome/glib/2.24.2-2_win32/docs/reference'
1996
+ make[5]: Nothing to be done for `install-exec-am'.
1997
+ make[5]: Nothing to be done for `install-data-am'.
1998
+ make[5]: Leaving directory `/devel/src/gnome/glib/2.24.2-2_win32/docs/reference'
1999
+ make[4]: Leaving directory `/devel/src/gnome/glib/2.24.2-2_win32/docs/reference'
2000
+ make[3]: Leaving directory `/devel/src/gnome/glib/2.24.2-2_win32/docs/reference'
2001
+ make[3]: Entering directory `/devel/src/gnome/glib/2.24.2-2_win32/docs'
2002
+ make[4]: Entering directory `/devel/src/gnome/glib/2.24.2-2_win32/docs'
2003
+ make[4]: Nothing to be done for `install-exec-am'.
2004
+ make[4]: Nothing to be done for `install-data-am'.
2005
+ make[4]: Leaving directory `/devel/src/gnome/glib/2.24.2-2_win32/docs'
2006
+ make[3]: Leaving directory `/devel/src/gnome/glib/2.24.2-2_win32/docs'
2007
+ make[2]: Leaving directory `/devel/src/gnome/glib/2.24.2-2_win32/docs'
2008
+ make[1]: Leaving directory `/devel/src/gnome/glib/2.24.2-2_win32'
2009
+ ++ ./glib-zip
2010
+ rm: cannot lstat `/tmp/glib-2.24.2.zip': No such file or directory
2011
+ adding: bin/gspawn-win32-helper.exe (200 bytes security) (deflated 72%)
2012
+ adding: bin/gspawn-win32-helper-console.exe (200 bytes security) (deflated 71%)
2013
+ adding: bin/libglib-2.0-0.dll (200 bytes security) (deflated 60%)
2014
+ adding: bin/libgio-2.0-0.dll (200 bytes security) (deflated 67%)
2015
+ adding: bin/libgmodule-2.0-0.dll (200 bytes security) (deflated 69%)
2016
+ adding: bin/libgobject-2.0-0.dll (200 bytes security) (deflated 63%)
2017
+ adding: bin/libgthread-2.0-0.dll (200 bytes security) (deflated 69%)
2018
+ adding: share/locale/af/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 58%)
2019
+ adding: share/locale/am/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 29%)
2020
+ adding: share/locale/ar/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 68%)
2021
+ adding: share/locale/as/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 74%)
2022
+ adding: share/locale/ast/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 66%)
2023
+ adding: share/locale/az/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 64%)
2024
+ adding: share/locale/be/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 70%)
2025
+ adding: share/locale/be@latin/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 65%)
2026
+ adding: share/locale/bg/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 72%)
2027
+ adding: share/locale/bn/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 76%)
2028
+ adding: share/locale/bn_IN/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 76%)
2029
+ adding: share/locale/bs/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 63%)
2030
+ adding: share/locale/ca/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 68%)
2031
+ adding: share/locale/ca@valencia/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 68%)
2032
+ adding: share/locale/cs/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 65%)
2033
+ adding: share/locale/cy/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 65%)
2034
+ adding: share/locale/da/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 66%)
2035
+ adding: share/locale/de/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 67%)
2036
+ adding: share/locale/dz/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 77%)
2037
+ adding: share/locale/el/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 72%)
2038
+ adding: share/locale/en@shaw/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 76%)
2039
+ adding: share/locale/en_CA/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 76%)
2040
+ adding: share/locale/en_GB/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 76%)
2041
+ adding: share/locale/eo/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 63%)
2042
+ adding: share/locale/es/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 67%)
2043
+ adding: share/locale/et/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 65%)
2044
+ adding: share/locale/eu/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 67%)
2045
+ adding: share/locale/fa/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 70%)
2046
+ adding: share/locale/fi/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 66%)
2047
+ adding: share/locale/fr/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 68%)
2048
+ adding: share/locale/ga/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 64%)
2049
+ adding: share/locale/gl/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 68%)
2050
+ adding: share/locale/gu/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 74%)
2051
+ adding: share/locale/he/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 76%)
2052
+ adding: share/locale/hi/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 74%)
2053
+ adding: share/locale/hr/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 65%)
2054
+ adding: share/locale/hu/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 67%)
2055
+ adding: share/locale/hy/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 58%)
2056
+ adding: share/locale/id/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 66%)
2057
+ adding: share/locale/is/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 62%)
2058
+ adding: share/locale/it/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 67%)
2059
+ adding: share/locale/ja/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 69%)
2060
+ adding: share/locale/ka/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 76%)
2061
+ adding: share/locale/kn/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 76%)
2062
+ adding: share/locale/ko/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 68%)
2063
+ adding: share/locale/ku/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 38%)
2064
+ adding: share/locale/lt/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 65%)
2065
+ adding: share/locale/lv/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 65%)
2066
+ adding: share/locale/mai/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 74%)
2067
+ adding: share/locale/mg/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 67%)
2068
+ adding: share/locale/mk/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 72%)
2069
+ adding: share/locale/ml/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 77%)
2070
+ adding: share/locale/mn/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 68%)
2071
+ adding: share/locale/mr/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 74%)
2072
+ adding: share/locale/ms/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 64%)
2073
+ adding: share/locale/nb/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 66%)
2074
+ adding: share/locale/nds/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 55%)
2075
+ adding: share/locale/ne/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 73%)
2076
+ adding: share/locale/nl/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 67%)
2077
+ adding: share/locale/nn/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 65%)
2078
+ adding: share/locale/oc/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 40%)
2079
+ adding: share/locale/or/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 75%)
2080
+ adding: share/locale/pa/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 73%)
2081
+ adding: share/locale/pl/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 67%)
2082
+ adding: share/locale/ps/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 64%)
2083
+ adding: share/locale/pt/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 67%)
2084
+ adding: share/locale/pt_BR/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 67%)
2085
+ adding: share/locale/ro/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 67%)
2086
+ adding: share/locale/ru/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 72%)
2087
+ adding: share/locale/rw/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 29%)
2088
+ adding: share/locale/si/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 68%)
2089
+ adding: share/locale/sk/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 65%)
2090
+ adding: share/locale/sl/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 66%)
2091
+ adding: share/locale/sq/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 66%)
2092
+ adding: share/locale/sr/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 71%)
2093
+ adding: share/locale/sr@ije/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 68%)
2094
+ adding: share/locale/sr@latin/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 66%)
2095
+ adding: share/locale/sv/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 66%)
2096
+ adding: share/locale/ta/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 75%)
2097
+ adding: share/locale/te/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 74%)
2098
+ adding: share/locale/th/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 76%)
2099
+ adding: share/locale/tl/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 68%)
2100
+ adding: share/locale/tr/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 65%)
2101
+ adding: share/locale/tt/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 59%)
2102
+ adding: share/locale/uk/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 72%)
2103
+ adding: share/locale/vi/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 68%)
2104
+ adding: share/locale/wa/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 57%)
2105
+ adding: share/locale/xh/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 65%)
2106
+ adding: share/locale/yi/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 71%)
2107
+ adding: share/locale/zh_CN/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 63%)
2108
+ adding: share/locale/zh_HK/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 64%)
2109
+ adding: share/locale/zh_TW/LC_MESSAGES/glib20.mo (200 bytes security) (deflated 64%)
2110
+ adding: share/doc/glib-2.24.2/COPYING (200 bytes security) (deflated 64%)
2111
+ rm: cannot lstat `/tmp/glib-dev-2.24.2.zip': No such file or directory
2112
+ adding: bin/glib-genmarshal.exe (200 bytes security) (deflated 70%)
2113
+ adding: bin/glib-gettextize (200 bytes security) (deflated 59%)
2114
+ adding: bin/glib-mkenums (200 bytes security) (deflated 74%)
2115
+ adding: bin/gobject-query.exe (200 bytes security) (deflated 70%)
2116
+ adding: include/glib-2.0/gio/gappinfo.h (200 bytes security) (deflated 78%)
2117
+ adding: include/glib-2.0/gio/gasyncinitable.h (200 bytes security) (deflated 68%)
2118
+ adding: include/glib-2.0/gio/gasyncresult.h (200 bytes security) (deflated 55%)
2119
+ adding: include/glib-2.0/gio/gbufferedinputstream.h (200 bytes security) (deflated 71%)
2120
+ adding: include/glib-2.0/gio/gbufferedoutputstream.h (200 bytes security) (deflated 65%)
2121
+ adding: include/glib-2.0/gio/gcancellable.h (200 bytes security) (deflated 65%)
2122
+ adding: include/glib-2.0/gio/gcharsetconverter.h (200 bytes security) (deflated 60%)
2123
+ adding: include/glib-2.0/gio/gcontenttype.h (200 bytes security) (deflated 55%)
2124
+ adding: include/glib-2.0/gio/gconverter.h (200 bytes security) (deflated 58%)
2125
+ adding: include/glib-2.0/gio/gconverterinputstream.h (200 bytes security) (deflated 63%)
2126
+ adding: include/glib-2.0/gio/gconverteroutputstream.h (200 bytes security) (deflated 64%)
2127
+ adding: include/glib-2.0/gio/gdatainputstream.h (200 bytes security) (deflated 79%)
2128
+ adding: include/glib-2.0/gio/gdataoutputstream.h (200 bytes security) (deflated 72%)
2129
+ adding: include/glib-2.0/gio/gdrive.h (200 bytes security) (deflated 81%)
2130
+ adding: include/glib-2.0/gio/gemblem.h (200 bytes security) (deflated 56%)
2131
+ adding: include/glib-2.0/gio/gemblemedicon.h (200 bytes security) (deflated 59%)
2132
+ adding: include/glib-2.0/gio/gfile.h (200 bytes security) (deflated 91%)
2133
+ adding: include/glib-2.0/gio/gfileattribute.h (200 bytes security) (deflated 60%)
2134
+ adding: include/glib-2.0/gio/gfileenumerator.h (200 bytes security) (deflated 75%)
2135
+ adding: include/glib-2.0/gio/gfileicon.h (200 bytes security) (deflated 53%)
2136
+ adding: include/glib-2.0/gio/gfileinfo.h (200 bytes security) (deflated 83%)
2137
+ adding: include/glib-2.0/gio/gfileinputstream.h (200 bytes security) (deflated 70%)
2138
+ adding: include/glib-2.0/gio/gfileiostream.h (200 bytes security) (deflated 71%)
2139
+ adding: include/glib-2.0/gio/gfilemonitor.h (200 bytes security) (deflated 63%)
2140
+ adding: include/glib-2.0/gio/gfilenamecompleter.h (200 bytes security) (deflated 63%)
2141
+ adding: include/glib-2.0/gio/gfileoutputstream.h (200 bytes security) (deflated 73%)
2142
+ adding: include/glib-2.0/gio/gfilterinputstream.h (200 bytes security) (deflated 61%)
2143
+ adding: include/glib-2.0/gio/gfilteroutputstream.h (200 bytes security) (deflated 62%)
2144
+ adding: include/glib-2.0/gio/gicon.h (200 bytes security) (deflated 57%)
2145
+ adding: include/glib-2.0/gio/ginetaddress.h (200 bytes security) (deflated 70%)
2146
+ adding: include/glib-2.0/gio/ginetsocketaddress.h (200 bytes security) (deflated 61%)
2147
+ adding: include/glib-2.0/gio/ginitable.h (200 bytes security) (deflated 58%)
2148
+ adding: include/glib-2.0/gio/ginputstream.h (200 bytes security) (deflated 79%)
2149
+ adding: include/glib-2.0/gio/gio.h (200 bytes security) (deflated 69%)
2150
+ adding: include/glib-2.0/gio/gioenums.h (200 bytes security) (deflated 69%)
2151
+ adding: include/glib-2.0/gio/gioenumtypes.h (200 bytes security) (deflated 78%)
2152
+ adding: include/glib-2.0/gio/gioerror.h (200 bytes security) (deflated 46%)
2153
+ adding: include/glib-2.0/gio/giomodule.h (200 bytes security) (deflated 65%)
2154
+ adding: include/glib-2.0/gio/gioscheduler.h (200 bytes security) (deflated 55%)
2155
+ adding: include/glib-2.0/gio/giostream.h (200 bytes security) (deflated 71%)
2156
+ adding: include/glib-2.0/gio/giotypes.h (200 bytes security) (deflated 72%)
2157
+ adding: include/glib-2.0/gio/gloadableicon.h (200 bytes security) (deflated 66%)
2158
+ adding: include/glib-2.0/gio/gmemoryinputstream.h (200 bytes security) (deflated 64%)
2159
+ adding: include/glib-2.0/gio/gmemoryoutputstream.h (200 bytes security) (deflated 64%)
2160
+ adding: include/glib-2.0/gio/gmount.h (200 bytes security) (deflated 84%)
2161
+ adding: include/glib-2.0/gio/gmountoperation.h (200 bytes security) (deflated 69%)
2162
+ adding: include/glib-2.0/gio/gnativevolumemonitor.h (200 bytes security) (deflated 57%)
2163
+ adding: include/glib-2.0/gio/gnetworkaddress.h (200 bytes security) (deflated 60%)
2164
+ adding: include/glib-2.0/gio/gnetworkservice.h (200 bytes security) (deflated 61%)
2165
+ adding: include/glib-2.0/gio/goutputstream.h (200 bytes security) (deflated 82%)
2166
+ adding: include/glib-2.0/gio/gresolver.h (200 bytes security) (deflated 77%)
2167
+ adding: include/glib-2.0/gio/gseekable.h (200 bytes security) (deflated 62%)
2168
+ adding: include/glib-2.0/gio/gsimpleasyncresult.h (200 bytes security) (deflated 76%)
2169
+ adding: include/glib-2.0/gio/gsocket.h (200 bytes security) (deflated 81%)
2170
+ adding: include/glib-2.0/gio/gsocketaddress.h (200 bytes security) (deflated 64%)
2171
+ adding: include/glib-2.0/gio/gsocketaddressenumerator.h (200 bytes security) (deflated 68%)
2172
+ adding: include/glib-2.0/gio/gsocketclient.h (200 bytes security) (deflated 81%)
2173
+ adding: include/glib-2.0/gio/gsocketconnectable.h (200 bytes security) (deflated 57%)
2174
+ adding: include/glib-2.0/gio/gsocketconnection.h (200 bytes security) (deflated 69%)
2175
+ adding: include/glib-2.0/gio/gsocketcontrolmessage.h (200 bytes security) (deflated 72%)
2176
+ adding: include/glib-2.0/gio/gsocketlistener.h (200 bytes security) (deflated 78%)
2177
+ adding: include/glib-2.0/gio/gsocketservice.h (200 bytes security) (deflated 66%)
2178
+ adding: include/glib-2.0/gio/gsrvtarget.h (200 bytes security) (deflated 55%)
2179
+ adding: include/glib-2.0/gio/gtcpconnection.h (200 bytes security) (deflated 66%)
2180
+ adding: include/glib-2.0/gio/gthemedicon.h (200 bytes security) (deflated 61%)
2181
+ adding: include/glib-2.0/gio/gthreadedsocketservice.h (200 bytes security) (deflated 69%)
2182
+ adding: include/glib-2.0/gio/gvfs.h (200 bytes security) (deflated 67%)
2183
+ adding: include/glib-2.0/gio/gvolume.h (200 bytes security) (deflated 76%)
2184
+ adding: include/glib-2.0/gio/gvolumemonitor.h (200 bytes security) (deflated 72%)
2185
+ adding: include/glib-2.0/gio/gzlibcompressor.h (200 bytes security) (deflated 56%)
2186
+ adding: include/glib-2.0/gio/gzlibdecompressor.h (200 bytes security) (deflated 57%)
2187
+ adding: include/glib-2.0/glib/galloca.h (200 bytes security) (deflated 51%)
2188
+ adding: include/glib-2.0/glib/garray.h (200 bytes security) (deflated 74%)
2189
+ adding: include/glib-2.0/glib/gasyncqueue.h (200 bytes security) (deflated 66%)
2190
+ adding: include/glib-2.0/glib/gatomic.h (200 bytes security) (deflated 67%)
2191
+ adding: include/glib-2.0/glib/gbacktrace.h (200 bytes security) (deflated 52%)
2192
+ adding: include/glib-2.0/glib/gbase64.h (200 bytes security) (deflated 57%)
2193
+ adding: include/glib-2.0/glib/gbitlock.h (200 bytes security) (deflated 53%)
2194
+ adding: include/glib-2.0/glib/gbookmarkfile.h (200 bytes security) (deflated 82%)
2195
+ adding: include/glib-2.0/glib/gcache.h (200 bytes security) (deflated 62%)
2196
+ adding: include/glib-2.0/glib/gchecksum.h (200 bytes security) (deflated 63%)
2197
+ adding: include/glib-2.0/glib/gcompletion.h (200 bytes security) (deflated 60%)
2198
+ adding: include/glib-2.0/glib/gconvert.h (200 bytes security) (deflated 67%)
2199
+ adding: include/glib-2.0/glib/gdataset.h (200 bytes security) (deflated 71%)
2200
+ adding: include/glib-2.0/glib/gdate.h (200 bytes security) (deflated 70%)
2201
+ adding: include/glib-2.0/glib/gdir.h (200 bytes security) (deflated 48%)
2202
+ adding: include/glib-2.0/glib/gerror.h (200 bytes security) (deflated 68%)
2203
+ adding: include/glib-2.0/glib/gfileutils.h (200 bytes security) (deflated 62%)
2204
+ adding: include/glib-2.0/glib/ghash.h (200 bytes security) (deflated 70%)
2205
+ adding: include/glib-2.0/glib/ghook.h (200 bytes security) (deflated 68%)
2206
+ adding: include/glib-2.0/glib/ghostutils.h (200 bytes security) (deflated 50%)
2207
+ adding: include/glib-2.0/glib/gi18n-lib.h (200 bytes security) (deflated 49%)
2208
+ adding: include/glib-2.0/glib/gi18n.h (200 bytes security) (deflated 48%)
2209
+ adding: include/glib-2.0/glib/giochannel.h (200 bytes security) (deflated 69%)
2210
+ adding: include/glib-2.0/glib/gkeyfile.h (200 bytes security) (deflated 84%)
2211
+ adding: include/glib-2.0/glib/glist.h (200 bytes security) (deflated 73%)
2212
+ adding: include/glib-2.0/glib/gmacros.h (200 bytes security) (deflated 65%)
2213
+ adding: include/glib-2.0/glib/gmain.h (200 bytes security) (deflated 74%)
2214
+ adding: include/glib-2.0/glib/gmappedfile.h (200 bytes security) (deflated 50%)
2215
+ adding: include/glib-2.0/glib/gmarkup.h (200 bytes security) (deflated 72%)
2216
+ adding: include/glib-2.0/glib/gmem.h (200 bytes security) (deflated 70%)
2217
+ adding: include/glib-2.0/glib/gmessages.h (200 bytes security) (deflated 76%)
2218
+ adding: include/glib-2.0/glib/gnode.h (200 bytes security) (deflated 70%)
2219
+ adding: include/glib-2.0/glib/goption.h (200 bytes security) (deflated 72%)
2220
+ adding: include/glib-2.0/glib/gpattern.h (200 bytes security) (deflated 53%)
2221
+ adding: include/glib-2.0/glib/gpoll.h (200 bytes security) (deflated 50%)
2222
+ adding: include/glib-2.0/glib/gprimes.h (200 bytes security) (deflated 45%)
2223
+ adding: include/glib-2.0/glib/gprintf.h (200 bytes security) (deflated 60%)
2224
+ adding: include/glib-2.0/glib/gqsort.h (200 bytes security) (deflated 44%)
2225
+ adding: include/glib-2.0/glib/gquark.h (200 bytes security) (deflated 51%)
2226
+ adding: include/glib-2.0/glib/gqueue.h (200 bytes security) (deflated 73%)
2227
+ adding: include/glib-2.0/glib/grand.h (200 bytes security) (deflated 57%)
2228
+ adding: include/glib-2.0/glib/gregex.h (200 bytes security) (deflated 75%)
2229
+ adding: include/glib-2.0/glib/grel.h (200 bytes security) (deflated 61%)
2230
+ adding: include/glib-2.0/glib/gscanner.h (200 bytes security) (deflated 64%)
2231
+ adding: include/glib-2.0/glib/gsequence.h (200 bytes security) (deflated 82%)
2232
+ adding: include/glib-2.0/glib/gshell.h (200 bytes security) (deflated 50%)
2233
+ adding: include/glib-2.0/glib/gslice.h (200 bytes security) (deflated 62%)
2234
+ adding: include/glib-2.0/glib/gslist.h (200 bytes security) (deflated 72%)
2235
+ adding: include/glib-2.0/glib/gspawn.h (200 bytes security) (deflated 70%)
2236
+ adding: include/glib-2.0/glib/gstdio.h (200 bytes security) (deflated 62%)
2237
+ adding: include/glib-2.0/glib/gstrfuncs.h (200 bytes security) (deflated 70%)
2238
+ adding: include/glib-2.0/glib/gstring.h (200 bytes security) (deflated 71%)
2239
+ adding: include/glib-2.0/glib/gtestutils.h (200 bytes security) (deflated 79%)
2240
+ adding: include/glib-2.0/glib/gthread.h (200 bytes security) (deflated 74%)
2241
+ adding: include/glib-2.0/glib/gthreadpool.h (200 bytes security) (deflated 65%)
2242
+ adding: include/glib-2.0/glib/gtimer.h (200 bytes security) (deflated 53%)
2243
+ adding: include/glib-2.0/glib/gtree.h (200 bytes security) (deflated 69%)
2244
+ adding: include/glib-2.0/glib/gtypes.h (200 bytes security) (deflated 72%)
2245
+ adding: include/glib-2.0/glib/gunicode.h (200 bytes security) (deflated 73%)
2246
+ adding: include/glib-2.0/glib/gurifuncs.h (200 bytes security) (deflated 61%)
2247
+ adding: include/glib-2.0/glib/gutils.h (200 bytes security) (deflated 66%)
2248
+ adding: include/glib-2.0/glib/gvariant.h (200 bytes security) (deflated 87%)
2249
+ adding: include/glib-2.0/glib/gvarianttype.h (200 bytes security) (deflated 76%)
2250
+ adding: include/glib-2.0/glib/gwin32.h (200 bytes security) (deflated 54%)
2251
+ adding: include/glib-2.0/glib-object.h (200 bytes security) (deflated 54%)
2252
+ adding: include/glib-2.0/glib.h (200 bytes security) (deflated 64%)
2253
+ adding: include/glib-2.0/gmodule.h (200 bytes security) (deflated 55%)
2254
+ adding: include/glib-2.0/gobject/gboxed.h (200 bytes security) (deflated 69%)
2255
+ adding: include/glib-2.0/gobject/gclosure.h (200 bytes security) (deflated 68%)
2256
+ adding: include/glib-2.0/gobject/genums.h (200 bytes security) (deflated 72%)
2257
+ adding: include/glib-2.0/gobject/gmarshal.h (200 bytes security) (deflated 93%)
2258
+ adding: include/glib-2.0/gobject/gobject.h (200 bytes security) (deflated 77%)
2259
+ adding: include/glib-2.0/gobject/gobjectnotifyqueue.c (200 bytes security) (deflated 65%)
2260
+ adding: include/glib-2.0/gobject/gparam.h (200 bytes security) (deflated 72%)
2261
+ adding: include/glib-2.0/gobject/gparamspecs.h (200 bytes security) (deflated 86%)
2262
+ adding: include/glib-2.0/gobject/gsignal.h (200 bytes security) (deflated 76%)
2263
+ adding: include/glib-2.0/gobject/gsourceclosure.h (200 bytes security) (deflated 48%)
2264
+ adding: include/glib-2.0/gobject/gtype.h (200 bytes security) (deflated 77%)
2265
+ adding: include/glib-2.0/gobject/gtypemodule.h (200 bytes security) (deflated 72%)
2266
+ adding: include/glib-2.0/gobject/gtypeplugin.h (200 bytes security) (deflated 68%)
2267
+ adding: include/glib-2.0/gobject/gvalue.h (200 bytes security) (deflated 60%)
2268
+ adding: include/glib-2.0/gobject/gvaluearray.h (200 bytes security) (deflated 59%)
2269
+ adding: include/glib-2.0/gobject/gvaluecollector.h (200 bytes security) (deflated 72%)
2270
+ adding: include/glib-2.0/gobject/gvaluetypes.h (200 bytes security) (deflated 78%)
2271
+ adding: lib/libglib-2.0.dll.a (200 bytes security) (deflated 94%)
2272
+ adding: lib/glib-2.0.lib (200 bytes security) (deflated 85%)
2273
+ adding: lib/glib-2.0.def (200 bytes security) (deflated 78%)
2274
+ adding: lib/libgmodule-2.0.dll.a (200 bytes security) (deflated 87%)
2275
+ adding: lib/gmodule-2.0.lib (200 bytes security) (deflated 78%)
2276
+ adding: lib/gmodule-2.0.def (200 bytes security) (deflated 49%)
2277
+ adding: lib/libgobject-2.0.dll.a (200 bytes security) (deflated 94%)
2278
+ adding: lib/gobject-2.0.lib (200 bytes security) (deflated 87%)
2279
+ adding: lib/gobject-2.0.def (200 bytes security) (deflated 78%)
2280
+ adding: lib/libgthread-2.0.dll.a (200 bytes security) (deflated 76%)
2281
+ adding: lib/gthread-2.0.lib (200 bytes security) (deflated 75%)
2282
+ adding: lib/gthread-2.0.def (200 bytes security) (deflated 18%)
2283
+ adding: lib/libgio-2.0.dll.a (200 bytes security) (deflated 94%)
2284
+ adding: lib/gio-2.0.lib (200 bytes security) (deflated 87%)
2285
+ adding: lib/gio-2.0.def (200 bytes security) (deflated 83%)
2286
+ adding: lib/glib-2.0/include/glibconfig.h (200 bytes security) (deflated 70%)
2287
+ adding: lib/pkgconfig/glib-2.0.pc (200 bytes security) (deflated 39%)
2288
+ adding: lib/pkgconfig/gmodule-2.0.pc (200 bytes security) (deflated 30%)
2289
+ adding: lib/pkgconfig/gmodule-no-export-2.0.pc (200 bytes security) (deflated 31%)
2290
+ adding: lib/pkgconfig/gobject-2.0.pc (200 bytes security) (deflated 29%)
2291
+ adding: lib/pkgconfig/gthread-2.0.pc (200 bytes security) (deflated 28%)
2292
+ adding: lib/pkgconfig/gio-2.0.pc (200 bytes security) (deflated 34%)
2293
+ adding: share/aclocal/glib-2.0.m4 (200 bytes security) (deflated 68%)
2294
+ adding: share/aclocal/glib-gettext.m4 (200 bytes security) (deflated 64%)
2295
+ adding: share/glib-2.0/gdb/glib.py (200 bytes security) (deflated 74%)
2296
+ adding: share/glib-2.0/gdb/gobject.py (200 bytes security) (deflated 76%)
2297
+ adding: share/glib-2.0/gettext/mkinstalldirs (200 bytes security) (deflated 61%)
2298
+ adding: share/glib-2.0/gettext/po/Makefile.in.in (200 bytes security) (deflated 67%)
2299
+ adding: share/gtk-doc/html/gio/api-index-2-18.html (200 bytes security) (deflated 80%)
2300
+ adding: share/gtk-doc/html/gio/api-index-2-20.html (200 bytes security) (deflated 82%)
2301
+ adding: share/gtk-doc/html/gio/api-index-2-22.html (200 bytes security) (deflated 91%)
2302
+ adding: share/gtk-doc/html/gio/api-index-2-24.html (200 bytes security) (deflated 84%)
2303
+ adding: share/gtk-doc/html/gio/api-index-deprecated.html (200 bytes security) (deflated 77%)
2304
+ adding: share/gtk-doc/html/gio/api-index-full.html (200 bytes security) (deflated 93%)
2305
+ adding: share/gtk-doc/html/gio/async.html (200 bytes security) (deflated 63%)
2306
+ adding: share/gtk-doc/html/gio/ch01.html (200 bytes security) (deflated 66%)
2307
+ adding: share/gtk-doc/html/gio/ch02.html (200 bytes security) (deflated 61%)
2308
+ adding: share/gtk-doc/html/gio/ch03.html (200 bytes security) (deflated 66%)
2309
+ adding: share/gtk-doc/html/gio/ch19.html (200 bytes security) (deflated 62%)
2310
+ adding: share/gtk-doc/html/gio/ch20.html (200 bytes security) (deflated 76%)
2311
+ adding: share/gtk-doc/html/gio/ch20s02.html (200 bytes security) (deflated 57%)
2312
+ adding: share/gtk-doc/html/gio/ch20s03.html (200 bytes security) (deflated 55%)
2313
+ adding: share/gtk-doc/html/gio/conversion.html (200 bytes security) (deflated 64%)
2314
+ adding: share/gtk-doc/html/gio/extending-gio.html (200 bytes security) (deflated 72%)
2315
+ adding: share/gtk-doc/html/gio/extending.html (200 bytes security) (deflated 61%)
2316
+ adding: share/gtk-doc/html/gio/failable_initialization.html (200 bytes security) (deflated 61%)
2317
+ adding: share/gtk-doc/html/gio/file_mon.html (200 bytes security) (deflated 58%)
2318
+ adding: share/gtk-doc/html/gio/file_ops.html (200 bytes security) (deflated 65%)
2319
+ adding: share/gtk-doc/html/gio/GAppInfo.html (200 bytes security) (deflated 90%)
2320
+ adding: share/gtk-doc/html/gio/GAsyncInitable.html (200 bytes security) (deflated 89%)
2321
+ adding: share/gtk-doc/html/gio/GAsyncResult.html (200 bytes security) (deflated 82%)
2322
+ adding: share/gtk-doc/html/gio/GBufferedInputStream.html (200 bytes security) (deflated 89%)
2323
+ adding: share/gtk-doc/html/gio/GBufferedOutputStream.html (200 bytes security) (deflated 86%)
2324
+ adding: share/gtk-doc/html/gio/GCancellable.html (200 bytes security) (deflated 86%)
2325
+ adding: share/gtk-doc/html/gio/GCharsetConverter.html (200 bytes security) (deflated 85%)
2326
+ adding: share/gtk-doc/html/gio/GConverter.html (200 bytes security) (deflated 79%)
2327
+ adding: share/gtk-doc/html/gio/GDataInputStream.html (200 bytes security) (deflated 92%)
2328
+ adding: share/gtk-doc/html/gio/GDataOutputStream.html (200 bytes security) (deflated 93%)
2329
+ adding: share/gtk-doc/html/gio/GDrive.html (200 bytes security) (deflated 92%)
2330
+ adding: share/gtk-doc/html/gio/GEmblem.html (200 bytes security) (deflated 82%)
2331
+ adding: share/gtk-doc/html/gio/GEmblemedIcon.html (200 bytes security) (deflated 84%)
2332
+ adding: share/gtk-doc/html/gio/GFile.html (200 bytes security) (deflated 94%)
2333
+ adding: share/gtk-doc/html/gio/GFileDescriptorBased.html (200 bytes security) (deflated 74%)
2334
+ adding: share/gtk-doc/html/gio/GFileEnumerator.html (200 bytes security) (deflated 89%)
2335
+ adding: share/gtk-doc/html/gio/GFileIcon.html (200 bytes security) (deflated 78%)
2336
+ adding: share/gtk-doc/html/gio/GFileInfo.html (200 bytes security) (deflated 92%)
2337
+ adding: share/gtk-doc/html/gio/GFileInputStream.html (200 bytes security) (deflated 84%)
2338
+ adding: share/gtk-doc/html/gio/GFileIOStream.html (200 bytes security) (deflated 85%)
2339
+ adding: share/gtk-doc/html/gio/GFileMonitor.html (200 bytes security) (deflated 84%)
2340
+ adding: share/gtk-doc/html/gio/GFilenameCompleter.html (200 bytes security) (deflated 82%)
2341
+ adding: share/gtk-doc/html/gio/GFileOutputStream.html (200 bytes security) (deflated 85%)
2342
+ adding: share/gtk-doc/html/gio/GFilterInputStream.html (200 bytes security) (deflated 82%)
2343
+ adding: share/gtk-doc/html/gio/GFilterOutputStream.html (200 bytes security) (deflated 83%)
2344
+ adding: share/gtk-doc/html/gio/GIcon.html (200 bytes security) (deflated 82%)
2345
+ adding: share/gtk-doc/html/gio/GInetAddress.html (200 bytes security) (deflated 91%)
2346
+ adding: share/gtk-doc/html/gio/GInetSocketAddress.html (200 bytes security) (deflated 82%)
2347
+ adding: share/gtk-doc/html/gio/GInitable.html (200 bytes security) (deflated 87%)
2348
+ adding: share/gtk-doc/html/gio/GInputStream.html (200 bytes security) (deflated 91%)
2349
+ adding: share/gtk-doc/html/gio/gio-Desktop-file-based-GAppInfo.html (200 bytes security) (deflated 83%)
2350
+ adding: share/gtk-doc/html/gio/gio-Extension-Points.html (200 bytes security) (deflated 88%)
2351
+ adding: share/gtk-doc/html/gio/gio-GContentType.html (200 bytes security) (deflated 85%)
2352
+ adding: share/gtk-doc/html/gio/gio-GConverterInputstream.html (200 bytes security) (deflated 81%)
2353
+ adding: share/gtk-doc/html/gio/gio-GConverterOutputstream.html (200 bytes security) (deflated 81%)
2354
+ adding: share/gtk-doc/html/gio/gio-GFileAttribute.html (200 bytes security) (deflated 86%)
2355
+ adding: share/gtk-doc/html/gio/gio-GIOError.html (200 bytes security) (deflated 78%)
2356
+ adding: share/gtk-doc/html/gio/gio-GIOScheduler.html (200 bytes security) (deflated 86%)
2357
+ adding: share/gtk-doc/html/gio/gio-GSrvTarget.html (200 bytes security) (deflated 86%)
2358
+ adding: share/gtk-doc/html/gio/gio-hierarchy.html (200 bytes security) (deflated 79%)
2359
+ adding: share/gtk-doc/html/gio/gio-Unix-Mounts.html (200 bytes security) (deflated 91%)
2360
+ adding: share/gtk-doc/html/gio/gio.devhelp (200 bytes security) (deflated 88%)
2361
+ adding: share/gtk-doc/html/gio/gio.devhelp2 (200 bytes security) (deflated 89%)
2362
+ adding: share/gtk-doc/html/gio/GIOModule.html (200 bytes security) (deflated 79%)
2363
+ adding: share/gtk-doc/html/gio/GIOStream.html (200 bytes security) (deflated 86%)
2364
+ adding: share/gtk-doc/html/gio/GLoadableIcon.html (200 bytes security) (deflated 86%)
2365
+ adding: share/gtk-doc/html/gio/GMemoryInputStream.html (200 bytes security) (deflated 83%)
2366
+ adding: share/gtk-doc/html/gio/GMemoryOutputStream.html (200 bytes security) (deflated 86%)
2367
+ adding: share/gtk-doc/html/gio/GMount.html (200 bytes security) (deflated 92%)
2368
+ adding: share/gtk-doc/html/gio/GMountOperation.html (200 bytes security) (deflated 89%)
2369
+ adding: share/gtk-doc/html/gio/GNetworkAddress.html (200 bytes security) (deflated 83%)
2370
+ adding: share/gtk-doc/html/gio/GNetworkService.html (200 bytes security) (deflated 84%)
2371
+ adding: share/gtk-doc/html/gio/GOutputStream.html (200 bytes security) (deflated 92%)
2372
+ adding: share/gtk-doc/html/gio/GResolver.html (200 bytes security) (deflated 91%)
2373
+ adding: share/gtk-doc/html/gio/GSeekable.html (200 bytes security) (deflated 87%)
2374
+ adding: share/gtk-doc/html/gio/GSimpleAsyncResult.html (200 bytes security) (deflated 92%)
2375
+ adding: share/gtk-doc/html/gio/GSocket.html (200 bytes security) (deflated 90%)
2376
+ adding: share/gtk-doc/html/gio/GSocketAddress.html (200 bytes security) (deflated 83%)
2377
+ adding: share/gtk-doc/html/gio/GSocketClient.html (200 bytes security) (deflated 91%)
2378
+ adding: share/gtk-doc/html/gio/GSocketConnectable.html (200 bytes security) (deflated 87%)
2379
+ adding: share/gtk-doc/html/gio/GSocketConnection.html (200 bytes security) (deflated 89%)
2380
+ adding: share/gtk-doc/html/gio/GSocketControlMessage.html (200 bytes security) (deflated 83%)
2381
+ adding: share/gtk-doc/html/gio/GSocketListener.html (200 bytes security) (deflated 91%)
2382
+ adding: share/gtk-doc/html/gio/GSocketService.html (200 bytes security) (deflated 81%)
2383
+ adding: share/gtk-doc/html/gio/GThemedIcon.html (200 bytes security) (deflated 85%)
2384
+ adding: share/gtk-doc/html/gio/GThreadedSocketService.html (200 bytes security) (deflated 77%)
2385
+ adding: share/gtk-doc/html/gio/GUnixFDList.html (200 bytes security) (deflated 86%)
2386
+ adding: share/gtk-doc/html/gio/GUnixFDMessage.html (200 bytes security) (deflated 83%)
2387
+ adding: share/gtk-doc/html/gio/GUnixInputStream.html (200 bytes security) (deflated 84%)
2388
+ adding: share/gtk-doc/html/gio/GUnixOutputStream.html (200 bytes security) (deflated 83%)
2389
+ adding: share/gtk-doc/html/gio/GUnixSocketAddress.html (200 bytes security) (deflated 84%)
2390
+ adding: share/gtk-doc/html/gio/gvfs-overview.png (200 bytes security) (deflated 7%)
2391
+ adding: share/gtk-doc/html/gio/GVfs.html (200 bytes security) (deflated 84%)
2392
+ adding: share/gtk-doc/html/gio/GVolume.html (200 bytes security) (deflated 89%)
2393
+ adding: share/gtk-doc/html/gio/GVolumeMonitor.html (200 bytes security) (deflated 90%)
2394
+ adding: share/gtk-doc/html/gio/GZlibCompressor.html (200 bytes security) (deflated 78%)
2395
+ adding: share/gtk-doc/html/gio/GZlibDecompressor.html (200 bytes security) (deflated 75%)
2396
+ adding: share/gtk-doc/html/gio/highlevel-socket.html (200 bytes security) (deflated 65%)
2397
+ adding: share/gtk-doc/html/gio/home.png (200 bytes security) (stored 0%)
2398
+ adding: share/gtk-doc/html/gio/icons.html (200 bytes security) (deflated 65%)
2399
+ adding: share/gtk-doc/html/gio/index.html (200 bytes security) (deflated 82%)
2400
+ adding: share/gtk-doc/html/gio/index.sgml (200 bytes security) (deflated 90%)
2401
+ adding: share/gtk-doc/html/gio/left.png (200 bytes security) (stored 0%)
2402
+ adding: share/gtk-doc/html/gio/migrating.html (200 bytes security) (deflated 60%)
2403
+ adding: share/gtk-doc/html/gio/networking.html (200 bytes security) (deflated 68%)
2404
+ adding: share/gtk-doc/html/gio/pt01.html (200 bytes security) (deflated 61%)
2405
+ adding: share/gtk-doc/html/gio/pt02.html (200 bytes security) (deflated 82%)
2406
+ adding: share/gtk-doc/html/gio/resolver.html (200 bytes security) (deflated 64%)
2407
+ adding: share/gtk-doc/html/gio/right.png (200 bytes security) (stored 0%)
2408
+ adding: share/gtk-doc/html/gio/streaming.html (200 bytes security) (deflated 78%)
2409
+ adding: share/gtk-doc/html/gio/style.css (200 bytes security) (deflated 71%)
2410
+ adding: share/gtk-doc/html/gio/types.html (200 bytes security) (deflated 62%)
2411
+ adding: share/gtk-doc/html/gio/up.png (200 bytes security) (stored 0%)
2412
+ adding: share/gtk-doc/html/gio/utils.html (200 bytes security) (deflated 59%)
2413
+ adding: share/gtk-doc/html/gio/volume_mon.html (200 bytes security) (deflated 65%)
2414
+ adding: share/gtk-doc/html/glib/api-index-2-10.html (200 bytes security) (deflated 82%)
2415
+ adding: share/gtk-doc/html/glib/api-index-2-12.html (200 bytes security) (deflated 90%)
2416
+ adding: share/gtk-doc/html/glib/api-index-2-14.html (200 bytes security) (deflated 91%)
2417
+ adding: share/gtk-doc/html/glib/api-index-2-16.html (200 bytes security) (deflated 87%)
2418
+ adding: share/gtk-doc/html/glib/api-index-2-18.html (200 bytes security) (deflated 76%)
2419
+ adding: share/gtk-doc/html/glib/api-index-2-2.html (200 bytes security) (deflated 81%)
2420
+ adding: share/gtk-doc/html/glib/api-index-2-20.html (200 bytes security) (deflated 73%)
2421
+ adding: share/gtk-doc/html/glib/api-index-2-22.html (200 bytes security) (deflated 83%)
2422
+ adding: share/gtk-doc/html/glib/api-index-2-24.html (200 bytes security) (deflated 91%)
2423
+ adding: share/gtk-doc/html/glib/api-index-2-4.html (200 bytes security) (deflated 87%)
2424
+ adding: share/gtk-doc/html/glib/api-index-2-6.html (200 bytes security) (deflated 90%)
2425
+ adding: share/gtk-doc/html/glib/api-index-2-8.html (200 bytes security) (deflated 83%)
2426
+ adding: share/gtk-doc/html/glib/api-index-deprecated.html (200 bytes security) (deflated 86%)
2427
+ adding: share/gtk-doc/html/glib/api-index-full.html (200 bytes security) (deflated 93%)
2428
+ adding: share/gtk-doc/html/glib/file-name-encodings.png (200 bytes security) (deflated 3%)
2429
+ adding: share/gtk-doc/html/glib/glib-Arrays.html (200 bytes security) (deflated 90%)
2430
+ adding: share/gtk-doc/html/glib/glib-Asynchronous-Queues.html (200 bytes security) (deflated 90%)
2431
+ adding: share/gtk-doc/html/glib/glib-Atomic-Operations.html (200 bytes security) (deflated 88%)
2432
+ adding: share/gtk-doc/html/glib/glib-Automatic-String-Completion.html (200 bytes security) (deflated 89%)
2433
+ adding: share/gtk-doc/html/glib/glib-Balanced-Binary-Trees.html (200 bytes security) (deflated 90%)
2434
+ adding: share/gtk-doc/html/glib/glib-Base64-Encoding.html (200 bytes security) (deflated 87%)
2435
+ adding: share/gtk-doc/html/glib/glib-Basic-Types.html (200 bytes security) (deflated 84%)
2436
+ adding: share/gtk-doc/html/glib/glib-Bookmark-file-parser.html (200 bytes security) (deflated 93%)
2437
+ adding: share/gtk-doc/html/glib/glib-building.html (200 bytes security) (deflated 72%)
2438
+ adding: share/gtk-doc/html/glib/glib-Byte-Arrays.html (200 bytes security) (deflated 90%)
2439
+ adding: share/gtk-doc/html/glib/glib-Byte-Order-Macros.html (200 bytes security) (deflated 93%)
2440
+ adding: share/gtk-doc/html/glib/glib-Caches.html (200 bytes security) (deflated 87%)
2441
+ adding: share/gtk-doc/html/glib/glib-changes.html (200 bytes security) (deflated 64%)
2442
+ adding: share/gtk-doc/html/glib/glib-Character-Set-Conversion.html (200 bytes security) (deflated 89%)
2443
+ adding: share/gtk-doc/html/glib/glib-Commandline-option-parser.html (200 bytes security) (deflated 89%)
2444
+ adding: share/gtk-doc/html/glib/glib-compiling.html (200 bytes security) (deflated 63%)
2445
+ adding: share/gtk-doc/html/glib/glib-core.html (200 bytes security) (deflated 67%)
2446
+ adding: share/gtk-doc/html/glib/glib-cross-compiling.html (200 bytes security) (deflated 67%)
2447
+ adding: share/gtk-doc/html/glib/glib-Data-Checksums.html (200 bytes security) (deflated 88%)
2448
+ adding: share/gtk-doc/html/glib/glib-data-types.html (200 bytes security) (deflated 74%)
2449
+ adding: share/gtk-doc/html/glib/glib-Datasets.html (200 bytes security) (deflated 88%)
2450
+ adding: share/gtk-doc/html/glib/glib-Date-and-Time-Functions.html (200 bytes security) (deflated 90%)
2451
+ adding: share/gtk-doc/html/glib/glib-Double-ended-Queues.html (200 bytes security) (deflated 93%)
2452
+ adding: share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html (200 bytes security) (deflated 92%)
2453
+ adding: share/gtk-doc/html/glib/glib-Dynamic-Loading-of-Modules.html (200 bytes security) (deflated 86%)
2454
+ adding: share/gtk-doc/html/glib/glib-Error-Reporting.html (200 bytes security) (deflated 89%)
2455
+ adding: share/gtk-doc/html/glib/glib-File-Utilities.html (200 bytes security) (deflated 88%)
2456
+ adding: share/gtk-doc/html/glib/glib-fundamentals.html (200 bytes security) (deflated 66%)
2457
+ adding: share/gtk-doc/html/glib/glib-gettextize.html (200 bytes security) (deflated 66%)
2458
+ adding: share/gtk-doc/html/glib/glib-Glob-style-pattern-matching.html (200 bytes security) (deflated 85%)
2459
+ adding: share/gtk-doc/html/glib/glib-GVariant.html (200 bytes security) (deflated 90%)
2460
+ adding: share/gtk-doc/html/glib/glib-GVariantType.html (200 bytes security) (deflated 89%)
2461
+ adding: share/gtk-doc/html/glib/glib-Hash-Tables.html (200 bytes security) (deflated 92%)
2462
+ adding: share/gtk-doc/html/glib/glib-Hook-Functions.html (200 bytes security) (deflated 93%)
2463
+ adding: share/gtk-doc/html/glib/glib-Hostname-Utilities.html (200 bytes security) (deflated 82%)
2464
+ adding: share/gtk-doc/html/glib/glib-I18N.html (200 bytes security) (deflated 85%)
2465
+ adding: share/gtk-doc/html/glib/glib-IO-Channels.html (200 bytes security) (deflated 90%)
2466
+ adding: share/gtk-doc/html/glib/glib-Key-value-file-parser.html (200 bytes security) (deflated 94%)
2467
+ adding: share/gtk-doc/html/glib/glib-Keyed-Data-Lists.html (200 bytes security) (deflated 88%)
2468
+ adding: share/gtk-doc/html/glib/glib-Lexical-Scanner.html (200 bytes security) (deflated 90%)
2469
+ adding: share/gtk-doc/html/glib/glib-Limits-of-Basic-Types.html (200 bytes security) (deflated 86%)
2470
+ adding: share/gtk-doc/html/glib/glib-Memory-Allocation.html (200 bytes security) (deflated 89%)
2471
+ adding: share/gtk-doc/html/glib/glib-Memory-Allocators.html (200 bytes security) (deflated 77%)
2472
+ adding: share/gtk-doc/html/glib/glib-Memory-Chunks.html (200 bytes security) (deflated 89%)
2473
+ adding: share/gtk-doc/html/glib/glib-Memory-Slices.html (200 bytes security) (deflated 85%)
2474
+ adding: share/gtk-doc/html/glib/glib-Message-Logging.html (200 bytes security) (deflated 88%)
2475
+ adding: share/gtk-doc/html/glib/glib-Miscellaneous-Macros.html (200 bytes security) (deflated 85%)
2476
+ adding: share/gtk-doc/html/glib/glib-Miscellaneous-Utility-Functions.html (200 bytes security) (deflated 87%)
2477
+ adding: share/gtk-doc/html/glib/glib-N-ary-Trees.html (200 bytes security) (deflated 92%)
2478
+ adding: share/gtk-doc/html/glib/glib-Numerical-Definitions.html (200 bytes security) (deflated 78%)
2479
+ adding: share/gtk-doc/html/glib/glib-Perl-compatible-regular-expressions.html (200 bytes security) (deflated 90%)
2480
+ adding: share/gtk-doc/html/glib/glib-Pointer-Arrays.html (200 bytes security) (deflated 90%)
2481
+ adding: share/gtk-doc/html/glib/glib-Quarks.html (200 bytes security) (deflated 85%)
2482
+ adding: share/gtk-doc/html/glib/glib-Random-Numbers.html (200 bytes security) (deflated 89%)
2483
+ adding: share/gtk-doc/html/glib/glib-regex-syntax.html (200 bytes security) (deflated 72%)
2484
+ adding: share/gtk-doc/html/glib/glib-Relations-and-Tuples.html (200 bytes security) (deflated 89%)
2485
+ adding: share/gtk-doc/html/glib/glib-resources.html (200 bytes security) (deflated 62%)
2486
+ adding: share/gtk-doc/html/glib/glib-running.html (200 bytes security) (deflated 66%)
2487
+ adding: share/gtk-doc/html/glib/glib-Sequences.html (200 bytes security) (deflated 93%)
2488
+ adding: share/gtk-doc/html/glib/glib-Shell-related-Utilities.html (200 bytes security) (deflated 78%)
2489
+ adding: share/gtk-doc/html/glib/glib-Simple-XML-Subset-Parser.html (200 bytes security) (deflated 87%)
2490
+ adding: share/gtk-doc/html/glib/glib-Singly-Linked-Lists.html (200 bytes security) (deflated 92%)
2491
+ adding: share/gtk-doc/html/glib/glib-Spawning-Processes.html (200 bytes security) (deflated 87%)
2492
+ adding: share/gtk-doc/html/glib/glib-Standard-Macros.html (200 bytes security) (deflated 82%)
2493
+ adding: share/gtk-doc/html/glib/glib-String-Chunks.html (200 bytes security) (deflated 86%)
2494
+ adding: share/gtk-doc/html/glib/glib-String-Utility-Functions.html (200 bytes security) (deflated 91%)
2495
+ adding: share/gtk-doc/html/glib/glib-Strings.html (200 bytes security) (deflated 93%)
2496
+ adding: share/gtk-doc/html/glib/glib-Testing.html (200 bytes security) (deflated 87%)
2497
+ adding: share/gtk-doc/html/glib/glib-The-Main-Event-Loop.html (200 bytes security) (deflated 90%)
2498
+ adding: share/gtk-doc/html/glib/glib-Thread-Pools.html (200 bytes security) (deflated 87%)
2499
+ adding: share/gtk-doc/html/glib/glib-Threads.html (200 bytes security) (deflated 89%)
2500
+ adding: share/gtk-doc/html/glib/glib-Timers.html (200 bytes security) (deflated 82%)
2501
+ adding: share/gtk-doc/html/glib/glib-Trash-Stacks.html (200 bytes security) (deflated 82%)
2502
+ adding: share/gtk-doc/html/glib/glib-Type-Conversion-Macros.html (200 bytes security) (deflated 80%)
2503
+ adding: share/gtk-doc/html/glib/glib-Unicode-Manipulation.html (200 bytes security) (deflated 90%)
2504
+ adding: share/gtk-doc/html/glib/glib-URI-Functions.html (200 bytes security) (deflated 82%)
2505
+ adding: share/gtk-doc/html/glib/glib-utilities.html (200 bytes security) (deflated 74%)
2506
+ adding: share/gtk-doc/html/glib/glib-Version-Information.html (200 bytes security) (deflated 73%)
2507
+ adding: share/gtk-doc/html/glib/glib-Warnings-and-Assertions.html (200 bytes security) (deflated 84%)
2508
+ adding: share/gtk-doc/html/glib/glib-Windows-Compatibility-Functions.html (200 bytes security) (deflated 82%)
2509
+ adding: share/gtk-doc/html/glib/glib.devhelp (200 bytes security) (deflated 88%)
2510
+ adding: share/gtk-doc/html/glib/glib.devhelp2 (200 bytes security) (deflated 89%)
2511
+ adding: share/gtk-doc/html/glib/glib.html (200 bytes security) (deflated 63%)
2512
+ adding: share/gtk-doc/html/glib/gtester-report.html (200 bytes security) (deflated 63%)
2513
+ adding: share/gtk-doc/html/glib/gtester.html (200 bytes security) (deflated 70%)
2514
+ adding: share/gtk-doc/html/glib/gvariant-format-strings.html (200 bytes security) (deflated 89%)
2515
+ adding: share/gtk-doc/html/glib/home.png (200 bytes security) (stored 0%)
2516
+ adding: share/gtk-doc/html/glib/index.html (200 bytes security) (deflated 79%)
2517
+ adding: share/gtk-doc/html/glib/index.sgml (200 bytes security) (deflated 90%)
2518
+ adding: share/gtk-doc/html/glib/left.png (200 bytes security) (stored 0%)
2519
+ adding: share/gtk-doc/html/glib/mainloop-states.gif (200 bytes security) (stored 0%)
2520
+ adding: share/gtk-doc/html/glib/right.png (200 bytes security) (stored 0%)
2521
+ adding: share/gtk-doc/html/glib/style.css (200 bytes security) (deflated 71%)
2522
+ adding: share/gtk-doc/html/glib/tools.html (200 bytes security) (deflated 61%)
2523
+ adding: share/gtk-doc/html/glib/up.png (200 bytes security) (stored 0%)
2524
+ adding: share/gtk-doc/html/gobject/api-index-2-10.html (200 bytes security) (deflated 76%)
2525
+ adding: share/gtk-doc/html/gobject/api-index-2-12.html (200 bytes security) (deflated 68%)
2526
+ adding: share/gtk-doc/html/gobject/api-index-2-14.html (200 bytes security) (deflated 65%)
2527
+ adding: share/gtk-doc/html/gobject/api-index-2-18.html (200 bytes security) (deflated 66%)
2528
+ adding: share/gtk-doc/html/gobject/api-index-2-2.html (200 bytes security) (deflated 60%)
2529
+ adding: share/gtk-doc/html/gobject/api-index-2-22.html (200 bytes security) (deflated 65%)
2530
+ adding: share/gtk-doc/html/gobject/api-index-2-24.html (200 bytes security) (deflated 71%)
2531
+ adding: share/gtk-doc/html/gobject/api-index-2-4.html (200 bytes security) (deflated 85%)
2532
+ adding: share/gtk-doc/html/gobject/api-index-2-6.html (200 bytes security) (deflated 63%)
2533
+ adding: share/gtk-doc/html/gobject/api-index-2-8.html (200 bytes security) (deflated 64%)
2534
+ adding: share/gtk-doc/html/gobject/api-index-deprecated.html (200 bytes security) (deflated 71%)
2535
+ adding: share/gtk-doc/html/gobject/api-index-full.html (200 bytes security) (deflated 93%)
2536
+ adding: share/gtk-doc/html/gobject/ch01s02.html (200 bytes security) (deflated 62%)
2537
+ adding: share/gtk-doc/html/gobject/ch06s03.html (200 bytes security) (deflated 64%)
2538
+ adding: share/gtk-doc/html/gobject/chapter-gobject.html (200 bytes security) (deflated 73%)
2539
+ adding: share/gtk-doc/html/gobject/chapter-gtype.html (200 bytes security) (deflated 74%)
2540
+ adding: share/gtk-doc/html/gobject/chapter-intro.html (200 bytes security) (deflated 59%)
2541
+ adding: share/gtk-doc/html/gobject/chapter-signal.html (200 bytes security) (deflated 72%)
2542
+ adding: share/gtk-doc/html/gobject/glib-genmarshal.html (200 bytes security) (deflated 75%)
2543
+ adding: share/gtk-doc/html/gobject/glib-mkenums.html (200 bytes security) (deflated 73%)
2544
+ adding: share/gtk-doc/html/gobject/glue.png (200 bytes security) (deflated 10%)
2545
+ adding: share/gtk-doc/html/gobject/gobject-Boxed-Types.html (200 bytes security) (deflated 85%)
2546
+ adding: share/gtk-doc/html/gobject/gobject-Closures.html (200 bytes security) (deflated 94%)
2547
+ adding: share/gtk-doc/html/gobject/gobject-Enumeration-and-Flag-Types.html (200 bytes security) (deflated 90%)
2548
+ adding: share/gtk-doc/html/gobject/gobject-Generic-values.html (200 bytes security) (deflated 88%)
2549
+ adding: share/gtk-doc/html/gobject/gobject-GParamSpec.html (200 bytes security) (deflated 89%)
2550
+ adding: share/gtk-doc/html/gobject/gobject-memory.html (200 bytes security) (deflated 72%)
2551
+ adding: share/gtk-doc/html/gobject/gobject-properties.html (200 bytes security) (deflated 73%)
2552
+ adding: share/gtk-doc/html/gobject/gobject-query.html (200 bytes security) (deflated 70%)
2553
+ adding: share/gtk-doc/html/gobject/gobject-Signals.html (200 bytes security) (deflated 91%)
2554
+ adding: share/gtk-doc/html/gobject/gobject-Standard-Parameter-and-Value-Types.html (200 bytes security) (deflated 95%)
2555
+ adding: share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html (200 bytes security) (deflated 89%)
2556
+ adding: share/gtk-doc/html/gobject/gobject-Type-Information.html (200 bytes security) (deflated 89%)
2557
+ adding: share/gtk-doc/html/gobject/gobject-Value-arrays.html (200 bytes security) (deflated 90%)
2558
+ adding: share/gtk-doc/html/gobject/gobject-Varargs-Value-Collection.html (200 bytes security) (deflated 81%)
2559
+ adding: share/gtk-doc/html/gobject/gobject.devhelp (200 bytes security) (deflated 89%)
2560
+ adding: share/gtk-doc/html/gobject/gobject.devhelp2 (200 bytes security) (deflated 90%)
2561
+ adding: share/gtk-doc/html/gobject/gtype-conventions.html (200 bytes security) (deflated 67%)
2562
+ adding: share/gtk-doc/html/gobject/gtype-instantiable-classed.html (200 bytes security) (deflated 72%)
2563
+ adding: share/gtk-doc/html/gobject/gtype-non-instantiable-classed.html (200 bytes security) (deflated 73%)
2564
+ adding: share/gtk-doc/html/gobject/gtype-non-instantiable.html (200 bytes security) (deflated 66%)
2565
+ adding: share/gtk-doc/html/gobject/GTypeModule.html (200 bytes security) (deflated 87%)
2566
+ adding: share/gtk-doc/html/gobject/GTypePlugin.html (200 bytes security) (deflated 88%)
2567
+ adding: share/gtk-doc/html/gobject/home.png (200 bytes security) (stored 0%)
2568
+ adding: share/gtk-doc/html/gobject/howto-gobject-chainup.html (200 bytes security) (deflated 62%)
2569
+ adding: share/gtk-doc/html/gobject/howto-gobject-code.html (200 bytes security) (deflated 60%)
2570
+ adding: share/gtk-doc/html/gobject/howto-gobject-construction.html (200 bytes security) (deflated 63%)
2571
+ adding: share/gtk-doc/html/gobject/howto-gobject-destruction.html (200 bytes security) (deflated 60%)
2572
+ adding: share/gtk-doc/html/gobject/howto-gobject-methods.html (200 bytes security) (deflated 70%)
2573
+ adding: share/gtk-doc/html/gobject/howto-gobject.html (200 bytes security) (deflated 67%)
2574
+ adding: share/gtk-doc/html/gobject/howto-interface-implement.html (200 bytes security) (deflated 64%)
2575
+ adding: share/gtk-doc/html/gobject/howto-interface-properties.html (200 bytes security) (deflated 69%)
2576
+ adding: share/gtk-doc/html/gobject/howto-interface.html (200 bytes security) (deflated 67%)
2577
+ adding: share/gtk-doc/html/gobject/howto-signals.html (200 bytes security) (deflated 59%)
2578
+ adding: share/gtk-doc/html/gobject/index.html (200 bytes security) (deflated 78%)
2579
+ adding: share/gtk-doc/html/gobject/index.sgml (200 bytes security) (deflated 91%)
2580
+ adding: share/gtk-doc/html/gobject/left.png (200 bytes security) (stored 0%)
2581
+ adding: share/gtk-doc/html/gobject/pr01.html (200 bytes security) (deflated 57%)
2582
+ adding: share/gtk-doc/html/gobject/pt01.html (200 bytes security) (deflated 73%)
2583
+ adding: share/gtk-doc/html/gobject/pt02.html (200 bytes security) (deflated 69%)
2584
+ adding: share/gtk-doc/html/gobject/pt03.html (200 bytes security) (deflated 59%)
2585
+ adding: share/gtk-doc/html/gobject/right.png (200 bytes security) (stored 0%)
2586
+ adding: share/gtk-doc/html/gobject/rn01.html (200 bytes security) (deflated 69%)
2587
+ adding: share/gtk-doc/html/gobject/rn02.html (200 bytes security) (deflated 61%)
2588
+ adding: share/gtk-doc/html/gobject/signal.html (200 bytes security) (deflated 74%)
2589
+ adding: share/gtk-doc/html/gobject/style.css (200 bytes security) (deflated 71%)
2590
+ adding: share/gtk-doc/html/gobject/tools-ginspector.html (200 bytes security) (deflated 56%)
2591
+ adding: share/gtk-doc/html/gobject/tools-gob.html (200 bytes security) (deflated 54%)
2592
+ adding: share/gtk-doc/html/gobject/tools-gtkdoc.html (200 bytes security) (deflated 55%)
2593
+ adding: share/gtk-doc/html/gobject/tools-refdb.html (200 bytes security) (deflated 57%)
2594
+ adding: share/gtk-doc/html/gobject/tools-vala.html (200 bytes security) (deflated 55%)
2595
+ adding: share/gtk-doc/html/gobject/up.png (200 bytes security) (stored 0%)
2596
+ adding: share/man/man1/glib-mkenums.1 (200 bytes security) (deflated 65%)
2597
+ adding: share/man/man1/glib-genmarshal.1 (200 bytes security) (deflated 66%)
2598
+ adding: share/man/man1/gobject-query.1 (200 bytes security) (deflated 62%)
2599
+ adding: share/doc/glib-dev-2.24.2/ (200 bytes security) (stored 0%)
2600
+ adding: share/doc/glib-dev-2.24.2/COPYING (200 bytes security) (deflated 64%)
2601
+ ++ mv /tmp/glib-2.24.2.zip /tmp/glib_2.24.2-2_win32.zip
2602
+ ++ mv /tmp/glib-dev-2.24.2.zip /tmp/glib-dev_2.24.2-2_win32.zip