gio2 0.90.3-x86-mingw32

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