gstreamer 1.1.0-x86-mingw32

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1897) hide show
  1. data/README +33 -0
  2. data/Rakefile +213 -0
  3. data/ext/gstreamer/depend +5 -0
  4. data/ext/gstreamer/extconf.rb +69 -0
  5. data/ext/gstreamer/misc.c +63 -0
  6. data/ext/gstreamer/rbgst-bin.c +458 -0
  7. data/ext/gstreamer/rbgst-buffer.c +365 -0
  8. data/ext/gstreamer/rbgst-bus.c +92 -0
  9. data/ext/gstreamer/rbgst-caps.c +448 -0
  10. data/ext/gstreamer/rbgst-child-proxy.c +34 -0
  11. data/ext/gstreamer/rbgst-clock.c +110 -0
  12. data/ext/gstreamer/rbgst-element-factory.c +249 -0
  13. data/ext/gstreamer/rbgst-element.c +1088 -0
  14. data/ext/gstreamer/rbgst-event.c +351 -0
  15. data/ext/gstreamer/rbgst-ghost-pad.c +45 -0
  16. data/ext/gstreamer/rbgst-index-factory.c +69 -0
  17. data/ext/gstreamer/rbgst-install-plugins-context.c +86 -0
  18. data/ext/gstreamer/rbgst-install-plugins-return.c +45 -0
  19. data/ext/gstreamer/rbgst-install-plugins.c +125 -0
  20. data/ext/gstreamer/rbgst-message.c +787 -0
  21. data/ext/gstreamer/rbgst-mini-object.c +220 -0
  22. data/ext/gstreamer/rbgst-object.c +83 -0
  23. data/ext/gstreamer/rbgst-pad-template.c +125 -0
  24. data/ext/gstreamer/rbgst-pad.c +338 -0
  25. data/ext/gstreamer/rbgst-pipeline.c +91 -0
  26. data/ext/gstreamer/rbgst-plugin-feature.c +133 -0
  27. data/ext/gstreamer/rbgst-plugin.c +162 -0
  28. data/ext/gstreamer/rbgst-private.c +88 -0
  29. data/ext/gstreamer/rbgst-private.h +97 -0
  30. data/ext/gstreamer/rbgst-query.c +291 -0
  31. data/ext/gstreamer/rbgst-seek.c +39 -0
  32. data/ext/gstreamer/rbgst-static-caps.c +51 -0
  33. data/ext/gstreamer/rbgst-static-pad-template.c +65 -0
  34. data/ext/gstreamer/rbgst-structure.c +302 -0
  35. data/ext/gstreamer/rbgst-system-clock.c +48 -0
  36. data/ext/gstreamer/rbgst-type-find-factory.c +125 -0
  37. data/ext/gstreamer/rbgst-value.c +529 -0
  38. data/ext/gstreamer/rbgst-x-overlay.c +133 -0
  39. data/ext/gstreamer/rbgst.c +237 -0
  40. data/ext/gstreamer/rbgst.h +197 -0
  41. data/ext/gstreamer/rbgstclockentry.c +271 -0
  42. data/ext/gstreamer/rbgstformat.c +162 -0
  43. data/ext/gstreamer/rbgstindex.c +317 -0
  44. data/ext/gstreamer/rbgstindexentry.c +99 -0
  45. data/ext/gstreamer/rbgstparse.c +69 -0
  46. data/ext/gstreamer/rbgstquerytype.c +162 -0
  47. data/ext/gstreamer/rbgstregistry.c +288 -0
  48. data/ext/gstreamer/rbgsttag.c +113 -0
  49. data/ext/gstreamer/rbgsttagsetter.c +53 -0
  50. data/ext/gstreamer/rbgstxml.c +192 -0
  51. data/extconf.rb +49 -0
  52. data/lib/1.8/gstreamer.so +0 -0
  53. data/lib/1.9/gstreamer.so +0 -0
  54. data/lib/gst.rb +33 -0
  55. data/sample/audio-player.rb +54 -0
  56. data/sample/gst-inspect.rb +417 -0
  57. data/sample/install-plugins.rb +40 -0
  58. data/sample/media-type.rb +55 -0
  59. data/sample/media-type2.rb +268 -0
  60. data/sample/ogg-audio-player.rb +54 -0
  61. data/sample/type-find.rb +46 -0
  62. data/sample/video-player.rb +57 -0
  63. data/sample/xml-player.rb +60 -0
  64. data/test/gst-test-utils.rb +18 -0
  65. data/test/run-test.rb +25 -0
  66. data/test/test_bin.rb +167 -0
  67. data/test/test_buffer.rb +177 -0
  68. data/test/test_caps.rb +24 -0
  69. data/test/test_element.rb +85 -0
  70. data/test/test_element_factory.rb +28 -0
  71. data/test/test_event.rb +10 -0
  72. data/test/test_index_factory.rb +7 -0
  73. data/test/test_install-plugins.rb +18 -0
  74. data/test/test_message.rb +191 -0
  75. data/test/test_mini_object.rb +38 -0
  76. data/test/test_object.rb +10 -0
  77. data/test/test_pad.rb +68 -0
  78. data/test/test_plugin.rb +6 -0
  79. data/test/test_plugin_feature.rb +20 -0
  80. data/test/test_seek.rb +17 -0
  81. data/test/test_static_caps.rb +18 -0
  82. data/test/test_static_pad_template.rb +16 -0
  83. data/test/test_structure.rb +159 -0
  84. data/test/test_thread_handling.rb +58 -0
  85. data/test/test_type_find_factory.rb +8 -0
  86. data/test/test_value.rb +69 -0
  87. data/vendor/local/bin/cjpeg.exe +0 -0
  88. data/vendor/local/bin/djpeg.exe +0 -0
  89. data/vendor/local/bin/gst-discoverer-0.10.exe +0 -0
  90. data/vendor/local/bin/gst-feedback-0.10 +115 -0
  91. data/vendor/local/bin/gst-feedback.exe +0 -0
  92. data/vendor/local/bin/gst-inspect-0.10.exe +0 -0
  93. data/vendor/local/bin/gst-inspect.exe +0 -0
  94. data/vendor/local/bin/gst-launch-0.10.exe +0 -0
  95. data/vendor/local/bin/gst-launch.exe +0 -0
  96. data/vendor/local/bin/gst-typefind-0.10.exe +0 -0
  97. data/vendor/local/bin/gst-typefind.exe +0 -0
  98. data/vendor/local/bin/gst-visualise-0.10 +77 -0
  99. data/vendor/local/bin/gst-xmlinspect-0.10.exe +0 -0
  100. data/vendor/local/bin/gst-xmlinspect.exe +0 -0
  101. data/vendor/local/bin/gst-xmllaunch-0.10.exe +0 -0
  102. data/vendor/local/bin/gst-xmllaunch.exe +0 -0
  103. data/vendor/local/bin/jpegtran.exe +0 -0
  104. data/vendor/local/bin/libgstapp-0.10-0.dll +0 -0
  105. data/vendor/local/bin/libgstaudio-0.10-0.dll +0 -0
  106. data/vendor/local/bin/libgstbase-0.10-0.dll +0 -0
  107. data/vendor/local/bin/libgstbasevideo-0.10-0.dll +0 -0
  108. data/vendor/local/bin/libgstcdda-0.10-0.dll +0 -0
  109. data/vendor/local/bin/libgstcheck-0.10-0.dll +0 -0
  110. data/vendor/local/bin/libgstcontroller-0.10-0.dll +0 -0
  111. data/vendor/local/bin/libgstdataprotocol-0.10-0.dll +0 -0
  112. data/vendor/local/bin/libgstfft-0.10-0.dll +0 -0
  113. data/vendor/local/bin/libgstinterfaces-0.10-0.dll +0 -0
  114. data/vendor/local/bin/libgstnet-0.10-0.dll +0 -0
  115. data/vendor/local/bin/libgstnetbuffer-0.10-0.dll +0 -0
  116. data/vendor/local/bin/libgstpbutils-0.10-0.dll +0 -0
  117. data/vendor/local/bin/libgstphotography-0.10-0.dll +0 -0
  118. data/vendor/local/bin/libgstreamer-0.10-0.dll +0 -0
  119. data/vendor/local/bin/libgstriff-0.10-0.dll +0 -0
  120. data/vendor/local/bin/libgstrtp-0.10-0.dll +0 -0
  121. data/vendor/local/bin/libgstrtsp-0.10-0.dll +0 -0
  122. data/vendor/local/bin/libgstsdp-0.10-0.dll +0 -0
  123. data/vendor/local/bin/libgstsignalprocessor-0.10-0.dll +0 -0
  124. data/vendor/local/bin/libgsttag-0.10-0.dll +0 -0
  125. data/vendor/local/bin/libgstvideo-0.10-0.dll +0 -0
  126. data/vendor/local/bin/libjpeg-8.dll +0 -0
  127. data/vendor/local/bin/libogg-0.dll +0 -0
  128. data/vendor/local/bin/libsoup-2.4-1.dll +0 -0
  129. data/vendor/local/bin/libspeex-1.dll +0 -0
  130. data/vendor/local/bin/libspeexdsp-1.dll +0 -0
  131. data/vendor/local/bin/libtheora-0.dll +0 -0
  132. data/vendor/local/bin/libtheoradec-1.dll +0 -0
  133. data/vendor/local/bin/libtheoraenc-1.dll +0 -0
  134. data/vendor/local/bin/libvorbis-0.dll +0 -0
  135. data/vendor/local/bin/libvorbisenc-2.dll +0 -0
  136. data/vendor/local/bin/libvorbisfile-3.dll +0 -0
  137. data/vendor/local/bin/libxml2-2.dll +0 -0
  138. data/vendor/local/bin/rdjpgcom.exe +0 -0
  139. data/vendor/local/bin/speexdec.exe +0 -0
  140. data/vendor/local/bin/speexenc.exe +0 -0
  141. data/vendor/local/bin/wrjpgcom.exe +0 -0
  142. data/vendor/local/bin/xmlcatalog.exe +0 -0
  143. data/vendor/local/bin/xmllint.exe +0 -0
  144. data/vendor/local/include/gstreamer-0.10/gst/app/gstappbuffer.h +64 -0
  145. data/vendor/local/include/gstreamer-0.10/gst/app/gstappsink.h +141 -0
  146. data/vendor/local/include/gstreamer-0.10/gst/app/gstappsrc.h +153 -0
  147. data/vendor/local/include/gstreamer-0.10/gst/audio/audio-enumtypes.h +29 -0
  148. data/vendor/local/include/gstreamer-0.10/gst/audio/audio.h +185 -0
  149. data/vendor/local/include/gstreamer-0.10/gst/audio/gstaudioclock.h +108 -0
  150. data/vendor/local/include/gstreamer-0.10/gst/audio/gstaudiofilter.h +96 -0
  151. data/vendor/local/include/gstreamer-0.10/gst/audio/gstaudiosink.h +102 -0
  152. data/vendor/local/include/gstreamer-0.10/gst/audio/gstaudiosrc.h +99 -0
  153. data/vendor/local/include/gstreamer-0.10/gst/audio/gstbaseaudiosink.h +177 -0
  154. data/vendor/local/include/gstreamer-0.10/gst/audio/gstbaseaudiosrc.h +146 -0
  155. data/vendor/local/include/gstreamer-0.10/gst/audio/gstringbuffer.h +408 -0
  156. data/vendor/local/include/gstreamer-0.10/gst/audio/mixerutils.h +50 -0
  157. data/vendor/local/include/gstreamer-0.10/gst/audio/multichannel.h +115 -0
  158. data/vendor/local/include/gstreamer-0.10/gst/base/gstadapter.h +106 -0
  159. data/vendor/local/include/gstreamer-0.10/gst/base/gstbaseparse.h +314 -0
  160. data/vendor/local/include/gstreamer-0.10/gst/base/gstbasesink.h +247 -0
  161. data/vendor/local/include/gstreamer-0.10/gst/base/gstbasesrc.h +261 -0
  162. data/vendor/local/include/gstreamer-0.10/gst/base/gstbasetransform.h +277 -0
  163. data/vendor/local/include/gstreamer-0.10/gst/base/gstbitreader.h +314 -0
  164. data/vendor/local/include/gstreamer-0.10/gst/base/gstbytereader.h +527 -0
  165. data/vendor/local/include/gstreamer-0.10/gst/base/gstbytewriter.h +361 -0
  166. data/vendor/local/include/gstreamer-0.10/gst/base/gstcollectpads.h +223 -0
  167. data/vendor/local/include/gstreamer-0.10/gst/base/gstdataqueue.h +184 -0
  168. data/vendor/local/include/gstreamer-0.10/gst/base/gstpushsrc.h +68 -0
  169. data/vendor/local/include/gstreamer-0.10/gst/base/gsttypefindhelper.h +75 -0
  170. data/vendor/local/include/gstreamer-0.10/gst/cdda/gstcddabasesrc.h +157 -0
  171. data/vendor/local/include/gstreamer-0.10/gst/check/gstbufferstraw.h +35 -0
  172. data/vendor/local/include/gstreamer-0.10/gst/check/gstcheck.h +427 -0
  173. data/vendor/local/include/gstreamer-0.10/gst/check/gstconsistencychecker.h +48 -0
  174. data/vendor/local/include/gstreamer-0.10/gst/check/internal-check.h +418 -0
  175. data/vendor/local/include/gstreamer-0.10/gst/controller/gstcontroller.h +155 -0
  176. data/vendor/local/include/gstreamer-0.10/gst/controller/gstcontrolsource.h +163 -0
  177. data/vendor/local/include/gstreamer-0.10/gst/controller/gstinterpolationcontrolsource.h +109 -0
  178. data/vendor/local/include/gstreamer-0.10/gst/controller/gstlfocontrolsource.h +102 -0
  179. data/vendor/local/include/gstreamer-0.10/gst/dataprotocol/dataprotocol.h +196 -0
  180. data/vendor/local/include/gstreamer-0.10/gst/fft/gstfft.h +49 -0
  181. data/vendor/local/include/gstreamer-0.10/gst/fft/gstfftf32.h +75 -0
  182. data/vendor/local/include/gstreamer-0.10/gst/fft/gstfftf64.h +75 -0
  183. data/vendor/local/include/gstreamer-0.10/gst/fft/gstffts16.h +74 -0
  184. data/vendor/local/include/gstreamer-0.10/gst/fft/gstffts32.h +75 -0
  185. data/vendor/local/include/gstreamer-0.10/gst/floatcast/floatcast.h +102 -0
  186. data/vendor/local/include/gstreamer-0.10/gst/glib-compat.h +37 -0
  187. data/vendor/local/include/gstreamer-0.10/gst/gst.h +106 -0
  188. data/vendor/local/include/gstreamer-0.10/gst/gstatomicqueue.h +55 -0
  189. data/vendor/local/include/gstreamer-0.10/gst/gstbin.h +190 -0
  190. data/vendor/local/include/gstreamer-0.10/gst/gstbuffer.h +510 -0
  191. data/vendor/local/include/gstreamer-0.10/gst/gstbufferlist.h +243 -0
  192. data/vendor/local/include/gstreamer-0.10/gst/gstbus.h +192 -0
  193. data/vendor/local/include/gstreamer-0.10/gst/gstcaps.h +296 -0
  194. data/vendor/local/include/gstreamer-0.10/gst/gstchildproxy.h +91 -0
  195. data/vendor/local/include/gstreamer-0.10/gst/gstclock.h +570 -0
  196. data/vendor/local/include/gstreamer-0.10/gst/gstcompat.h +43 -0
  197. data/vendor/local/include/gstreamer-0.10/gst/gstconfig.h +235 -0
  198. data/vendor/local/include/gstreamer-0.10/gst/gstdatetime.h +66 -0
  199. data/vendor/local/include/gstreamer-0.10/gst/gstdebugutils.h +109 -0
  200. data/vendor/local/include/gstreamer-0.10/gst/gstelement.h +827 -0
  201. data/vendor/local/include/gstreamer-0.10/gst/gstelementfactory.h +314 -0
  202. data/vendor/local/include/gstreamer-0.10/gst/gstenumtypes.h +211 -0
  203. data/vendor/local/include/gstreamer-0.10/gst/gsterror.h +255 -0
  204. data/vendor/local/include/gstreamer-0.10/gst/gstevent.h +522 -0
  205. data/vendor/local/include/gstreamer-0.10/gst/gstfilter.h +44 -0
  206. data/vendor/local/include/gstreamer-0.10/gst/gstformat.h +113 -0
  207. data/vendor/local/include/gstreamer-0.10/gst/gstghostpad.h +111 -0
  208. data/vendor/local/include/gstreamer-0.10/gst/gstindex.h +426 -0
  209. data/vendor/local/include/gstreamer-0.10/gst/gstindexfactory.h +76 -0
  210. data/vendor/local/include/gstreamer-0.10/gst/gstinfo.h +1549 -0
  211. data/vendor/local/include/gstreamer-0.10/gst/gstinterface.h +81 -0
  212. data/vendor/local/include/gstreamer-0.10/gst/gstiterator.h +267 -0
  213. data/vendor/local/include/gstreamer-0.10/gst/gstmacros.h +54 -0
  214. data/vendor/local/include/gstreamer-0.10/gst/gstmarshal.h +164 -0
  215. data/vendor/local/include/gstreamer-0.10/gst/gstmessage.h +534 -0
  216. data/vendor/local/include/gstreamer-0.10/gst/gstminiobject.h +223 -0
  217. data/vendor/local/include/gstreamer-0.10/gst/gstobject.h +354 -0
  218. data/vendor/local/include/gstreamer-0.10/gst/gstpad.h +1032 -0
  219. data/vendor/local/include/gstreamer-0.10/gst/gstpadtemplate.h +196 -0
  220. data/vendor/local/include/gstreamer-0.10/gst/gstparamspecs.h +128 -0
  221. data/vendor/local/include/gstreamer-0.10/gst/gstparse.h +119 -0
  222. data/vendor/local/include/gstreamer-0.10/gst/gstpipeline.h +115 -0
  223. data/vendor/local/include/gstreamer-0.10/gst/gstplugin.h +411 -0
  224. data/vendor/local/include/gstreamer-0.10/gst/gstpluginfeature.h +171 -0
  225. data/vendor/local/include/gstreamer-0.10/gst/gstpoll.h +97 -0
  226. data/vendor/local/include/gstreamer-0.10/gst/gstpreset.h +99 -0
  227. data/vendor/local/include/gstreamer-0.10/gst/gstquery.h +342 -0
  228. data/vendor/local/include/gstreamer-0.10/gst/gstregistry.h +237 -0
  229. data/vendor/local/include/gstreamer-0.10/gst/gstsegment.h +109 -0
  230. data/vendor/local/include/gstreamer-0.10/gst/gststructure.h +254 -0
  231. data/vendor/local/include/gstreamer-0.10/gst/gstsystemclock.h +89 -0
  232. data/vendor/local/include/gstreamer-0.10/gst/gsttaglist.h +1034 -0
  233. data/vendor/local/include/gstreamer-0.10/gst/gsttagsetter.h +100 -0
  234. data/vendor/local/include/gstreamer-0.10/gst/gsttask.h +205 -0
  235. data/vendor/local/include/gstreamer-0.10/gst/gsttaskpool.h +103 -0
  236. data/vendor/local/include/gstreamer-0.10/gst/gsttrace.h +251 -0
  237. data/vendor/local/include/gstreamer-0.10/gst/gsttypefind.h +122 -0
  238. data/vendor/local/include/gstreamer-0.10/gst/gsttypefindfactory.h +81 -0
  239. data/vendor/local/include/gstreamer-0.10/gst/gsturi.h +156 -0
  240. data/vendor/local/include/gstreamer-0.10/gst/gstutils.h +1198 -0
  241. data/vendor/local/include/gstreamer-0.10/gst/gstvalue.h +594 -0
  242. data/vendor/local/include/gstreamer-0.10/gst/gstversion.h +90 -0
  243. data/vendor/local/include/gstreamer-0.10/gst/gstxml.h +113 -0
  244. data/vendor/local/include/gstreamer-0.10/gst/interfaces/colorbalance.h +112 -0
  245. data/vendor/local/include/gstreamer-0.10/gst/interfaces/colorbalancechannel.h +75 -0
  246. data/vendor/local/include/gstreamer-0.10/gst/interfaces/interfaces-enumtypes.h +49 -0
  247. data/vendor/local/include/gstreamer-0.10/gst/interfaces/mixer.h +231 -0
  248. data/vendor/local/include/gstreamer-0.10/gst/interfaces/mixeroptions.h +91 -0
  249. data/vendor/local/include/gstreamer-0.10/gst/interfaces/mixertrack.h +134 -0
  250. data/vendor/local/include/gstreamer-0.10/gst/interfaces/navigation.h +257 -0
  251. data/vendor/local/include/gstreamer-0.10/gst/interfaces/photography-enumtypes.h +37 -0
  252. data/vendor/local/include/gstreamer-0.10/gst/interfaces/photography.h +387 -0
  253. data/vendor/local/include/gstreamer-0.10/gst/interfaces/propertyprobe.h +115 -0
  254. data/vendor/local/include/gstreamer-0.10/gst/interfaces/streamvolume.h +87 -0
  255. data/vendor/local/include/gstreamer-0.10/gst/interfaces/tuner.h +128 -0
  256. data/vendor/local/include/gstreamer-0.10/gst/interfaces/tunerchannel.h +113 -0
  257. data/vendor/local/include/gstreamer-0.10/gst/interfaces/tunernorm.h +67 -0
  258. data/vendor/local/include/gstreamer-0.10/gst/interfaces/videoorientation.h +94 -0
  259. data/vendor/local/include/gstreamer-0.10/gst/interfaces/xoverlay.h +121 -0
  260. data/vendor/local/include/gstreamer-0.10/gst/math-compat.h +84 -0
  261. data/vendor/local/include/gstreamer-0.10/gst/net/gstnet.h +30 -0
  262. data/vendor/local/include/gstreamer-0.10/gst/net/gstnetclientclock.h +105 -0
  263. data/vendor/local/include/gstreamer-0.10/gst/net/gstnettimepacket.h +78 -0
  264. data/vendor/local/include/gstreamer-0.10/gst/net/gstnettimeprovider.h +110 -0
  265. data/vendor/local/include/gstreamer-0.10/gst/netbuffer/gstnetbuffer.h +129 -0
  266. data/vendor/local/include/gstreamer-0.10/gst/pbutils/codec-utils.h +63 -0
  267. data/vendor/local/include/gstreamer-0.10/gst/pbutils/descriptions.h +58 -0
  268. data/vendor/local/include/gstreamer-0.10/gst/pbutils/encoding-profile.h +187 -0
  269. data/vendor/local/include/gstreamer-0.10/gst/pbutils/encoding-target.h +147 -0
  270. data/vendor/local/include/gstreamer-0.10/gst/pbutils/gstdiscoverer.h +266 -0
  271. data/vendor/local/include/gstreamer-0.10/gst/pbutils/gstpluginsbaseversion.h +86 -0
  272. data/vendor/local/include/gstreamer-0.10/gst/pbutils/install-plugins.h +144 -0
  273. data/vendor/local/include/gstreamer-0.10/gst/pbutils/missing-plugins.h +77 -0
  274. data/vendor/local/include/gstreamer-0.10/gst/pbutils/pbutils-enumtypes.h +23 -0
  275. data/vendor/local/include/gstreamer-0.10/gst/pbutils/pbutils.h +42 -0
  276. data/vendor/local/include/gstreamer-0.10/gst/riff/riff-ids.h +517 -0
  277. data/vendor/local/include/gstreamer-0.10/gst/riff/riff-media.h +65 -0
  278. data/vendor/local/include/gstreamer-0.10/gst/riff/riff-read.h +87 -0
  279. data/vendor/local/include/gstreamer-0.10/gst/rtp/gstbasertpaudiopayload.h +98 -0
  280. data/vendor/local/include/gstreamer-0.10/gst/rtp/gstbasertpdepayload.h +141 -0
  281. data/vendor/local/include/gstreamer-0.10/gst/rtp/gstbasertppayload.h +162 -0
  282. data/vendor/local/include/gstreamer-0.10/gst/rtp/gstrtcpbuffer.h +286 -0
  283. data/vendor/local/include/gstreamer-0.10/gst/rtp/gstrtpbuffer.h +166 -0
  284. data/vendor/local/include/gstreamer-0.10/gst/rtp/gstrtppayloads.h +193 -0
  285. data/vendor/local/include/gstreamer-0.10/gst/rtsp/gstrtsp-enumtypes.h +35 -0
  286. data/vendor/local/include/gstreamer-0.10/gst/rtsp/gstrtspbase64.h +37 -0
  287. data/vendor/local/include/gstreamer-0.10/gst/rtsp/gstrtspconnection.h +209 -0
  288. data/vendor/local/include/gstreamer-0.10/gst/rtsp/gstrtspdefs.h +397 -0
  289. data/vendor/local/include/gstreamer-0.10/gst/rtsp/gstrtspextension.h +97 -0
  290. data/vendor/local/include/gstreamer-0.10/gst/rtsp/gstrtspmessage.h +187 -0
  291. data/vendor/local/include/gstreamer-0.10/gst/rtsp/gstrtsprange.h +121 -0
  292. data/vendor/local/include/gstreamer-0.10/gst/rtsp/gstrtsptransport.h +174 -0
  293. data/vendor/local/include/gstreamer-0.10/gst/rtsp/gstrtspurl.h +103 -0
  294. data/vendor/local/include/gstreamer-0.10/gst/sdp/gstsdp.h +58 -0
  295. data/vendor/local/include/gstreamer-0.10/gst/sdp/gstsdpmessage.h +423 -0
  296. data/vendor/local/include/gstreamer-0.10/gst/signalprocessor/gstsignalprocessor.h +142 -0
  297. data/vendor/local/include/gstreamer-0.10/gst/tag/gsttagdemux.h +144 -0
  298. data/vendor/local/include/gstreamer-0.10/gst/tag/tag.h +549 -0
  299. data/vendor/local/include/gstreamer-0.10/gst/tag/xmpwriter.h +68 -0
  300. data/vendor/local/include/gstreamer-0.10/gst/video/gstbasevideocodec.h +195 -0
  301. data/vendor/local/include/gstreamer-0.10/gst/video/gstbasevideodecoder.h +182 -0
  302. data/vendor/local/include/gstreamer-0.10/gst/video/gstbasevideoencoder.h +128 -0
  303. data/vendor/local/include/gstreamer-0.10/gst/video/gstvideofilter.h +58 -0
  304. data/vendor/local/include/gstreamer-0.10/gst/video/gstvideosink.h +132 -0
  305. data/vendor/local/include/gstreamer-0.10/gst/video/video-enumtypes.h +19 -0
  306. data/vendor/local/include/gstreamer-0.10/gst/video/video.h +501 -0
  307. data/vendor/local/include/jconfig.h +46 -0
  308. data/vendor/local/include/jerror.h +304 -0
  309. data/vendor/local/include/jmorecfg.h +371 -0
  310. data/vendor/local/include/jpeglib.h +1158 -0
  311. data/vendor/local/include/libsoup-2.4/libsoup/soup-address.h +102 -0
  312. data/vendor/local/include/libsoup-2.4/libsoup/soup-auth-domain-basic.h +56 -0
  313. data/vendor/local/include/libsoup-2.4/libsoup/soup-auth-domain-digest.h +59 -0
  314. data/vendor/local/include/libsoup-2.4/libsoup/soup-auth-domain.h +99 -0
  315. data/vendor/local/include/libsoup-2.4/libsoup/soup-auth.h +90 -0
  316. data/vendor/local/include/libsoup-2.4/libsoup/soup-cookie-jar-text.h +44 -0
  317. data/vendor/local/include/libsoup-2.4/libsoup/soup-cookie-jar.h +68 -0
  318. data/vendor/local/include/libsoup-2.4/libsoup/soup-cookie.h +81 -0
  319. data/vendor/local/include/libsoup-2.4/libsoup/soup-date.h +64 -0
  320. data/vendor/local/include/libsoup-2.4/libsoup/soup-enum-types.h +63 -0
  321. data/vendor/local/include/libsoup-2.4/libsoup/soup-form.h +53 -0
  322. data/vendor/local/include/libsoup-2.4/libsoup/soup-headers.h +59 -0
  323. data/vendor/local/include/libsoup-2.4/libsoup/soup-logger.h +80 -0
  324. data/vendor/local/include/libsoup-2.4/libsoup/soup-message-body.h +81 -0
  325. data/vendor/local/include/libsoup-2.4/libsoup/soup-message-headers.h +133 -0
  326. data/vendor/local/include/libsoup-2.4/libsoup/soup-message.h +163 -0
  327. data/vendor/local/include/libsoup-2.4/libsoup/soup-method.h +77 -0
  328. data/vendor/local/include/libsoup-2.4/libsoup/soup-misc.h +52 -0
  329. data/vendor/local/include/libsoup-2.4/libsoup/soup-multipart.h +51 -0
  330. data/vendor/local/include/libsoup-2.4/libsoup/soup-portability.h +28 -0
  331. data/vendor/local/include/libsoup-2.4/libsoup/soup-proxy-resolver.h +57 -0
  332. data/vendor/local/include/libsoup-2.4/libsoup/soup-proxy-uri-resolver.h +57 -0
  333. data/vendor/local/include/libsoup-2.4/libsoup/soup-server.h +113 -0
  334. data/vendor/local/include/libsoup-2.4/libsoup/soup-session-async.h +44 -0
  335. data/vendor/local/include/libsoup-2.4/libsoup/soup-session-feature.h +51 -0
  336. data/vendor/local/include/libsoup-2.4/libsoup/soup-session-sync.h +44 -0
  337. data/vendor/local/include/libsoup-2.4/libsoup/soup-session.h +109 -0
  338. data/vendor/local/include/libsoup-2.4/libsoup/soup-socket.h +115 -0
  339. data/vendor/local/include/libsoup-2.4/libsoup/soup-status.h +102 -0
  340. data/vendor/local/include/libsoup-2.4/libsoup/soup-types.h +32 -0
  341. data/vendor/local/include/libsoup-2.4/libsoup/soup-uri.h +90 -0
  342. data/vendor/local/include/libsoup-2.4/libsoup/soup-value-utils.h +84 -0
  343. data/vendor/local/include/libsoup-2.4/libsoup/soup-xmlrpc.h +83 -0
  344. data/vendor/local/include/libsoup-2.4/libsoup/soup.h +45 -0
  345. data/vendor/local/include/libxml2/libxml/DOCBparser.h +96 -0
  346. data/vendor/local/include/libxml2/libxml/HTMLparser.h +304 -0
  347. data/vendor/local/include/libxml2/libxml/HTMLtree.h +147 -0
  348. data/vendor/local/include/libxml2/libxml/SAX.h +173 -0
  349. data/vendor/local/include/libxml2/libxml/SAX2.h +176 -0
  350. data/vendor/local/include/libxml2/libxml/c14n.h +126 -0
  351. data/vendor/local/include/libxml2/libxml/catalog.h +182 -0
  352. data/vendor/local/include/libxml2/libxml/chvalid.h +230 -0
  353. data/vendor/local/include/libxml2/libxml/debugXML.h +217 -0
  354. data/vendor/local/include/libxml2/libxml/dict.h +69 -0
  355. data/vendor/local/include/libxml2/libxml/encoding.h +226 -0
  356. data/vendor/local/include/libxml2/libxml/entities.h +150 -0
  357. data/vendor/local/include/libxml2/libxml/globals.h +502 -0
  358. data/vendor/local/include/libxml2/libxml/hash.h +233 -0
  359. data/vendor/local/include/libxml2/libxml/list.h +137 -0
  360. data/vendor/local/include/libxml2/libxml/nanoftp.h +143 -0
  361. data/vendor/local/include/libxml2/libxml/nanohttp.h +81 -0
  362. data/vendor/local/include/libxml2/libxml/parser.h +1235 -0
  363. data/vendor/local/include/libxml2/libxml/parserInternals.h +611 -0
  364. data/vendor/local/include/libxml2/libxml/pattern.h +100 -0
  365. data/vendor/local/include/libxml2/libxml/relaxng.h +213 -0
  366. data/vendor/local/include/libxml2/libxml/schemasInternals.h +958 -0
  367. data/vendor/local/include/libxml2/libxml/schematron.h +142 -0
  368. data/vendor/local/include/libxml2/libxml/threads.h +84 -0
  369. data/vendor/local/include/libxml2/libxml/tree.h +1252 -0
  370. data/vendor/local/include/libxml2/libxml/uri.h +94 -0
  371. data/vendor/local/include/libxml2/libxml/valid.h +458 -0
  372. data/vendor/local/include/libxml2/libxml/xinclude.h +129 -0
  373. data/vendor/local/include/libxml2/libxml/xlink.h +189 -0
  374. data/vendor/local/include/libxml2/libxml/xmlIO.h +360 -0
  375. data/vendor/local/include/libxml2/libxml/xmlautomata.h +146 -0
  376. data/vendor/local/include/libxml2/libxml/xmlerror.h +944 -0
  377. data/vendor/local/include/libxml2/libxml/xmlexports.h +162 -0
  378. data/vendor/local/include/libxml2/libxml/xmlmemory.h +224 -0
  379. data/vendor/local/include/libxml2/libxml/xmlmodule.h +57 -0
  380. data/vendor/local/include/libxml2/libxml/xmlreader.h +424 -0
  381. data/vendor/local/include/libxml2/libxml/xmlregexp.h +222 -0
  382. data/vendor/local/include/libxml2/libxml/xmlsave.h +87 -0
  383. data/vendor/local/include/libxml2/libxml/xmlschemas.h +218 -0
  384. data/vendor/local/include/libxml2/libxml/xmlschemastypes.h +151 -0
  385. data/vendor/local/include/libxml2/libxml/xmlstring.h +140 -0
  386. data/vendor/local/include/libxml2/libxml/xmlunicode.h +202 -0
  387. data/vendor/local/include/libxml2/libxml/xmlversion.h +458 -0
  388. data/vendor/local/include/libxml2/libxml/xmlwriter.h +485 -0
  389. data/vendor/local/include/libxml2/libxml/xpath.h +546 -0
  390. data/vendor/local/include/libxml2/libxml/xpathInternals.h +630 -0
  391. data/vendor/local/include/libxml2/libxml/xpointer.h +114 -0
  392. data/vendor/local/include/ogg/config_types.h +25 -0
  393. data/vendor/local/include/ogg/ogg.h +210 -0
  394. data/vendor/local/include/ogg/os_types.h +147 -0
  395. data/vendor/local/include/speex/speex.h +424 -0
  396. data/vendor/local/include/speex/speex_bits.h +174 -0
  397. data/vendor/local/include/speex/speex_buffer.h +68 -0
  398. data/vendor/local/include/speex/speex_callbacks.h +134 -0
  399. data/vendor/local/include/speex/speex_config_types.h +11 -0
  400. data/vendor/local/include/speex/speex_echo.h +170 -0
  401. data/vendor/local/include/speex/speex_header.h +94 -0
  402. data/vendor/local/include/speex/speex_jitter.h +197 -0
  403. data/vendor/local/include/speex/speex_preprocess.h +219 -0
  404. data/vendor/local/include/speex/speex_resampler.h +340 -0
  405. data/vendor/local/include/speex/speex_stereo.h +91 -0
  406. data/vendor/local/include/speex/speex_types.h +126 -0
  407. data/vendor/local/include/theora/codec.h +591 -0
  408. data/vendor/local/include/theora/theora.h +784 -0
  409. data/vendor/local/include/theora/theoradec.h +325 -0
  410. data/vendor/local/include/theora/theoraenc.h +486 -0
  411. data/vendor/local/include/vorbis/codec.h +243 -0
  412. data/vendor/local/include/vorbis/vorbisenc.h +436 -0
  413. data/vendor/local/include/vorbis/vorbisfile.h +206 -0
  414. data/vendor/local/lib/gstreamer-0.10/libgstadder.dll +0 -0
  415. data/vendor/local/lib/gstreamer-0.10/libgstadder.dll.a +0 -0
  416. data/vendor/local/lib/gstreamer-0.10/libgstadder.la +41 -0
  417. data/vendor/local/lib/gstreamer-0.10/libgstadpcmdec.dll +0 -0
  418. data/vendor/local/lib/gstreamer-0.10/libgstadpcmdec.dll.a +0 -0
  419. data/vendor/local/lib/gstreamer-0.10/libgstadpcmdec.la +41 -0
  420. data/vendor/local/lib/gstreamer-0.10/libgstadpcmenc.dll +0 -0
  421. data/vendor/local/lib/gstreamer-0.10/libgstadpcmenc.dll.a +0 -0
  422. data/vendor/local/lib/gstreamer-0.10/libgstadpcmenc.la +41 -0
  423. data/vendor/local/lib/gstreamer-0.10/libgstaiff.dll +0 -0
  424. data/vendor/local/lib/gstreamer-0.10/libgstaiff.dll.a +0 -0
  425. data/vendor/local/lib/gstreamer-0.10/libgstaiff.la +41 -0
  426. data/vendor/local/lib/gstreamer-0.10/libgstalaw.dll +0 -0
  427. data/vendor/local/lib/gstreamer-0.10/libgstalaw.dll.a +0 -0
  428. data/vendor/local/lib/gstreamer-0.10/libgstalaw.la +41 -0
  429. data/vendor/local/lib/gstreamer-0.10/libgstalpha.dll +0 -0
  430. data/vendor/local/lib/gstreamer-0.10/libgstalpha.dll.a +0 -0
  431. data/vendor/local/lib/gstreamer-0.10/libgstalpha.la +41 -0
  432. data/vendor/local/lib/gstreamer-0.10/libgstalphacolor.dll +0 -0
  433. data/vendor/local/lib/gstreamer-0.10/libgstalphacolor.dll.a +0 -0
  434. data/vendor/local/lib/gstreamer-0.10/libgstalphacolor.la +41 -0
  435. data/vendor/local/lib/gstreamer-0.10/libgstannodex.dll +0 -0
  436. data/vendor/local/lib/gstreamer-0.10/libgstannodex.dll.a +0 -0
  437. data/vendor/local/lib/gstreamer-0.10/libgstannodex.la +41 -0
  438. data/vendor/local/lib/gstreamer-0.10/libgstapetag.dll +0 -0
  439. data/vendor/local/lib/gstreamer-0.10/libgstapetag.dll.a +0 -0
  440. data/vendor/local/lib/gstreamer-0.10/libgstapetag.la +41 -0
  441. data/vendor/local/lib/gstreamer-0.10/libgstapp.dll +0 -0
  442. data/vendor/local/lib/gstreamer-0.10/libgstapp.dll.a +0 -0
  443. data/vendor/local/lib/gstreamer-0.10/libgstapp.la +41 -0
  444. data/vendor/local/lib/gstreamer-0.10/libgstasfmux.dll +0 -0
  445. data/vendor/local/lib/gstreamer-0.10/libgstasfmux.dll.a +0 -0
  446. data/vendor/local/lib/gstreamer-0.10/libgstasfmux.la +41 -0
  447. data/vendor/local/lib/gstreamer-0.10/libgstaudioconvert.dll +0 -0
  448. data/vendor/local/lib/gstreamer-0.10/libgstaudioconvert.dll.a +0 -0
  449. data/vendor/local/lib/gstreamer-0.10/libgstaudioconvert.la +41 -0
  450. data/vendor/local/lib/gstreamer-0.10/libgstaudiofx.dll +0 -0
  451. data/vendor/local/lib/gstreamer-0.10/libgstaudiofx.dll.a +0 -0
  452. data/vendor/local/lib/gstreamer-0.10/libgstaudiofx.la +41 -0
  453. data/vendor/local/lib/gstreamer-0.10/libgstaudioparsers.dll +0 -0
  454. data/vendor/local/lib/gstreamer-0.10/libgstaudioparsers.dll.a +0 -0
  455. data/vendor/local/lib/gstreamer-0.10/libgstaudioparsers.la +41 -0
  456. data/vendor/local/lib/gstreamer-0.10/libgstaudiorate.dll +0 -0
  457. data/vendor/local/lib/gstreamer-0.10/libgstaudiorate.dll.a +0 -0
  458. data/vendor/local/lib/gstreamer-0.10/libgstaudiorate.la +41 -0
  459. data/vendor/local/lib/gstreamer-0.10/libgstaudioresample.dll +0 -0
  460. data/vendor/local/lib/gstreamer-0.10/libgstaudioresample.dll.a +0 -0
  461. data/vendor/local/lib/gstreamer-0.10/libgstaudioresample.la +41 -0
  462. data/vendor/local/lib/gstreamer-0.10/libgstaudiotestsrc.dll +0 -0
  463. data/vendor/local/lib/gstreamer-0.10/libgstaudiotestsrc.dll.a +0 -0
  464. data/vendor/local/lib/gstreamer-0.10/libgstaudiotestsrc.la +41 -0
  465. data/vendor/local/lib/gstreamer-0.10/libgstauparse.dll +0 -0
  466. data/vendor/local/lib/gstreamer-0.10/libgstauparse.dll.a +0 -0
  467. data/vendor/local/lib/gstreamer-0.10/libgstauparse.la +41 -0
  468. data/vendor/local/lib/gstreamer-0.10/libgstautoconvert.dll +0 -0
  469. data/vendor/local/lib/gstreamer-0.10/libgstautoconvert.dll.a +0 -0
  470. data/vendor/local/lib/gstreamer-0.10/libgstautoconvert.la +41 -0
  471. data/vendor/local/lib/gstreamer-0.10/libgstautodetect.dll +0 -0
  472. data/vendor/local/lib/gstreamer-0.10/libgstautodetect.dll.a +0 -0
  473. data/vendor/local/lib/gstreamer-0.10/libgstautodetect.la +41 -0
  474. data/vendor/local/lib/gstreamer-0.10/libgstavi.dll +0 -0
  475. data/vendor/local/lib/gstreamer-0.10/libgstavi.dll.a +0 -0
  476. data/vendor/local/lib/gstreamer-0.10/libgstavi.la +41 -0
  477. data/vendor/local/lib/gstreamer-0.10/libgstbayer.dll +0 -0
  478. data/vendor/local/lib/gstreamer-0.10/libgstbayer.dll.a +0 -0
  479. data/vendor/local/lib/gstreamer-0.10/libgstbayer.la +41 -0
  480. data/vendor/local/lib/gstreamer-0.10/libgstcairo.dll +0 -0
  481. data/vendor/local/lib/gstreamer-0.10/libgstcairo.dll.a +0 -0
  482. data/vendor/local/lib/gstreamer-0.10/libgstcairo.la +41 -0
  483. data/vendor/local/lib/gstreamer-0.10/libgstcamerabin.dll +0 -0
  484. data/vendor/local/lib/gstreamer-0.10/libgstcamerabin.dll.a +0 -0
  485. data/vendor/local/lib/gstreamer-0.10/libgstcamerabin.la +41 -0
  486. data/vendor/local/lib/gstreamer-0.10/libgstcdxaparse.dll +0 -0
  487. data/vendor/local/lib/gstreamer-0.10/libgstcdxaparse.dll.a +0 -0
  488. data/vendor/local/lib/gstreamer-0.10/libgstcdxaparse.la +41 -0
  489. data/vendor/local/lib/gstreamer-0.10/libgstcog.dll +0 -0
  490. data/vendor/local/lib/gstreamer-0.10/libgstcog.dll.a +0 -0
  491. data/vendor/local/lib/gstreamer-0.10/libgstcog.la +41 -0
  492. data/vendor/local/lib/gstreamer-0.10/libgstcoloreffects.dll +0 -0
  493. data/vendor/local/lib/gstreamer-0.10/libgstcoloreffects.dll.a +0 -0
  494. data/vendor/local/lib/gstreamer-0.10/libgstcoloreffects.la +41 -0
  495. data/vendor/local/lib/gstreamer-0.10/libgstcolorspace.dll +0 -0
  496. data/vendor/local/lib/gstreamer-0.10/libgstcolorspace.dll.a +0 -0
  497. data/vendor/local/lib/gstreamer-0.10/libgstcolorspace.la +41 -0
  498. data/vendor/local/lib/gstreamer-0.10/libgstcoreelements.dll +0 -0
  499. data/vendor/local/lib/gstreamer-0.10/libgstcoreelements.dll.a +0 -0
  500. data/vendor/local/lib/gstreamer-0.10/libgstcoreelements.la +41 -0
  501. data/vendor/local/lib/gstreamer-0.10/libgstcoreindexers.dll +0 -0
  502. data/vendor/local/lib/gstreamer-0.10/libgstcoreindexers.dll.a +0 -0
  503. data/vendor/local/lib/gstreamer-0.10/libgstcoreindexers.la +41 -0
  504. data/vendor/local/lib/gstreamer-0.10/libgstcutter.dll +0 -0
  505. data/vendor/local/lib/gstreamer-0.10/libgstcutter.dll.a +0 -0
  506. data/vendor/local/lib/gstreamer-0.10/libgstcutter.la +41 -0
  507. data/vendor/local/lib/gstreamer-0.10/libgstdataurisrc.dll +0 -0
  508. data/vendor/local/lib/gstreamer-0.10/libgstdataurisrc.dll.a +0 -0
  509. data/vendor/local/lib/gstreamer-0.10/libgstdataurisrc.la +41 -0
  510. data/vendor/local/lib/gstreamer-0.10/libgstdebug.dll +0 -0
  511. data/vendor/local/lib/gstreamer-0.10/libgstdebug.dll.a +0 -0
  512. data/vendor/local/lib/gstreamer-0.10/libgstdebug.la +41 -0
  513. data/vendor/local/lib/gstreamer-0.10/libgstdebugutilsbad.dll +0 -0
  514. data/vendor/local/lib/gstreamer-0.10/libgstdebugutilsbad.dll.a +0 -0
  515. data/vendor/local/lib/gstreamer-0.10/libgstdebugutilsbad.la +41 -0
  516. data/vendor/local/lib/gstreamer-0.10/libgstdecodebin.dll +0 -0
  517. data/vendor/local/lib/gstreamer-0.10/libgstdecodebin.dll.a +0 -0
  518. data/vendor/local/lib/gstreamer-0.10/libgstdecodebin.la +41 -0
  519. data/vendor/local/lib/gstreamer-0.10/libgstdecodebin2.dll +0 -0
  520. data/vendor/local/lib/gstreamer-0.10/libgstdecodebin2.dll.a +0 -0
  521. data/vendor/local/lib/gstreamer-0.10/libgstdecodebin2.la +41 -0
  522. data/vendor/local/lib/gstreamer-0.10/libgstdeinterlace.dll +0 -0
  523. data/vendor/local/lib/gstreamer-0.10/libgstdeinterlace.dll.a +0 -0
  524. data/vendor/local/lib/gstreamer-0.10/libgstdeinterlace.la +41 -0
  525. data/vendor/local/lib/gstreamer-0.10/libgstdirectdrawsink.dll +0 -0
  526. data/vendor/local/lib/gstreamer-0.10/libgstdirectdrawsink.dll.a +0 -0
  527. data/vendor/local/lib/gstreamer-0.10/libgstdirectdrawsink.la +41 -0
  528. data/vendor/local/lib/gstreamer-0.10/libgstdirectsoundsink.dll +0 -0
  529. data/vendor/local/lib/gstreamer-0.10/libgstdirectsoundsink.dll.a +0 -0
  530. data/vendor/local/lib/gstreamer-0.10/libgstdirectsoundsink.la +41 -0
  531. data/vendor/local/lib/gstreamer-0.10/libgstdirectsoundsrc.dll +0 -0
  532. data/vendor/local/lib/gstreamer-0.10/libgstdirectsoundsrc.dll.a +0 -0
  533. data/vendor/local/lib/gstreamer-0.10/libgstdirectsoundsrc.la +41 -0
  534. data/vendor/local/lib/gstreamer-0.10/libgstdtmf.dll +0 -0
  535. data/vendor/local/lib/gstreamer-0.10/libgstdtmf.dll.a +0 -0
  536. data/vendor/local/lib/gstreamer-0.10/libgstdtmf.la +41 -0
  537. data/vendor/local/lib/gstreamer-0.10/libgstdvbsuboverlay.dll +0 -0
  538. data/vendor/local/lib/gstreamer-0.10/libgstdvbsuboverlay.dll.a +0 -0
  539. data/vendor/local/lib/gstreamer-0.10/libgstdvbsuboverlay.la +41 -0
  540. data/vendor/local/lib/gstreamer-0.10/libgstdvdspu.dll +0 -0
  541. data/vendor/local/lib/gstreamer-0.10/libgstdvdspu.dll.a +0 -0
  542. data/vendor/local/lib/gstreamer-0.10/libgstdvdspu.la +41 -0
  543. data/vendor/local/lib/gstreamer-0.10/libgsteffectv.dll +0 -0
  544. data/vendor/local/lib/gstreamer-0.10/libgsteffectv.dll.a +0 -0
  545. data/vendor/local/lib/gstreamer-0.10/libgsteffectv.la +41 -0
  546. data/vendor/local/lib/gstreamer-0.10/libgstencodebin.dll +0 -0
  547. data/vendor/local/lib/gstreamer-0.10/libgstencodebin.dll.a +0 -0
  548. data/vendor/local/lib/gstreamer-0.10/libgstencodebin.la +41 -0
  549. data/vendor/local/lib/gstreamer-0.10/libgstequalizer.dll +0 -0
  550. data/vendor/local/lib/gstreamer-0.10/libgstequalizer.dll.a +0 -0
  551. data/vendor/local/lib/gstreamer-0.10/libgstequalizer.la +41 -0
  552. data/vendor/local/lib/gstreamer-0.10/libgstfestival.dll +0 -0
  553. data/vendor/local/lib/gstreamer-0.10/libgstfestival.dll.a +0 -0
  554. data/vendor/local/lib/gstreamer-0.10/libgstfestival.la +41 -0
  555. data/vendor/local/lib/gstreamer-0.10/libgstffmpeg.dll +0 -0
  556. data/vendor/local/lib/gstreamer-0.10/libgstffmpeg.dll.a +0 -0
  557. data/vendor/local/lib/gstreamer-0.10/libgstffmpeg.la +41 -0
  558. data/vendor/local/lib/gstreamer-0.10/libgstffmpegcolorspace.dll +0 -0
  559. data/vendor/local/lib/gstreamer-0.10/libgstffmpegcolorspace.dll.a +0 -0
  560. data/vendor/local/lib/gstreamer-0.10/libgstffmpegcolorspace.la +41 -0
  561. data/vendor/local/lib/gstreamer-0.10/libgstffmpegscale.dll +0 -0
  562. data/vendor/local/lib/gstreamer-0.10/libgstffmpegscale.dll.a +0 -0
  563. data/vendor/local/lib/gstreamer-0.10/libgstffmpegscale.la +41 -0
  564. data/vendor/local/lib/gstreamer-0.10/libgstfieldanalysis.dll +0 -0
  565. data/vendor/local/lib/gstreamer-0.10/libgstfieldanalysis.dll.a +0 -0
  566. data/vendor/local/lib/gstreamer-0.10/libgstfieldanalysis.la +41 -0
  567. data/vendor/local/lib/gstreamer-0.10/libgstflv.dll +0 -0
  568. data/vendor/local/lib/gstreamer-0.10/libgstflv.dll.a +0 -0
  569. data/vendor/local/lib/gstreamer-0.10/libgstflv.la +41 -0
  570. data/vendor/local/lib/gstreamer-0.10/libgstflxdec.dll +0 -0
  571. data/vendor/local/lib/gstreamer-0.10/libgstflxdec.dll.a +0 -0
  572. data/vendor/local/lib/gstreamer-0.10/libgstflxdec.la +41 -0
  573. data/vendor/local/lib/gstreamer-0.10/libgstfragmented.dll +0 -0
  574. data/vendor/local/lib/gstreamer-0.10/libgstfragmented.dll.a +0 -0
  575. data/vendor/local/lib/gstreamer-0.10/libgstfragmented.la +41 -0
  576. data/vendor/local/lib/gstreamer-0.10/libgstfreeze.dll +0 -0
  577. data/vendor/local/lib/gstreamer-0.10/libgstfreeze.dll.a +0 -0
  578. data/vendor/local/lib/gstreamer-0.10/libgstfreeze.la +41 -0
  579. data/vendor/local/lib/gstreamer-0.10/libgstfrei0r.dll +0 -0
  580. data/vendor/local/lib/gstreamer-0.10/libgstfrei0r.dll.a +0 -0
  581. data/vendor/local/lib/gstreamer-0.10/libgstfrei0r.la +41 -0
  582. data/vendor/local/lib/gstreamer-0.10/libgstgaudieffects.dll +0 -0
  583. data/vendor/local/lib/gstreamer-0.10/libgstgaudieffects.dll.a +0 -0
  584. data/vendor/local/lib/gstreamer-0.10/libgstgaudieffects.la +41 -0
  585. data/vendor/local/lib/gstreamer-0.10/libgstgdkpixbuf.dll +0 -0
  586. data/vendor/local/lib/gstreamer-0.10/libgstgdkpixbuf.dll.a +0 -0
  587. data/vendor/local/lib/gstreamer-0.10/libgstgdkpixbuf.la +41 -0
  588. data/vendor/local/lib/gstreamer-0.10/libgstgdp.dll +0 -0
  589. data/vendor/local/lib/gstreamer-0.10/libgstgdp.dll.a +0 -0
  590. data/vendor/local/lib/gstreamer-0.10/libgstgdp.la +41 -0
  591. data/vendor/local/lib/gstreamer-0.10/libgstgeometrictransform.dll +0 -0
  592. data/vendor/local/lib/gstreamer-0.10/libgstgeometrictransform.dll.a +0 -0
  593. data/vendor/local/lib/gstreamer-0.10/libgstgeometrictransform.la +41 -0
  594. data/vendor/local/lib/gstreamer-0.10/libgstgio.dll +0 -0
  595. data/vendor/local/lib/gstreamer-0.10/libgstgio.dll.a +0 -0
  596. data/vendor/local/lib/gstreamer-0.10/libgstgio.la +41 -0
  597. data/vendor/local/lib/gstreamer-0.10/libgstgoom.dll +0 -0
  598. data/vendor/local/lib/gstreamer-0.10/libgstgoom.dll.a +0 -0
  599. data/vendor/local/lib/gstreamer-0.10/libgstgoom.la +41 -0
  600. data/vendor/local/lib/gstreamer-0.10/libgstgoom2k1.dll +0 -0
  601. data/vendor/local/lib/gstreamer-0.10/libgstgoom2k1.dll.a +0 -0
  602. data/vendor/local/lib/gstreamer-0.10/libgstgoom2k1.la +41 -0
  603. data/vendor/local/lib/gstreamer-0.10/libgstgsettingselements.dll +0 -0
  604. data/vendor/local/lib/gstreamer-0.10/libgstgsettingselements.dll.a +0 -0
  605. data/vendor/local/lib/gstreamer-0.10/libgstgsettingselements.la +41 -0
  606. data/vendor/local/lib/gstreamer-0.10/libgsth264parse.dll +0 -0
  607. data/vendor/local/lib/gstreamer-0.10/libgsth264parse.dll.a +0 -0
  608. data/vendor/local/lib/gstreamer-0.10/libgsth264parse.la +41 -0
  609. data/vendor/local/lib/gstreamer-0.10/libgsthdvparse.dll +0 -0
  610. data/vendor/local/lib/gstreamer-0.10/libgsthdvparse.dll.a +0 -0
  611. data/vendor/local/lib/gstreamer-0.10/libgsthdvparse.la +41 -0
  612. data/vendor/local/lib/gstreamer-0.10/libgsticydemux.dll +0 -0
  613. data/vendor/local/lib/gstreamer-0.10/libgsticydemux.dll.a +0 -0
  614. data/vendor/local/lib/gstreamer-0.10/libgsticydemux.la +41 -0
  615. data/vendor/local/lib/gstreamer-0.10/libgstid3demux.dll +0 -0
  616. data/vendor/local/lib/gstreamer-0.10/libgstid3demux.dll.a +0 -0
  617. data/vendor/local/lib/gstreamer-0.10/libgstid3demux.la +41 -0
  618. data/vendor/local/lib/gstreamer-0.10/libgstid3tag.dll +0 -0
  619. data/vendor/local/lib/gstreamer-0.10/libgstid3tag.dll.a +0 -0
  620. data/vendor/local/lib/gstreamer-0.10/libgstid3tag.la +41 -0
  621. data/vendor/local/lib/gstreamer-0.10/libgstimagefreeze.dll +0 -0
  622. data/vendor/local/lib/gstreamer-0.10/libgstimagefreeze.dll.a +0 -0
  623. data/vendor/local/lib/gstreamer-0.10/libgstimagefreeze.la +41 -0
  624. data/vendor/local/lib/gstreamer-0.10/libgstinterlace.dll +0 -0
  625. data/vendor/local/lib/gstreamer-0.10/libgstinterlace.dll.a +0 -0
  626. data/vendor/local/lib/gstreamer-0.10/libgstinterlace.la +41 -0
  627. data/vendor/local/lib/gstreamer-0.10/libgstinterleave.dll +0 -0
  628. data/vendor/local/lib/gstreamer-0.10/libgstinterleave.dll.a +0 -0
  629. data/vendor/local/lib/gstreamer-0.10/libgstinterleave.la +41 -0
  630. data/vendor/local/lib/gstreamer-0.10/libgstinvtelecine.dll +0 -0
  631. data/vendor/local/lib/gstreamer-0.10/libgstinvtelecine.dll.a +0 -0
  632. data/vendor/local/lib/gstreamer-0.10/libgstinvtelecine.la +41 -0
  633. data/vendor/local/lib/gstreamer-0.10/libgstisomp4.dll +0 -0
  634. data/vendor/local/lib/gstreamer-0.10/libgstisomp4.dll.a +0 -0
  635. data/vendor/local/lib/gstreamer-0.10/libgstisomp4.la +41 -0
  636. data/vendor/local/lib/gstreamer-0.10/libgstivfparse.dll +0 -0
  637. data/vendor/local/lib/gstreamer-0.10/libgstivfparse.dll.a +0 -0
  638. data/vendor/local/lib/gstreamer-0.10/libgstivfparse.la +41 -0
  639. data/vendor/local/lib/gstreamer-0.10/libgstjp2kdecimator.dll +0 -0
  640. data/vendor/local/lib/gstreamer-0.10/libgstjp2kdecimator.dll.a +0 -0
  641. data/vendor/local/lib/gstreamer-0.10/libgstjp2kdecimator.la +41 -0
  642. data/vendor/local/lib/gstreamer-0.10/libgstjpeg.dll +0 -0
  643. data/vendor/local/lib/gstreamer-0.10/libgstjpeg.dll.a +0 -0
  644. data/vendor/local/lib/gstreamer-0.10/libgstjpeg.la +41 -0
  645. data/vendor/local/lib/gstreamer-0.10/libgstjpegformat.dll +0 -0
  646. data/vendor/local/lib/gstreamer-0.10/libgstjpegformat.dll.a +0 -0
  647. data/vendor/local/lib/gstreamer-0.10/libgstjpegformat.la +41 -0
  648. data/vendor/local/lib/gstreamer-0.10/libgstlegacyresample.dll +0 -0
  649. data/vendor/local/lib/gstreamer-0.10/libgstlegacyresample.dll.a +0 -0
  650. data/vendor/local/lib/gstreamer-0.10/libgstlegacyresample.la +41 -0
  651. data/vendor/local/lib/gstreamer-0.10/libgstlevel.dll +0 -0
  652. data/vendor/local/lib/gstreamer-0.10/libgstlevel.dll.a +0 -0
  653. data/vendor/local/lib/gstreamer-0.10/libgstlevel.la +41 -0
  654. data/vendor/local/lib/gstreamer-0.10/libgstliveadder.dll +0 -0
  655. data/vendor/local/lib/gstreamer-0.10/libgstliveadder.dll.a +0 -0
  656. data/vendor/local/lib/gstreamer-0.10/libgstliveadder.la +41 -0
  657. data/vendor/local/lib/gstreamer-0.10/libgstmatroska.dll +0 -0
  658. data/vendor/local/lib/gstreamer-0.10/libgstmatroska.dll.a +0 -0
  659. data/vendor/local/lib/gstreamer-0.10/libgstmatroska.la +41 -0
  660. data/vendor/local/lib/gstreamer-0.10/libgstmpeg4videoparse.dll +0 -0
  661. data/vendor/local/lib/gstreamer-0.10/libgstmpeg4videoparse.dll.a +0 -0
  662. data/vendor/local/lib/gstreamer-0.10/libgstmpeg4videoparse.la +41 -0
  663. data/vendor/local/lib/gstreamer-0.10/libgstmpegdemux.dll +0 -0
  664. data/vendor/local/lib/gstreamer-0.10/libgstmpegdemux.dll.a +0 -0
  665. data/vendor/local/lib/gstreamer-0.10/libgstmpegdemux.la +41 -0
  666. data/vendor/local/lib/gstreamer-0.10/libgstmpegpsmux.dll +0 -0
  667. data/vendor/local/lib/gstreamer-0.10/libgstmpegpsmux.dll.a +0 -0
  668. data/vendor/local/lib/gstreamer-0.10/libgstmpegpsmux.la +41 -0
  669. data/vendor/local/lib/gstreamer-0.10/libgstmpegtsdemux.dll +0 -0
  670. data/vendor/local/lib/gstreamer-0.10/libgstmpegtsdemux.dll.a +0 -0
  671. data/vendor/local/lib/gstreamer-0.10/libgstmpegtsdemux.la +41 -0
  672. data/vendor/local/lib/gstreamer-0.10/libgstmpegtsmux.dll +0 -0
  673. data/vendor/local/lib/gstreamer-0.10/libgstmpegtsmux.dll.a +0 -0
  674. data/vendor/local/lib/gstreamer-0.10/libgstmpegtsmux.la +41 -0
  675. data/vendor/local/lib/gstreamer-0.10/libgstmpegvideoparse.dll +0 -0
  676. data/vendor/local/lib/gstreamer-0.10/libgstmpegvideoparse.dll.a +0 -0
  677. data/vendor/local/lib/gstreamer-0.10/libgstmpegvideoparse.la +41 -0
  678. data/vendor/local/lib/gstreamer-0.10/libgstmulaw.dll +0 -0
  679. data/vendor/local/lib/gstreamer-0.10/libgstmulaw.dll.a +0 -0
  680. data/vendor/local/lib/gstreamer-0.10/libgstmulaw.la +41 -0
  681. data/vendor/local/lib/gstreamer-0.10/libgstmultifile.dll +0 -0
  682. data/vendor/local/lib/gstreamer-0.10/libgstmultifile.dll.a +0 -0
  683. data/vendor/local/lib/gstreamer-0.10/libgstmultifile.la +41 -0
  684. data/vendor/local/lib/gstreamer-0.10/libgstmultipart.dll +0 -0
  685. data/vendor/local/lib/gstreamer-0.10/libgstmultipart.dll.a +0 -0
  686. data/vendor/local/lib/gstreamer-0.10/libgstmultipart.la +41 -0
  687. data/vendor/local/lib/gstreamer-0.10/libgstmve.dll +0 -0
  688. data/vendor/local/lib/gstreamer-0.10/libgstmve.dll.a +0 -0
  689. data/vendor/local/lib/gstreamer-0.10/libgstmve.la +41 -0
  690. data/vendor/local/lib/gstreamer-0.10/libgstmxf.dll +0 -0
  691. data/vendor/local/lib/gstreamer-0.10/libgstmxf.dll.a +0 -0
  692. data/vendor/local/lib/gstreamer-0.10/libgstmxf.la +41 -0
  693. data/vendor/local/lib/gstreamer-0.10/libgstnavigationtest.dll +0 -0
  694. data/vendor/local/lib/gstreamer-0.10/libgstnavigationtest.dll.a +0 -0
  695. data/vendor/local/lib/gstreamer-0.10/libgstnavigationtest.la +41 -0
  696. data/vendor/local/lib/gstreamer-0.10/libgstnsf.dll +0 -0
  697. data/vendor/local/lib/gstreamer-0.10/libgstnsf.dll.a +0 -0
  698. data/vendor/local/lib/gstreamer-0.10/libgstnsf.la +41 -0
  699. data/vendor/local/lib/gstreamer-0.10/libgstnuvdemux.dll +0 -0
  700. data/vendor/local/lib/gstreamer-0.10/libgstnuvdemux.dll.a +0 -0
  701. data/vendor/local/lib/gstreamer-0.10/libgstnuvdemux.la +41 -0
  702. data/vendor/local/lib/gstreamer-0.10/libgstogg.dll +0 -0
  703. data/vendor/local/lib/gstreamer-0.10/libgstogg.dll.a +0 -0
  704. data/vendor/local/lib/gstreamer-0.10/libgstogg.la +41 -0
  705. data/vendor/local/lib/gstreamer-0.10/libgstpango.dll +0 -0
  706. data/vendor/local/lib/gstreamer-0.10/libgstpango.dll.a +0 -0
  707. data/vendor/local/lib/gstreamer-0.10/libgstpango.la +41 -0
  708. data/vendor/local/lib/gstreamer-0.10/libgstpatchdetect.dll +0 -0
  709. data/vendor/local/lib/gstreamer-0.10/libgstpatchdetect.dll.a +0 -0
  710. data/vendor/local/lib/gstreamer-0.10/libgstpatchdetect.la +41 -0
  711. data/vendor/local/lib/gstreamer-0.10/libgstpcapparse.dll +0 -0
  712. data/vendor/local/lib/gstreamer-0.10/libgstpcapparse.dll.a +0 -0
  713. data/vendor/local/lib/gstreamer-0.10/libgstpcapparse.la +41 -0
  714. data/vendor/local/lib/gstreamer-0.10/libgstplaybin.dll +0 -0
  715. data/vendor/local/lib/gstreamer-0.10/libgstplaybin.dll.a +0 -0
  716. data/vendor/local/lib/gstreamer-0.10/libgstplaybin.la +41 -0
  717. data/vendor/local/lib/gstreamer-0.10/libgstpng.dll +0 -0
  718. data/vendor/local/lib/gstreamer-0.10/libgstpng.dll.a +0 -0
  719. data/vendor/local/lib/gstreamer-0.10/libgstpng.la +41 -0
  720. data/vendor/local/lib/gstreamer-0.10/libgstpnm.dll +0 -0
  721. data/vendor/local/lib/gstreamer-0.10/libgstpnm.dll.a +0 -0
  722. data/vendor/local/lib/gstreamer-0.10/libgstpnm.la +41 -0
  723. data/vendor/local/lib/gstreamer-0.10/libgstpostproc.dll +0 -0
  724. data/vendor/local/lib/gstreamer-0.10/libgstpostproc.dll.a +0 -0
  725. data/vendor/local/lib/gstreamer-0.10/libgstpostproc.la +41 -0
  726. data/vendor/local/lib/gstreamer-0.10/libgstrawparse.dll +0 -0
  727. data/vendor/local/lib/gstreamer-0.10/libgstrawparse.dll.a +0 -0
  728. data/vendor/local/lib/gstreamer-0.10/libgstrawparse.la +41 -0
  729. data/vendor/local/lib/gstreamer-0.10/libgstreal.dll +0 -0
  730. data/vendor/local/lib/gstreamer-0.10/libgstreal.dll.a +0 -0
  731. data/vendor/local/lib/gstreamer-0.10/libgstreal.la +41 -0
  732. data/vendor/local/lib/gstreamer-0.10/libgstreplaygain.dll +0 -0
  733. data/vendor/local/lib/gstreamer-0.10/libgstreplaygain.dll.a +0 -0
  734. data/vendor/local/lib/gstreamer-0.10/libgstreplaygain.la +41 -0
  735. data/vendor/local/lib/gstreamer-0.10/libgstrtp.dll +0 -0
  736. data/vendor/local/lib/gstreamer-0.10/libgstrtp.dll.a +0 -0
  737. data/vendor/local/lib/gstreamer-0.10/libgstrtp.la +41 -0
  738. data/vendor/local/lib/gstreamer-0.10/libgstrtpmanager.dll +0 -0
  739. data/vendor/local/lib/gstreamer-0.10/libgstrtpmanager.dll.a +0 -0
  740. data/vendor/local/lib/gstreamer-0.10/libgstrtpmanager.la +41 -0
  741. data/vendor/local/lib/gstreamer-0.10/libgstrtpmux.dll +0 -0
  742. data/vendor/local/lib/gstreamer-0.10/libgstrtpmux.dll.a +0 -0
  743. data/vendor/local/lib/gstreamer-0.10/libgstrtpmux.la +41 -0
  744. data/vendor/local/lib/gstreamer-0.10/libgstrtpvp8.dll +0 -0
  745. data/vendor/local/lib/gstreamer-0.10/libgstrtpvp8.dll.a +0 -0
  746. data/vendor/local/lib/gstreamer-0.10/libgstrtpvp8.la +41 -0
  747. data/vendor/local/lib/gstreamer-0.10/libgstrtsp.dll +0 -0
  748. data/vendor/local/lib/gstreamer-0.10/libgstrtsp.dll.a +0 -0
  749. data/vendor/local/lib/gstreamer-0.10/libgstrtsp.la +41 -0
  750. data/vendor/local/lib/gstreamer-0.10/libgstscaletempoplugin.dll +0 -0
  751. data/vendor/local/lib/gstreamer-0.10/libgstscaletempoplugin.dll.a +0 -0
  752. data/vendor/local/lib/gstreamer-0.10/libgstscaletempoplugin.la +41 -0
  753. data/vendor/local/lib/gstreamer-0.10/libgstsdi.dll +0 -0
  754. data/vendor/local/lib/gstreamer-0.10/libgstsdi.dll.a +0 -0
  755. data/vendor/local/lib/gstreamer-0.10/libgstsdi.la +41 -0
  756. data/vendor/local/lib/gstreamer-0.10/libgstsdpelem.dll +0 -0
  757. data/vendor/local/lib/gstreamer-0.10/libgstsdpelem.dll.a +0 -0
  758. data/vendor/local/lib/gstreamer-0.10/libgstsdpelem.la +41 -0
  759. data/vendor/local/lib/gstreamer-0.10/libgstsegmentclip.dll +0 -0
  760. data/vendor/local/lib/gstreamer-0.10/libgstsegmentclip.dll.a +0 -0
  761. data/vendor/local/lib/gstreamer-0.10/libgstsegmentclip.la +41 -0
  762. data/vendor/local/lib/gstreamer-0.10/libgstshapewipe.dll +0 -0
  763. data/vendor/local/lib/gstreamer-0.10/libgstshapewipe.dll.a +0 -0
  764. data/vendor/local/lib/gstreamer-0.10/libgstshapewipe.la +41 -0
  765. data/vendor/local/lib/gstreamer-0.10/libgstsiren.dll +0 -0
  766. data/vendor/local/lib/gstreamer-0.10/libgstsiren.dll.a +0 -0
  767. data/vendor/local/lib/gstreamer-0.10/libgstsiren.la +41 -0
  768. data/vendor/local/lib/gstreamer-0.10/libgstsmpte.dll +0 -0
  769. data/vendor/local/lib/gstreamer-0.10/libgstsmpte.dll.a +0 -0
  770. data/vendor/local/lib/gstreamer-0.10/libgstsmpte.la +41 -0
  771. data/vendor/local/lib/gstreamer-0.10/libgstsouphttpsrc.dll +0 -0
  772. data/vendor/local/lib/gstreamer-0.10/libgstsouphttpsrc.dll.a +0 -0
  773. data/vendor/local/lib/gstreamer-0.10/libgstsouphttpsrc.la +41 -0
  774. data/vendor/local/lib/gstreamer-0.10/libgstspectrum.dll +0 -0
  775. data/vendor/local/lib/gstreamer-0.10/libgstspectrum.dll.a +0 -0
  776. data/vendor/local/lib/gstreamer-0.10/libgstspectrum.la +41 -0
  777. data/vendor/local/lib/gstreamer-0.10/libgstspeed.dll +0 -0
  778. data/vendor/local/lib/gstreamer-0.10/libgstspeed.dll.a +0 -0
  779. data/vendor/local/lib/gstreamer-0.10/libgstspeed.la +41 -0
  780. data/vendor/local/lib/gstreamer-0.10/libgstspeex.dll +0 -0
  781. data/vendor/local/lib/gstreamer-0.10/libgstspeex.dll.a +0 -0
  782. data/vendor/local/lib/gstreamer-0.10/libgstspeex.la +41 -0
  783. data/vendor/local/lib/gstreamer-0.10/libgststereo.dll +0 -0
  784. data/vendor/local/lib/gstreamer-0.10/libgststereo.dll.a +0 -0
  785. data/vendor/local/lib/gstreamer-0.10/libgststereo.la +41 -0
  786. data/vendor/local/lib/gstreamer-0.10/libgstsubenc.dll +0 -0
  787. data/vendor/local/lib/gstreamer-0.10/libgstsubenc.dll.a +0 -0
  788. data/vendor/local/lib/gstreamer-0.10/libgstsubenc.la +41 -0
  789. data/vendor/local/lib/gstreamer-0.10/libgstsubparse.dll +0 -0
  790. data/vendor/local/lib/gstreamer-0.10/libgstsubparse.dll.a +0 -0
  791. data/vendor/local/lib/gstreamer-0.10/libgstsubparse.la +41 -0
  792. data/vendor/local/lib/gstreamer-0.10/libgsttheora.dll +0 -0
  793. data/vendor/local/lib/gstreamer-0.10/libgsttheora.dll.a +0 -0
  794. data/vendor/local/lib/gstreamer-0.10/libgsttheora.la +41 -0
  795. data/vendor/local/lib/gstreamer-0.10/libgsttta.dll +0 -0
  796. data/vendor/local/lib/gstreamer-0.10/libgsttta.dll.a +0 -0
  797. data/vendor/local/lib/gstreamer-0.10/libgsttta.la +41 -0
  798. data/vendor/local/lib/gstreamer-0.10/libgsttypefindfunctions.dll +0 -0
  799. data/vendor/local/lib/gstreamer-0.10/libgsttypefindfunctions.dll.a +0 -0
  800. data/vendor/local/lib/gstreamer-0.10/libgsttypefindfunctions.la +41 -0
  801. data/vendor/local/lib/gstreamer-0.10/libgstudp.dll +0 -0
  802. data/vendor/local/lib/gstreamer-0.10/libgstudp.dll.a +0 -0
  803. data/vendor/local/lib/gstreamer-0.10/libgstudp.la +41 -0
  804. data/vendor/local/lib/gstreamer-0.10/libgstvideobox.dll +0 -0
  805. data/vendor/local/lib/gstreamer-0.10/libgstvideobox.dll.a +0 -0
  806. data/vendor/local/lib/gstreamer-0.10/libgstvideobox.la +41 -0
  807. data/vendor/local/lib/gstreamer-0.10/libgstvideocrop.dll +0 -0
  808. data/vendor/local/lib/gstreamer-0.10/libgstvideocrop.dll.a +0 -0
  809. data/vendor/local/lib/gstreamer-0.10/libgstvideocrop.la +41 -0
  810. data/vendor/local/lib/gstreamer-0.10/libgstvideofilter.dll +0 -0
  811. data/vendor/local/lib/gstreamer-0.10/libgstvideofilter.dll.a +0 -0
  812. data/vendor/local/lib/gstreamer-0.10/libgstvideofilter.la +41 -0
  813. data/vendor/local/lib/gstreamer-0.10/libgstvideofiltersbad.dll +0 -0
  814. data/vendor/local/lib/gstreamer-0.10/libgstvideofiltersbad.dll.a +0 -0
  815. data/vendor/local/lib/gstreamer-0.10/libgstvideofiltersbad.la +41 -0
  816. data/vendor/local/lib/gstreamer-0.10/libgstvideomaxrate.dll +0 -0
  817. data/vendor/local/lib/gstreamer-0.10/libgstvideomaxrate.dll.a +0 -0
  818. data/vendor/local/lib/gstreamer-0.10/libgstvideomaxrate.la +41 -0
  819. data/vendor/local/lib/gstreamer-0.10/libgstvideomeasure.dll +0 -0
  820. data/vendor/local/lib/gstreamer-0.10/libgstvideomeasure.dll.a +0 -0
  821. data/vendor/local/lib/gstreamer-0.10/libgstvideomeasure.la +41 -0
  822. data/vendor/local/lib/gstreamer-0.10/libgstvideomixer.dll +0 -0
  823. data/vendor/local/lib/gstreamer-0.10/libgstvideomixer.dll.a +0 -0
  824. data/vendor/local/lib/gstreamer-0.10/libgstvideomixer.la +41 -0
  825. data/vendor/local/lib/gstreamer-0.10/libgstvideoparsersbad.dll +0 -0
  826. data/vendor/local/lib/gstreamer-0.10/libgstvideoparsersbad.dll.a +0 -0
  827. data/vendor/local/lib/gstreamer-0.10/libgstvideoparsersbad.la +41 -0
  828. data/vendor/local/lib/gstreamer-0.10/libgstvideorate.dll +0 -0
  829. data/vendor/local/lib/gstreamer-0.10/libgstvideorate.dll.a +0 -0
  830. data/vendor/local/lib/gstreamer-0.10/libgstvideorate.la +41 -0
  831. data/vendor/local/lib/gstreamer-0.10/libgstvideoscale.dll +0 -0
  832. data/vendor/local/lib/gstreamer-0.10/libgstvideoscale.dll.a +0 -0
  833. data/vendor/local/lib/gstreamer-0.10/libgstvideoscale.la +41 -0
  834. data/vendor/local/lib/gstreamer-0.10/libgstvideosignal.dll +0 -0
  835. data/vendor/local/lib/gstreamer-0.10/libgstvideosignal.dll.a +0 -0
  836. data/vendor/local/lib/gstreamer-0.10/libgstvideosignal.la +41 -0
  837. data/vendor/local/lib/gstreamer-0.10/libgstvideotestsrc.dll +0 -0
  838. data/vendor/local/lib/gstreamer-0.10/libgstvideotestsrc.dll.a +0 -0
  839. data/vendor/local/lib/gstreamer-0.10/libgstvideotestsrc.la +41 -0
  840. data/vendor/local/lib/gstreamer-0.10/libgstvmnc.dll +0 -0
  841. data/vendor/local/lib/gstreamer-0.10/libgstvmnc.dll.a +0 -0
  842. data/vendor/local/lib/gstreamer-0.10/libgstvmnc.la +41 -0
  843. data/vendor/local/lib/gstreamer-0.10/libgstvolume.dll +0 -0
  844. data/vendor/local/lib/gstreamer-0.10/libgstvolume.dll.a +0 -0
  845. data/vendor/local/lib/gstreamer-0.10/libgstvolume.la +41 -0
  846. data/vendor/local/lib/gstreamer-0.10/libgstvorbis.dll +0 -0
  847. data/vendor/local/lib/gstreamer-0.10/libgstvorbis.dll.a +0 -0
  848. data/vendor/local/lib/gstreamer-0.10/libgstvorbis.la +41 -0
  849. data/vendor/local/lib/gstreamer-0.10/libgstwavenc.dll +0 -0
  850. data/vendor/local/lib/gstreamer-0.10/libgstwavenc.dll.a +0 -0
  851. data/vendor/local/lib/gstreamer-0.10/libgstwavenc.la +41 -0
  852. data/vendor/local/lib/gstreamer-0.10/libgstwavparse.dll +0 -0
  853. data/vendor/local/lib/gstreamer-0.10/libgstwavparse.dll.a +0 -0
  854. data/vendor/local/lib/gstreamer-0.10/libgstwavparse.la +41 -0
  855. data/vendor/local/lib/gstreamer-0.10/libgsty4mdec.dll +0 -0
  856. data/vendor/local/lib/gstreamer-0.10/libgsty4mdec.dll.a +0 -0
  857. data/vendor/local/lib/gstreamer-0.10/libgsty4mdec.la +41 -0
  858. data/vendor/local/lib/gstreamer-0.10/libgsty4menc.dll +0 -0
  859. data/vendor/local/lib/gstreamer-0.10/libgsty4menc.dll.a +0 -0
  860. data/vendor/local/lib/gstreamer-0.10/libgsty4menc.la +41 -0
  861. data/vendor/local/lib/libgstapp-0.10.dll.a +0 -0
  862. data/vendor/local/lib/libgstapp-0.10.la +41 -0
  863. data/vendor/local/lib/libgstaudio-0.10.a +0 -0
  864. data/vendor/local/lib/libgstaudio-0.10.dll.a +0 -0
  865. data/vendor/local/lib/libgstaudio-0.10.la +41 -0
  866. data/vendor/local/lib/libgstbase-0.10.a +0 -0
  867. data/vendor/local/lib/libgstbase-0.10.dll.a +0 -0
  868. data/vendor/local/lib/libgstbase-0.10.la +41 -0
  869. data/vendor/local/lib/libgstbasevideo-0.10.a +0 -0
  870. data/vendor/local/lib/libgstbasevideo-0.10.dll.a +0 -0
  871. data/vendor/local/lib/libgstbasevideo-0.10.la +41 -0
  872. data/vendor/local/lib/libgstcdda-0.10.a +0 -0
  873. data/vendor/local/lib/libgstcdda-0.10.dll.a +0 -0
  874. data/vendor/local/lib/libgstcdda-0.10.la +41 -0
  875. data/vendor/local/lib/libgstcheck-0.10.a +0 -0
  876. data/vendor/local/lib/libgstcheck-0.10.dll.a +0 -0
  877. data/vendor/local/lib/libgstcheck-0.10.la +41 -0
  878. data/vendor/local/lib/libgstcontroller-0.10.a +0 -0
  879. data/vendor/local/lib/libgstcontroller-0.10.dll.a +0 -0
  880. data/vendor/local/lib/libgstcontroller-0.10.la +41 -0
  881. data/vendor/local/lib/libgstdataprotocol-0.10.a +0 -0
  882. data/vendor/local/lib/libgstdataprotocol-0.10.dll.a +0 -0
  883. data/vendor/local/lib/libgstdataprotocol-0.10.la +41 -0
  884. data/vendor/local/lib/libgstfft-0.10.a +0 -0
  885. data/vendor/local/lib/libgstfft-0.10.dll.a +0 -0
  886. data/vendor/local/lib/libgstfft-0.10.la +41 -0
  887. data/vendor/local/lib/libgstinterfaces-0.10.a +0 -0
  888. data/vendor/local/lib/libgstinterfaces-0.10.dll.a +0 -0
  889. data/vendor/local/lib/libgstinterfaces-0.10.la +41 -0
  890. data/vendor/local/lib/libgstnet-0.10.a +0 -0
  891. data/vendor/local/lib/libgstnet-0.10.dll.a +0 -0
  892. data/vendor/local/lib/libgstnet-0.10.la +41 -0
  893. data/vendor/local/lib/libgstnetbuffer-0.10.a +0 -0
  894. data/vendor/local/lib/libgstnetbuffer-0.10.dll.a +0 -0
  895. data/vendor/local/lib/libgstnetbuffer-0.10.la +41 -0
  896. data/vendor/local/lib/libgstpbutils-0.10.a +0 -0
  897. data/vendor/local/lib/libgstpbutils-0.10.dll.a +0 -0
  898. data/vendor/local/lib/libgstpbutils-0.10.la +41 -0
  899. data/vendor/local/lib/libgstphotography-0.10.a +0 -0
  900. data/vendor/local/lib/libgstphotography-0.10.dll.a +0 -0
  901. data/vendor/local/lib/libgstphotography-0.10.la +41 -0
  902. data/vendor/local/lib/libgstreamer-0.10.a +0 -0
  903. data/vendor/local/lib/libgstreamer-0.10.dll.a +0 -0
  904. data/vendor/local/lib/libgstreamer-0.10.la +41 -0
  905. data/vendor/local/lib/libgstriff-0.10.a +0 -0
  906. data/vendor/local/lib/libgstriff-0.10.dll.a +0 -0
  907. data/vendor/local/lib/libgstriff-0.10.la +41 -0
  908. data/vendor/local/lib/libgstrtp-0.10.a +0 -0
  909. data/vendor/local/lib/libgstrtp-0.10.dll.a +0 -0
  910. data/vendor/local/lib/libgstrtp-0.10.la +41 -0
  911. data/vendor/local/lib/libgstrtsp-0.10.a +0 -0
  912. data/vendor/local/lib/libgstrtsp-0.10.dll.a +0 -0
  913. data/vendor/local/lib/libgstrtsp-0.10.la +41 -0
  914. data/vendor/local/lib/libgstsdp-0.10.a +0 -0
  915. data/vendor/local/lib/libgstsdp-0.10.dll.a +0 -0
  916. data/vendor/local/lib/libgstsdp-0.10.la +41 -0
  917. data/vendor/local/lib/libgstsignalprocessor-0.10.a +0 -0
  918. data/vendor/local/lib/libgstsignalprocessor-0.10.dll.a +0 -0
  919. data/vendor/local/lib/libgstsignalprocessor-0.10.la +41 -0
  920. data/vendor/local/lib/libgsttag-0.10.a +0 -0
  921. data/vendor/local/lib/libgsttag-0.10.dll.a +0 -0
  922. data/vendor/local/lib/libgsttag-0.10.la +41 -0
  923. data/vendor/local/lib/libgstvideo-0.10.a +0 -0
  924. data/vendor/local/lib/libgstvideo-0.10.dll.a +0 -0
  925. data/vendor/local/lib/libgstvideo-0.10.la +41 -0
  926. data/vendor/local/lib/libjpeg.dll.a +0 -0
  927. data/vendor/local/lib/libogg.a +0 -0
  928. data/vendor/local/lib/libogg.dll.a +0 -0
  929. data/vendor/local/lib/libogg.la +41 -0
  930. data/vendor/local/lib/libsoup-2.4.dll.a +0 -0
  931. data/vendor/local/lib/libspeex.a +0 -0
  932. data/vendor/local/lib/libspeex.dll.a +0 -0
  933. data/vendor/local/lib/libspeex.la +35 -0
  934. data/vendor/local/lib/libspeexdsp.a +0 -0
  935. data/vendor/local/lib/libspeexdsp.dll.a +0 -0
  936. data/vendor/local/lib/libspeexdsp.la +35 -0
  937. data/vendor/local/lib/libtheora.a +0 -0
  938. data/vendor/local/lib/libtheora.dll.a +0 -0
  939. data/vendor/local/lib/libtheora.la +41 -0
  940. data/vendor/local/lib/libtheoradec.a +0 -0
  941. data/vendor/local/lib/libtheoradec.dll.a +0 -0
  942. data/vendor/local/lib/libtheoradec.la +41 -0
  943. data/vendor/local/lib/libtheoraenc.a +0 -0
  944. data/vendor/local/lib/libtheoraenc.dll.a +0 -0
  945. data/vendor/local/lib/libtheoraenc.la +41 -0
  946. data/vendor/local/lib/libvorbis.a +0 -0
  947. data/vendor/local/lib/libvorbis.dll.a +0 -0
  948. data/vendor/local/lib/libvorbis.la +41 -0
  949. data/vendor/local/lib/libvorbisenc.a +0 -0
  950. data/vendor/local/lib/libvorbisenc.dll.a +0 -0
  951. data/vendor/local/lib/libvorbisenc.la +41 -0
  952. data/vendor/local/lib/libvorbisfile.a +0 -0
  953. data/vendor/local/lib/libvorbisfile.dll.a +0 -0
  954. data/vendor/local/lib/libvorbisfile.la +41 -0
  955. data/vendor/local/lib/libxml2.def +1657 -0
  956. data/vendor/local/lib/libxml2.dll.a +0 -0
  957. data/vendor/local/lib/libxml2.lib +0 -0
  958. data/vendor/local/lib/pkgconfig/gstreamer-0.10.pc +17 -0
  959. data/vendor/local/lib/pkgconfig/gstreamer-app-0.10.pc +16 -0
  960. data/vendor/local/lib/pkgconfig/gstreamer-audio-0.10.pc +16 -0
  961. data/vendor/local/lib/pkgconfig/gstreamer-base-0.10.pc +15 -0
  962. data/vendor/local/lib/pkgconfig/gstreamer-cdda-0.10.pc +16 -0
  963. data/vendor/local/lib/pkgconfig/gstreamer-check-0.10.pc +15 -0
  964. data/vendor/local/lib/pkgconfig/gstreamer-controller-0.10.pc +15 -0
  965. data/vendor/local/lib/pkgconfig/gstreamer-dataprotocol-0.10.pc +15 -0
  966. data/vendor/local/lib/pkgconfig/gstreamer-fft-0.10.pc +16 -0
  967. data/vendor/local/lib/pkgconfig/gstreamer-floatcast-0.10.pc +16 -0
  968. data/vendor/local/lib/pkgconfig/gstreamer-interfaces-0.10.pc +16 -0
  969. data/vendor/local/lib/pkgconfig/gstreamer-net-0.10.pc +15 -0
  970. data/vendor/local/lib/pkgconfig/gstreamer-netbuffer-0.10.pc +16 -0
  971. data/vendor/local/lib/pkgconfig/gstreamer-pbutils-0.10.pc +16 -0
  972. data/vendor/local/lib/pkgconfig/gstreamer-plugins-bad-0.10.pc +12 -0
  973. data/vendor/local/lib/pkgconfig/gstreamer-plugins-base-0.10.pc +14 -0
  974. data/vendor/local/lib/pkgconfig/gstreamer-riff-0.10.pc +16 -0
  975. data/vendor/local/lib/pkgconfig/gstreamer-rtp-0.10.pc +16 -0
  976. data/vendor/local/lib/pkgconfig/gstreamer-rtsp-0.10.pc +16 -0
  977. data/vendor/local/lib/pkgconfig/gstreamer-sdp-0.10.pc +16 -0
  978. data/vendor/local/lib/pkgconfig/gstreamer-tag-0.10.pc +16 -0
  979. data/vendor/local/lib/pkgconfig/gstreamer-video-0.10.pc +16 -0
  980. data/vendor/local/lib/pkgconfig/libsoup-2.4.pc +12 -0
  981. data/vendor/local/lib/pkgconfig/libxml-2.0.pc +13 -0
  982. data/vendor/local/lib/pkgconfig/ogg.pc +14 -0
  983. data/vendor/local/lib/pkgconfig/speex.pc +15 -0
  984. data/vendor/local/lib/pkgconfig/speexdsp.pc +15 -0
  985. data/vendor/local/lib/pkgconfig/theora.pc +14 -0
  986. data/vendor/local/lib/pkgconfig/theoradec.pc +14 -0
  987. data/vendor/local/lib/pkgconfig/theoraenc.pc +14 -0
  988. data/vendor/local/lib/pkgconfig/vorbis.pc +14 -0
  989. data/vendor/local/lib/pkgconfig/vorbisenc.pc +14 -0
  990. data/vendor/local/lib/pkgconfig/vorbisfile.pc +14 -0
  991. data/vendor/local/libexec/gstreamer-0.10/gst-plugin-scanner.exe +0 -0
  992. data/vendor/local/manifest/jpeg-dev_8-1_win32.mft +18 -0
  993. data/vendor/local/manifest/jpeg_8-1_win32.mft +2 -0
  994. data/vendor/local/manifest/libsoup-dev_2.26.3-1_win32.mft +41 -0
  995. data/vendor/local/manifest/libsoup_2.26.3-1_win32.mft +2 -0
  996. data/vendor/local/manifest/libxml2-dev_2.7.7-1_win32.mft +267 -0
  997. data/vendor/local/manifest/libxml2_2.7.7-1_win32.mft +2 -0
  998. data/vendor/local/share/aclocal/gst-element-check-0.10.m4 +23 -0
  999. data/vendor/local/share/aclocal/libxml.m4 +188 -0
  1000. data/vendor/local/share/aclocal/ogg.m4 +116 -0
  1001. data/vendor/local/share/aclocal/speex.m4 +104 -0
  1002. data/vendor/local/share/aclocal/vorbis.m4 +136 -0
  1003. data/vendor/local/share/doc/libogg-1.3.0/framing.html +429 -0
  1004. data/vendor/local/share/doc/libogg-1.3.0/index.html +105 -0
  1005. data/vendor/local/share/doc/libogg-1.3.0/ogg-multiplex.html +446 -0
  1006. data/vendor/local/share/doc/libogg-1.3.0/ogg/bitpacking.html +103 -0
  1007. data/vendor/local/share/doc/libogg-1.3.0/ogg/datastructures.html +59 -0
  1008. data/vendor/local/share/doc/libogg-1.3.0/ogg/decoding.html +104 -0
  1009. data/vendor/local/share/doc/libogg-1.3.0/ogg/encoding.html +76 -0
  1010. data/vendor/local/share/doc/libogg-1.3.0/ogg/general.html +109 -0
  1011. data/vendor/local/share/doc/libogg-1.3.0/ogg/index.html +39 -0
  1012. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_packet.html +75 -0
  1013. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_packet_clear.html +64 -0
  1014. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_page.html +75 -0
  1015. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_page_bos.html +65 -0
  1016. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_page_checksum_set.html +62 -0
  1017. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_page_continued.html +64 -0
  1018. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_page_eos.html +65 -0
  1019. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_page_granulepos.html +65 -0
  1020. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_page_packets.html +75 -0
  1021. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_page_pageno.html +63 -0
  1022. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_page_serialno.html +63 -0
  1023. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_page_version.html +63 -0
  1024. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_clear.html +61 -0
  1025. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_destroy.html +71 -0
  1026. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_eos.html +62 -0
  1027. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_flush.html +67 -0
  1028. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_init.html +66 -0
  1029. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_packetin.html +72 -0
  1030. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_packetout.html +85 -0
  1031. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_packetpeek.html +85 -0
  1032. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_pagein.html +67 -0
  1033. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_pageout.html +84 -0
  1034. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_pageout_fill.html +89 -0
  1035. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_reset.html +61 -0
  1036. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_reset_serialno.html +67 -0
  1037. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_stream_state.html +121 -0
  1038. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_sync_buffer.html +67 -0
  1039. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_sync_clear.html +62 -0
  1040. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_sync_destroy.html +68 -0
  1041. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_sync_init.html +63 -0
  1042. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_sync_pageout.html +77 -0
  1043. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_sync_pageseek.html +68 -0
  1044. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_sync_reset.html +63 -0
  1045. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_sync_state.html +77 -0
  1046. data/vendor/local/share/doc/libogg-1.3.0/ogg/ogg_sync_wrote.html +73 -0
  1047. data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_adv.html +64 -0
  1048. data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_adv1.html +62 -0
  1049. data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_bits.html +62 -0
  1050. data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_buffer.html +66 -0
  1051. data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_bytes.html +67 -0
  1052. data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_get_buffer.html +62 -0
  1053. data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_look.html +66 -0
  1054. data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_look1.html +63 -0
  1055. data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_read.html +65 -0
  1056. data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_read1.html +63 -0
  1057. data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_readinit.html +64 -0
  1058. data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_reset.html +62 -0
  1059. data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_write.html +68 -0
  1060. data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_writealign.html +65 -0
  1061. data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_writeclear.html +62 -0
  1062. data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_writecopy.html +69 -0
  1063. data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_writeinit.html +62 -0
  1064. data/vendor/local/share/doc/libogg-1.3.0/ogg/oggpack_writetrunc.html +65 -0
  1065. data/vendor/local/share/doc/libogg-1.3.0/ogg/overview.html +44 -0
  1066. data/vendor/local/share/doc/libogg-1.3.0/ogg/reference.html +98 -0
  1067. data/vendor/local/share/doc/libogg-1.3.0/ogg/style.css +7 -0
  1068. data/vendor/local/share/doc/libogg-1.3.0/oggstream.html +594 -0
  1069. data/vendor/local/share/doc/libogg-1.3.0/rfc3533.txt +843 -0
  1070. data/vendor/local/share/doc/libogg-1.3.0/rfc5334.txt +787 -0
  1071. data/vendor/local/share/doc/libogg-1.3.0/skeleton.html +222 -0
  1072. data/vendor/local/share/doc/libogg-1.3.0/stream.png +0 -0
  1073. data/vendor/local/share/doc/libogg-1.3.0/vorbisword2.png +0 -0
  1074. data/vendor/local/share/doc/libogg-1.3.0/white-ogg.png +0 -0
  1075. data/vendor/local/share/doc/libogg-1.3.0/white-xifish.png +0 -0
  1076. data/vendor/local/share/doc/libtheora-1.1.1/color.html +602 -0
  1077. data/vendor/local/share/doc/libtheora-1.1.1/doxygen-build.stamp +0 -0
  1078. data/vendor/local/share/doc/libtheora-1.1.1/draft-ietf-avt-rtp-theora-00.txt +1400 -0
  1079. data/vendor/local/share/doc/libtheora-1.1.1/draft-ietf-avt-rtp-theora-00.xml +1146 -0
  1080. data/vendor/local/share/doc/libtheora-1.1.1/html/annotated.html +82 -0
  1081. data/vendor/local/share/doc/libtheora-1.1.1/html/bc_s.png +0 -0
  1082. data/vendor/local/share/doc/libtheora-1.1.1/html/classes.html +79 -0
  1083. data/vendor/local/share/doc/libtheora-1.1.1/html/closed.png +0 -0
  1084. data/vendor/local/share/doc/libtheora-1.1.1/html/codec_8h.html +469 -0
  1085. data/vendor/local/share/doc/libtheora-1.1.1/html/codec_8h_source.html +233 -0
  1086. data/vendor/local/share/doc/libtheora-1.1.1/html/doxygen.css +949 -0
  1087. data/vendor/local/share/doc/libtheora-1.1.1/html/doxygen.png +0 -0
  1088. data/vendor/local/share/doc/libtheora-1.1.1/html/files.html +75 -0
  1089. data/vendor/local/share/doc/libtheora-1.1.1/html/functions.html +385 -0
  1090. data/vendor/local/share/doc/libtheora-1.1.1/html/functions_vars.html +385 -0
  1091. data/vendor/local/share/doc/libtheora-1.1.1/html/globals.html +502 -0
  1092. data/vendor/local/share/doc/libtheora-1.1.1/html/globals_defs.html +247 -0
  1093. data/vendor/local/share/doc/libtheora-1.1.1/html/globals_enum.html +90 -0
  1094. data/vendor/local/share/doc/libtheora-1.1.1/html/globals_eval.html +129 -0
  1095. data/vendor/local/share/doc/libtheora-1.1.1/html/globals_func.html +247 -0
  1096. data/vendor/local/share/doc/libtheora-1.1.1/html/globals_type.html +102 -0
  1097. data/vendor/local/share/doc/libtheora-1.1.1/html/globals_vars.html +84 -0
  1098. data/vendor/local/share/doc/libtheora-1.1.1/html/group__basefuncs.html +568 -0
  1099. data/vendor/local/share/doc/libtheora-1.1.1/html/group__decfuncs.html +402 -0
  1100. data/vendor/local/share/doc/libtheora-1.1.1/html/group__encfuncs.html +352 -0
  1101. data/vendor/local/share/doc/libtheora-1.1.1/html/group__oldfuncs.html +1662 -0
  1102. data/vendor/local/share/doc/libtheora-1.1.1/html/index.html +76 -0
  1103. data/vendor/local/share/doc/libtheora-1.1.1/html/modules.html +69 -0
  1104. data/vendor/local/share/doc/libtheora-1.1.1/html/nav_f.png +0 -0
  1105. data/vendor/local/share/doc/libtheora-1.1.1/html/nav_h.png +0 -0
  1106. data/vendor/local/share/doc/libtheora-1.1.1/html/open.png +0 -0
  1107. data/vendor/local/share/doc/libtheora-1.1.1/html/structth__comment.html +158 -0
  1108. data/vendor/local/share/doc/libtheora-1.1.1/html/structth__huff__code.html +122 -0
  1109. data/vendor/local/share/doc/libtheora-1.1.1/html/structth__img__plane.html +155 -0
  1110. data/vendor/local/share/doc/libtheora-1.1.1/html/structth__info.html +397 -0
  1111. data/vendor/local/share/doc/libtheora-1.1.1/html/structth__quant__info.html +171 -0
  1112. data/vendor/local/share/doc/libtheora-1.1.1/html/structth__quant__ranges.html +139 -0
  1113. data/vendor/local/share/doc/libtheora-1.1.1/html/structth__stripe__callback.html +121 -0
  1114. data/vendor/local/share/doc/libtheora-1.1.1/html/structtheora__comment.html +157 -0
  1115. data/vendor/local/share/doc/libtheora-1.1.1/html/structtheora__info.html +527 -0
  1116. data/vendor/local/share/doc/libtheora-1.1.1/html/structtheora__state.html +142 -0
  1117. data/vendor/local/share/doc/libtheora-1.1.1/html/structyuv__buffer.html +243 -0
  1118. data/vendor/local/share/doc/libtheora-1.1.1/html/tab_a.png +0 -0
  1119. data/vendor/local/share/doc/libtheora-1.1.1/html/tab_b.gif +0 -0
  1120. data/vendor/local/share/doc/libtheora-1.1.1/html/tab_b.png +0 -0
  1121. data/vendor/local/share/doc/libtheora-1.1.1/html/tab_h.png +0 -0
  1122. data/vendor/local/share/doc/libtheora-1.1.1/html/tab_l.gif +0 -0
  1123. data/vendor/local/share/doc/libtheora-1.1.1/html/tab_r.gif +0 -0
  1124. data/vendor/local/share/doc/libtheora-1.1.1/html/tab_s.png +0 -0
  1125. data/vendor/local/share/doc/libtheora-1.1.1/html/tabs.css +59 -0
  1126. data/vendor/local/share/doc/libtheora-1.1.1/html/theora_8h.html +258 -0
  1127. data/vendor/local/share/doc/libtheora-1.1.1/html/theora_8h_source.html +283 -0
  1128. data/vendor/local/share/doc/libtheora-1.1.1/html/theoradec_8h.html +405 -0
  1129. data/vendor/local/share/doc/libtheora-1.1.1/html/theoradec_8h_source.html +146 -0
  1130. data/vendor/local/share/doc/libtheora-1.1.1/html/theoraenc_8h.html +716 -0
  1131. data/vendor/local/share/doc/libtheora-1.1.1/html/theoraenc_8h_source.html +155 -0
  1132. data/vendor/local/share/doc/libtheora-1.1.1/latex/Makefile +39 -0
  1133. data/vendor/local/share/doc/libtheora-1.1.1/latex/annotated.tex +14 -0
  1134. data/vendor/local/share/doc/libtheora-1.1.1/latex/codec_8h.tex +273 -0
  1135. data/vendor/local/share/doc/libtheora-1.1.1/latex/doxygen.sty +482 -0
  1136. data/vendor/local/share/doc/libtheora-1.1.1/latex/files.tex +7 -0
  1137. data/vendor/local/share/doc/libtheora-1.1.1/latex/group__basefuncs.tex +336 -0
  1138. data/vendor/local/share/doc/libtheora-1.1.1/latex/group__decfuncs.tex +223 -0
  1139. data/vendor/local/share/doc/libtheora-1.1.1/latex/group__encfuncs.tex +195 -0
  1140. data/vendor/local/share/doc/libtheora-1.1.1/latex/group__oldfuncs.tex +1046 -0
  1141. data/vendor/local/share/doc/libtheora-1.1.1/latex/index.tex +12 -0
  1142. data/vendor/local/share/doc/libtheora-1.1.1/latex/modules.tex +7 -0
  1143. data/vendor/local/share/doc/libtheora-1.1.1/latex/refman.tex +76 -0
  1144. data/vendor/local/share/doc/libtheora-1.1.1/latex/structth__comment.tex +67 -0
  1145. data/vendor/local/share/doc/libtheora-1.1.1/latex/structth__huff__code.tex +45 -0
  1146. data/vendor/local/share/doc/libtheora-1.1.1/latex/structth__img__plane.tex +63 -0
  1147. data/vendor/local/share/doc/libtheora-1.1.1/latex/structth__info.tex +189 -0
  1148. data/vendor/local/share/doc/libtheora-1.1.1/latex/structth__quant__info.tex +95 -0
  1149. data/vendor/local/share/doc/libtheora-1.1.1/latex/structth__quant__ranges.tex +54 -0
  1150. data/vendor/local/share/doc/libtheora-1.1.1/latex/structth__stripe__callback.tex +45 -0
  1151. data/vendor/local/share/doc/libtheora-1.1.1/latex/structtheora__comment.tex +67 -0
  1152. data/vendor/local/share/doc/libtheora-1.1.1/latex/structtheora__info.tex +233 -0
  1153. data/vendor/local/share/doc/libtheora-1.1.1/latex/structtheora__state.tex +45 -0
  1154. data/vendor/local/share/doc/libtheora-1.1.1/latex/structyuv__buffer.tex +114 -0
  1155. data/vendor/local/share/doc/libtheora-1.1.1/latex/theora_8h.tex +191 -0
  1156. data/vendor/local/share/doc/libtheora-1.1.1/latex/theoradec_8h.tex +251 -0
  1157. data/vendor/local/share/doc/libtheora-1.1.1/latex/theoraenc_8h.tex +512 -0
  1158. data/vendor/local/share/doc/libtheora-1.1.1/vp3-format.txt +1305 -0
  1159. data/vendor/local/share/doc/libvorbis-1.3.2/doxygen-build.stamp +0 -0
  1160. data/vendor/local/share/doc/libvorbis-1.3.2/eightphase.png +0 -0
  1161. data/vendor/local/share/doc/libvorbis-1.3.2/evenlsp.png +0 -0
  1162. data/vendor/local/share/doc/libvorbis-1.3.2/fish_xiph_org.png +0 -0
  1163. data/vendor/local/share/doc/libvorbis-1.3.2/floor1_inverse_dB_table.html +154 -0
  1164. data/vendor/local/share/doc/libvorbis-1.3.2/floorval.png +0 -0
  1165. data/vendor/local/share/doc/libvorbis-1.3.2/fourphase.png +0 -0
  1166. data/vendor/local/share/doc/libvorbis-1.3.2/framing.html +431 -0
  1167. data/vendor/local/share/doc/libvorbis-1.3.2/helper.html +239 -0
  1168. data/vendor/local/share/doc/libvorbis-1.3.2/index.html +114 -0
  1169. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/index.html +44 -0
  1170. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/overview.html +136 -0
  1171. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/reference.html +86 -0
  1172. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/return.html +79 -0
  1173. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/style.css +7 -0
  1174. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_analysis.html +86 -0
  1175. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_analysis_blockout.html +79 -0
  1176. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_analysis_buffer.html +74 -0
  1177. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_analysis_headerout.html +83 -0
  1178. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_analysis_init.html +66 -0
  1179. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_analysis_wrote.html +80 -0
  1180. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_bitrate_addblock.html +74 -0
  1181. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_bitrate_flushpacket.html +80 -0
  1182. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_block.html +60 -0
  1183. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_block_clear.html +61 -0
  1184. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_block_init.html +66 -0
  1185. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_comment.html +80 -0
  1186. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_comment_add.html +70 -0
  1187. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_comment_add_tag.html +74 -0
  1188. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_comment_clear.html +69 -0
  1189. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_comment_init.html +72 -0
  1190. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_comment_query.html +72 -0
  1191. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_comment_query_count.html +66 -0
  1192. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_commentheader_out.html +65 -0
  1193. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_dsp_clear.html +63 -0
  1194. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_dsp_state.html +57 -0
  1195. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_granule_time.html +65 -0
  1196. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_info.html +80 -0
  1197. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_info_blocksize.html +66 -0
  1198. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_info_clear.html +61 -0
  1199. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_info_init.html +62 -0
  1200. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_packet_blocksize.html +66 -0
  1201. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_synthesis.html +70 -0
  1202. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_synthesis_blockin.html +69 -0
  1203. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_synthesis_halfrate.html +68 -0
  1204. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_synthesis_halfrate_p.html +64 -0
  1205. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_synthesis_headerin.html +80 -0
  1206. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_synthesis_idheader.html +63 -0
  1207. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_synthesis_init.html +69 -0
  1208. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_synthesis_lapout.html +74 -0
  1209. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_synthesis_pcmout.html +75 -0
  1210. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_synthesis_read.html +67 -0
  1211. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_synthesis_restart.html +64 -0
  1212. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_synthesis_trackonly.html +71 -0
  1213. data/vendor/local/share/doc/libvorbis-1.3.2/libvorbis/vorbis_version_string.html +56 -0
  1214. data/vendor/local/share/doc/libvorbis-1.3.2/lspmap.png +0 -0
  1215. data/vendor/local/share/doc/libvorbis-1.3.2/oddlsp.png +0 -0
  1216. data/vendor/local/share/doc/libvorbis-1.3.2/oggstream.html +234 -0
  1217. data/vendor/local/share/doc/libvorbis-1.3.2/programming.html +554 -0
  1218. data/vendor/local/share/doc/libvorbis-1.3.2/rfc5215.txt +1459 -0
  1219. data/vendor/local/share/doc/libvorbis-1.3.2/rfc5215.xml +1176 -0
  1220. data/vendor/local/share/doc/libvorbis-1.3.2/squarepolar.png +0 -0
  1221. data/vendor/local/share/doc/libvorbis-1.3.2/stereo.html +419 -0
  1222. data/vendor/local/share/doc/libvorbis-1.3.2/stream.png +0 -0
  1223. data/vendor/local/share/doc/libvorbis-1.3.2/v-comment.html +285 -0
  1224. data/vendor/local/share/doc/libvorbis-1.3.2/vorbis-clip.txt +139 -0
  1225. data/vendor/local/share/doc/libvorbis-1.3.2/vorbis-errors.txt +103 -0
  1226. data/vendor/local/share/doc/libvorbis-1.3.2/vorbis-fidelity.html +180 -0
  1227. data/vendor/local/share/doc/libvorbis-1.3.2/vorbis.html +234 -0
  1228. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/changes.html +104 -0
  1229. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/examples.html +133 -0
  1230. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/index.html +40 -0
  1231. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/ovectl_ratemanage2_arg.html +92 -0
  1232. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/ovectl_ratemanage_arg.html +92 -0
  1233. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/overview.html +382 -0
  1234. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/reference.html +54 -0
  1235. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/style.css +7 -0
  1236. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/vorbis_encode_ctl.html +183 -0
  1237. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/vorbis_encode_init.html +88 -0
  1238. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/vorbis_encode_init_vbr.html +81 -0
  1239. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/vorbis_encode_setup_init.html +88 -0
  1240. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/vorbis_encode_setup_managed.html +102 -0
  1241. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisenc/vorbis_encode_setup_vbr.html +90 -0
  1242. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/OggVorbis_File.html +137 -0
  1243. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/callbacks.html +121 -0
  1244. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/chaining_example_c.html +90 -0
  1245. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/chainingexample.html +175 -0
  1246. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/crosslap.html +121 -0
  1247. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/datastructures.html +61 -0
  1248. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/decoding.html +92 -0
  1249. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/example.html +208 -0
  1250. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/exampleindex.html +39 -0
  1251. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/fileinfo.html +95 -0
  1252. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/index.html +49 -0
  1253. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/initialization.html +118 -0
  1254. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_bitrate.html +72 -0
  1255. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_bitrate_instant.html +65 -0
  1256. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_callbacks.html +117 -0
  1257. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_clear.html +64 -0
  1258. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_comment.html +66 -0
  1259. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_crosslap.html +100 -0
  1260. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_fopen.html +124 -0
  1261. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_info.html +64 -0
  1262. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_open.html +183 -0
  1263. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_open_callbacks.html +147 -0
  1264. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_pcm_seek.html +83 -0
  1265. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_pcm_seek_lap.html +103 -0
  1266. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_pcm_seek_page.html +84 -0
  1267. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_pcm_seek_page_lap.html +112 -0
  1268. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_pcm_tell.html +63 -0
  1269. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_pcm_total.html +67 -0
  1270. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_raw_seek.html +83 -0
  1271. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_raw_seek_lap.html +110 -0
  1272. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_raw_tell.html +65 -0
  1273. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_raw_total.html +68 -0
  1274. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_read.html +148 -0
  1275. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_read_filter.html +114 -0
  1276. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_read_float.html +105 -0
  1277. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_seekable.html +63 -0
  1278. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_serialnumber.html +67 -0
  1279. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_streams.html +64 -0
  1280. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_test.html +101 -0
  1281. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_test_callbacks.html +111 -0
  1282. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_test_open.html +82 -0
  1283. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_time_seek.html +82 -0
  1284. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_time_seek_lap.html +105 -0
  1285. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_time_seek_page.html +83 -0
  1286. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_time_seek_page_lap.html +112 -0
  1287. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_time_tell.html +63 -0
  1288. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/ov_time_total.html +67 -0
  1289. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/overview.html +61 -0
  1290. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/reference.html +86 -0
  1291. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/seekexample.html +152 -0
  1292. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/seeking.html +107 -0
  1293. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/seeking_example_c.html +86 -0
  1294. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/seeking_test_c.html +86 -0
  1295. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/seekingexample.html +203 -0
  1296. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/style.css +7 -0
  1297. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/threads.html +50 -0
  1298. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisfile/vorbisfile_example_c.html +106 -0
  1299. data/vendor/local/share/doc/libvorbis-1.3.2/vorbisword2.png +0 -0
  1300. data/vendor/local/share/doc/libvorbis-1.3.2/wait.png +0 -0
  1301. data/vendor/local/share/doc/libvorbis-1.3.2/white-xifish.png +0 -0
  1302. data/vendor/local/share/doc/libxml2-2.7.7/Copyright +27 -0
  1303. data/vendor/local/share/doc/libxml2-2.7.7/examples/testHTML.c +880 -0
  1304. data/vendor/local/share/doc/libxml2-2.7.7/examples/testSAX.c +1198 -0
  1305. data/vendor/local/share/doc/libxml2-2.7.7/examples/testXPath.c +227 -0
  1306. data/vendor/local/share/doc/libxml2-2.7.7/examples/xmllint.c +3722 -0
  1307. data/vendor/local/share/doc/libxml2-2.7.7/html/DOM.gif +0 -0
  1308. data/vendor/local/share/doc/libxml2-2.7.7/html/FAQ.html +282 -0
  1309. data/vendor/local/share/doc/libxml2-2.7.7/html/Libxml2-Logo-180x168.gif +0 -0
  1310. data/vendor/local/share/doc/libxml2-2.7.7/html/Libxml2-Logo-90x34.gif +0 -0
  1311. data/vendor/local/share/doc/libxml2-2.7.7/html/encoding.html +206 -0
  1312. data/vendor/local/share/doc/libxml2-2.7.7/html/examples.xml +751 -0
  1313. data/vendor/local/share/doc/libxml2-2.7.7/html/examples.xsl +174 -0
  1314. data/vendor/local/share/doc/libxml2-2.7.7/html/html/book1.html +13 -0
  1315. data/vendor/local/share/doc/libxml2-2.7.7/html/html/home.png +0 -0
  1316. data/vendor/local/share/doc/libxml2-2.7.7/html/html/index.html +13 -0
  1317. data/vendor/local/share/doc/libxml2-2.7.7/html/html/left.png +0 -0
  1318. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-DOCBparser.html +51 -0
  1319. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-HTMLparser.html +182 -0
  1320. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-HTMLtree.html +73 -0
  1321. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-SAX.html +125 -0
  1322. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-SAX2.html +128 -0
  1323. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-c14n.html +38 -0
  1324. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-catalog.html +142 -0
  1325. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-chvalid.html +72 -0
  1326. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-debugXML.html +120 -0
  1327. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-dict.html +49 -0
  1328. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-encoding.html +118 -0
  1329. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-entities.html +79 -0
  1330. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-globals.html +152 -0
  1331. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-hash.html +116 -0
  1332. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-lib.html +13 -0
  1333. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-list.html +120 -0
  1334. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-nanoftp.html +92 -0
  1335. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-nanohttp.html +65 -0
  1336. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-parser.html +555 -0
  1337. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-parserInternals.html +319 -0
  1338. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-pattern.html +76 -0
  1339. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-relaxng.html +162 -0
  1340. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-schemasInternals.html +373 -0
  1341. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-schematron.html +81 -0
  1342. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-threads.html +72 -0
  1343. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-tree.html +958 -0
  1344. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-uri.html +73 -0
  1345. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-valid.html +289 -0
  1346. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xinclude.html +59 -0
  1347. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xlink.html +82 -0
  1348. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlIO.html +206 -0
  1349. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlautomata.html +85 -0
  1350. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlerror.html +862 -0
  1351. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlexports.html +20 -0
  1352. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlmemory.html +107 -0
  1353. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlmodule.html +38 -0
  1354. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlreader.html +327 -0
  1355. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlregexp.html +143 -0
  1356. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlsave.html +59 -0
  1357. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlschemas.html +173 -0
  1358. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlschemastypes.html +123 -0
  1359. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlstring.html +108 -0
  1360. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlunicode.html +512 -0
  1361. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlversion.html +60 -0
  1362. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xmlwriter.html +258 -0
  1363. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xpath.html +307 -0
  1364. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xpathInternals.html +394 -0
  1365. data/vendor/local/share/doc/libxml2-2.7.7/html/html/libxml-xpointer.html +83 -0
  1366. data/vendor/local/share/doc/libxml2-2.7.7/html/html/right.png +0 -0
  1367. data/vendor/local/share/doc/libxml2-2.7.7/html/html/up.png +0 -0
  1368. data/vendor/local/share/doc/libxml2-2.7.7/html/io1.c +166 -0
  1369. data/vendor/local/share/doc/libxml2-2.7.7/html/io1.res +5 -0
  1370. data/vendor/local/share/doc/libxml2-2.7.7/html/io2.c +58 -0
  1371. data/vendor/local/share/doc/libxml2-2.7.7/html/io2.res +2 -0
  1372. data/vendor/local/share/doc/libxml2-2.7.7/html/libxml.gif +0 -0
  1373. data/vendor/local/share/doc/libxml2-2.7.7/html/parse1.c +56 -0
  1374. data/vendor/local/share/doc/libxml2-2.7.7/html/parse2.c +72 -0
  1375. data/vendor/local/share/doc/libxml2-2.7.7/html/parse3.c +60 -0
  1376. data/vendor/local/share/doc/libxml2-2.7.7/html/parse4.c +143 -0
  1377. data/vendor/local/share/doc/libxml2-2.7.7/html/reader1.c +107 -0
  1378. data/vendor/local/share/doc/libxml2-2.7.7/html/reader1.res +14 -0
  1379. data/vendor/local/share/doc/libxml2-2.7.7/html/reader2.c +122 -0
  1380. data/vendor/local/share/doc/libxml2-2.7.7/html/reader3.c +120 -0
  1381. data/vendor/local/share/doc/libxml2-2.7.7/html/reader3.res +13 -0
  1382. data/vendor/local/share/doc/libxml2-2.7.7/html/reader4.c +122 -0
  1383. data/vendor/local/share/doc/libxml2-2.7.7/html/reader4.res +3 -0
  1384. data/vendor/local/share/doc/libxml2-2.7.7/html/redhat.gif +0 -0
  1385. data/vendor/local/share/doc/libxml2-2.7.7/html/smallfootonly.gif +0 -0
  1386. data/vendor/local/share/doc/libxml2-2.7.7/html/structure.gif +0 -0
  1387. data/vendor/local/share/doc/libxml2-2.7.7/html/test1.xml +1 -0
  1388. data/vendor/local/share/doc/libxml2-2.7.7/html/test2.xml +13 -0
  1389. data/vendor/local/share/doc/libxml2-2.7.7/html/test3.xml +39 -0
  1390. data/vendor/local/share/doc/libxml2-2.7.7/html/testWriter.c +1198 -0
  1391. data/vendor/local/share/doc/libxml2-2.7.7/html/tree1.c +94 -0
  1392. data/vendor/local/share/doc/libxml2-2.7.7/html/tree1.res +4 -0
  1393. data/vendor/local/share/doc/libxml2-2.7.7/html/tree2.c +118 -0
  1394. data/vendor/local/share/doc/libxml2-2.7.7/html/tree2.res +18 -0
  1395. data/vendor/local/share/doc/libxml2-2.7.7/html/tst.xml +7 -0
  1396. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/apa.html +8 -0
  1397. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/apb.html +14 -0
  1398. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/apc.html +82 -0
  1399. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/apd.html +76 -0
  1400. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/ape.html +78 -0
  1401. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/apf.html +67 -0
  1402. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/apg.html +75 -0
  1403. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/aph.html +76 -0
  1404. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/api.html +4 -0
  1405. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/ar01s02.html +14 -0
  1406. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/ar01s03.html +47 -0
  1407. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/ar01s04.html +54 -0
  1408. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/ar01s05.html +55 -0
  1409. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/ar01s06.html +35 -0
  1410. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/ar01s07.html +30 -0
  1411. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/ar01s08.html +38 -0
  1412. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/ar01s09.html +63 -0
  1413. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/blank.png +0 -0
  1414. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/callouts/1.png +0 -0
  1415. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/callouts/10.png +0 -0
  1416. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/callouts/2.png +0 -0
  1417. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/callouts/3.png +0 -0
  1418. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/callouts/4.png +0 -0
  1419. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/callouts/5.png +0 -0
  1420. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/callouts/6.png +0 -0
  1421. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/callouts/7.png +0 -0
  1422. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/callouts/8.png +0 -0
  1423. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/callouts/9.png +0 -0
  1424. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/caution.png +0 -0
  1425. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/draft.png +0 -0
  1426. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/home.png +0 -0
  1427. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/important.png +0 -0
  1428. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/next.png +0 -0
  1429. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/note.png +0 -0
  1430. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/prev.png +0 -0
  1431. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/tip.png +0 -0
  1432. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/toc-blank.png +0 -0
  1433. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/toc-minus.png +0 -0
  1434. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/toc-plus.png +0 -0
  1435. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/up.png +0 -0
  1436. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/images/warning.png +0 -0
  1437. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/includeaddattribute.c +64 -0
  1438. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/includeaddkeyword.c +75 -0
  1439. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/includeconvert.c +73 -0
  1440. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/includegetattribute.c +72 -0
  1441. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/includekeyword.c +79 -0
  1442. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/includexpath.c +74 -0
  1443. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/index.html +14 -0
  1444. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/ix01.html +1 -0
  1445. data/vendor/local/share/doc/libxml2-2.7.7/html/tutorial/xmltutorial.pdf +1336 -0
  1446. data/vendor/local/share/doc/libxml2-2.7.7/html/w3c.png +0 -0
  1447. data/vendor/local/share/doc/libxml2-2.7.7/html/writer.xml +2 -0
  1448. data/vendor/local/share/doc/libxml2-2.7.7/html/xml.html +5344 -0
  1449. data/vendor/local/share/doc/libxml2-2.7.7/html/xpath1.c +250 -0
  1450. data/vendor/local/share/doc/libxml2-2.7.7/html/xpath1.res +5 -0
  1451. data/vendor/local/share/doc/libxml2-2.7.7/html/xpath2.c +190 -0
  1452. data/vendor/local/share/doc/libxml2-2.7.7/html/xpath2.res +30 -0
  1453. data/vendor/local/share/doc/speex/manual.pdf +0 -0
  1454. data/vendor/local/share/glib-2.0/schemas/gschemas.compiled +0 -0
  1455. data/vendor/local/share/glib-2.0/schemas/org.freedesktop.gstreamer-0.10.default-elements.gschema.xml +94 -0
  1456. data/vendor/local/share/gstreamer-0.10/presets/GstIirEqualizer10Bands.prs +174 -0
  1457. data/vendor/local/share/gstreamer-0.10/presets/GstIirEqualizer3Bands.prs +14 -0
  1458. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/annotation-glossary.html +77 -0
  1459. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/api-index-deprecated.html +132 -0
  1460. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/api-index-full.html +5106 -0
  1461. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/compiling.html +64 -0
  1462. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-0.10.devhelp +1398 -0
  1463. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-0.10.devhelp2 +1723 -0
  1464. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-appsink.html +568 -0
  1465. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-appsrc.html +664 -0
  1466. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-encoding-profile.html +1606 -0
  1467. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstaudio.html +400 -0
  1468. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstaudioclock.html +317 -0
  1469. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstaudiofilter.html +165 -0
  1470. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstaudiomixerutils.html +144 -0
  1471. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstaudiosink.html +202 -0
  1472. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstaudiosrc.html +203 -0
  1473. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstbaseaudiosink.html +447 -0
  1474. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstbaseaudiosrc.html +402 -0
  1475. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstbasertpaudiopayload.html +377 -0
  1476. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstbasertpdepayload.html +260 -0
  1477. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstbasertppayload.html +469 -0
  1478. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstcddabasesrc.html +283 -0
  1479. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstcolorbalance.html +346 -0
  1480. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstcolorbalancechannel.html +156 -0
  1481. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstdiscoverer.html +1457 -0
  1482. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstfft.html +130 -0
  1483. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstfftf32.html +285 -0
  1484. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstfftf64.html +285 -0
  1485. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstffts16.html +285 -0
  1486. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstffts32.html +285 -0
  1487. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstfloatcast.html +105 -0
  1488. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstmixer.html +956 -0
  1489. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstmixeroptions.html +108 -0
  1490. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstmixertrack.html +259 -0
  1491. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstmultichannel.html +398 -0
  1492. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstnavigation.html +1166 -0
  1493. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstnetbuffer.html +498 -0
  1494. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstpbutils.html +225 -0
  1495. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstpbutilscodecutils.html +469 -0
  1496. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstpbutilsdescriptions.html +297 -0
  1497. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstpbutilsinstallplugins.html +821 -0
  1498. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstpbutilsmissingplugins.html +510 -0
  1499. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstpropertyprobe.html +449 -0
  1500. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstriff.html +2092 -0
  1501. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstringbuffer.html +1480 -0
  1502. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstrtcpbuffer.html +1985 -0
  1503. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstrtpbuffer.html +1959 -0
  1504. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstrtppayloads.html +391 -0
  1505. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstrtspbase64.html +121 -0
  1506. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstrtspconnection.html +1421 -0
  1507. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstrtspdefs.html +879 -0
  1508. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstrtspextension.html +104 -0
  1509. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstrtspmessage.html +988 -0
  1510. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstrtsprange.html +269 -0
  1511. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstrtsptransport.html +499 -0
  1512. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstrtspurl.html +315 -0
  1513. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstsdpmessage.html +2802 -0
  1514. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gststreamvolume.html +308 -0
  1515. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gsttag.html +829 -0
  1516. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gsttagdemux.html +248 -0
  1517. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gsttagid3.html +252 -0
  1518. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gsttaglanguagecodes.html +243 -0
  1519. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gsttagvorbis.html +272 -0
  1520. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gsttagxmp.html +119 -0
  1521. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gsttuner.html +723 -0
  1522. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gsttunerchannel.html +264 -0
  1523. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gsttunernorm.html +99 -0
  1524. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstvideo.html +1942 -0
  1525. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstvideofilter.html +95 -0
  1526. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstvideoorientation.html +406 -0
  1527. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstvideosink.html +253 -0
  1528. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-gstxoverlay.html +864 -0
  1529. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-app.html +48 -0
  1530. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-audio.html +68 -0
  1531. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-base-utils.html +60 -0
  1532. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-cdda.html +38 -0
  1533. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-ffft.html +57 -0
  1534. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-floatcast.html +38 -0
  1535. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-interfaces.html +82 -0
  1536. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-libs-hierarchy.html +76 -0
  1537. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-netbuffer.html +38 -0
  1538. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-plugins-base.html +285 -0
  1539. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-riff.html +38 -0
  1540. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-rtp.html +55 -0
  1541. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-rtsp.html +61 -0
  1542. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-sdp.html +38 -0
  1543. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-tag.html +59 -0
  1544. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gstreamer-video.html +46 -0
  1545. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/home.png +0 -0
  1546. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/index.html +284 -0
  1547. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/index.sgml +1973 -0
  1548. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/left.png +0 -0
  1549. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/right.png +0 -0
  1550. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/style.css +266 -0
  1551. data/vendor/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/up.png +0 -0
  1552. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/GstPlayBaseBin.html +219 -0
  1553. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/ch01.html +185 -0
  1554. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/ch02.html +125 -0
  1555. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/ch03.html +33 -0
  1556. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-0.10.devhelp +684 -0
  1557. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-0.10.devhelp2 +782 -0
  1558. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-adder.html +215 -0
  1559. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-alsamixer.html +151 -0
  1560. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-alsasink.html +216 -0
  1561. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-alsasrc.html +213 -0
  1562. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-appsink.html +463 -0
  1563. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-appsrc.html +405 -0
  1564. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audioconvert.html +338 -0
  1565. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audiorate.html +280 -0
  1566. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audioresample.html +233 -0
  1567. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-audiotestsrc.html +321 -0
  1568. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-cdparanoiasrc.html +257 -0
  1569. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-clockoverlay.html +270 -0
  1570. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-decodebin.html +303 -0
  1571. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-decodebin2.html +642 -0
  1572. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-encodebin.html +375 -0
  1573. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-ffmpegcolorspace.html +296 -0
  1574. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gdpdepay.html +171 -0
  1575. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gdppay.html +204 -0
  1576. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-giosink.html +233 -0
  1577. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-giosrc.html +228 -0
  1578. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-giostreamsink.html +216 -0
  1579. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-giostreamsrc.html +215 -0
  1580. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gnomevfssink.html +256 -0
  1581. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-gnomevfssrc.html +269 -0
  1582. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-multifdsink.html +976 -0
  1583. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-oggdemux.html +177 -0
  1584. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-oggmux.html +255 -0
  1585. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin.html +463 -0
  1586. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-playbin2.html +1204 -0
  1587. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-adder.html +74 -0
  1588. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-alsa.html +84 -0
  1589. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-app.html +80 -0
  1590. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-audioconvert.html +74 -0
  1591. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-audiorate.html +74 -0
  1592. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-audioresample.html +74 -0
  1593. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-audiotestsrc.html +74 -0
  1594. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-cdparanoia.html +74 -0
  1595. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-decodebin.html +74 -0
  1596. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-encoding.html +74 -0
  1597. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-ffmpegcolorspace.html +74 -0
  1598. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-gdp.html +80 -0
  1599. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-gio.html +88 -0
  1600. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-gnomevfs.html +80 -0
  1601. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-libvisual.html +104 -0
  1602. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-ogg.html +100 -0
  1603. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-pango.html +88 -0
  1604. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-playback.html +88 -0
  1605. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-subparse.html +80 -0
  1606. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-tcp.html +92 -0
  1607. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-theora.html +84 -0
  1608. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-typefindfunctions.html +71 -0
  1609. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-uridecodebin.html +80 -0
  1610. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-video4linux.html +74 -0
  1611. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-videorate.html +74 -0
  1612. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-videoscale.html +74 -0
  1613. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-videotestsrc.html +74 -0
  1614. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-volume.html +74 -0
  1615. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-vorbis.html +88 -0
  1616. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-ximagesink.html +74 -0
  1617. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-plugin-xvimagesink.html +74 -0
  1618. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-subtitleoverlay.html +233 -0
  1619. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-tcpclientsink.html +186 -0
  1620. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-tcpclientsrc.html +187 -0
  1621. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-tcpserversink.html +180 -0
  1622. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-tcpserversrc.html +187 -0
  1623. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-textoverlay.html +651 -0
  1624. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-textrender.html +243 -0
  1625. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-theoradec.html +194 -0
  1626. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-theoraenc.html +416 -0
  1627. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-theoraparse.html +222 -0
  1628. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-timeoverlay.html +253 -0
  1629. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-uridecodebin.html +608 -0
  1630. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videorate.html +320 -0
  1631. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videoscale.html +489 -0
  1632. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-videotestsrc.html +663 -0
  1633. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-volume.html +236 -0
  1634. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-vorbisdec.html +176 -0
  1635. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-vorbisenc.html +257 -0
  1636. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-vorbisparse.html +199 -0
  1637. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-vorbistag.html +194 -0
  1638. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-ximagesink.html +332 -0
  1639. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/gst-plugins-base-plugins-xvimagesink.html +460 -0
  1640. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/home.png +0 -0
  1641. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/index.html +288 -0
  1642. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/index.sgml +1059 -0
  1643. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/left.png +0 -0
  1644. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/right.png +0 -0
  1645. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/style.css +266 -0
  1646. data/vendor/local/share/gtk-doc/html/gst-plugins-base-plugins-0.10/up.png +0 -0
  1647. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstBin.html +1180 -0
  1648. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstBus.html +1127 -0
  1649. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstChildProxy.html +575 -0
  1650. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstClock.html +1846 -0
  1651. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstElement.html +3919 -0
  1652. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstElementFactory.html +1180 -0
  1653. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstGhostPad.html +337 -0
  1654. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstImplementsInterface.html +179 -0
  1655. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstIndex.html +1449 -0
  1656. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstIndexFactory.html +205 -0
  1657. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstObject.html +1498 -0
  1658. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstPad.html +5192 -0
  1659. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstPadTemplate.html +624 -0
  1660. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstPipeline.html +626 -0
  1661. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstPlugin.html +1285 -0
  1662. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstPluginFeature.html +529 -0
  1663. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstPreset.html +437 -0
  1664. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstRegistry.html +1021 -0
  1665. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstSystemClock.html +161 -0
  1666. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstTagSetter.html +504 -0
  1667. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstTask.html +766 -0
  1668. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstTaskPool.html +291 -0
  1669. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstTypeFindFactory.html +290 -0
  1670. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/GstXML.html +453 -0
  1671. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/annotation-glossary.html +101 -0
  1672. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/api-index-deprecated.html +188 -0
  1673. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/api-index-full.html +7056 -0
  1674. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gst-building.html +109 -0
  1675. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gst-running.html +205 -0
  1676. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-0.10.devhelp +1814 -0
  1677. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-0.10.devhelp2 +2190 -0
  1678. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-Gst.html +538 -0
  1679. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstAtomicQueue.html +231 -0
  1680. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstBuffer.html +1458 -0
  1681. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstBufferList.html +1043 -0
  1682. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstCaps.html +1646 -0
  1683. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstDateTime.html +584 -0
  1684. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstEvent.html +2195 -0
  1685. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstFilter.html +174 -0
  1686. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstFormat.html +349 -0
  1687. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstGError.html +645 -0
  1688. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstInfo.html +2466 -0
  1689. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstIterator.html +1019 -0
  1690. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstMessage.html +3301 -0
  1691. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstMiniObject.html +662 -0
  1692. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstParamSpec.html +252 -0
  1693. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstParse.html +539 -0
  1694. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstPoll.html +719 -0
  1695. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstQuery.html +1963 -0
  1696. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstSegment.html +816 -0
  1697. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstStructure.html +2196 -0
  1698. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstTagList.html +3477 -0
  1699. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstTrace.html +591 -0
  1700. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstTypeFind.html +403 -0
  1701. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstUriHandler.html +635 -0
  1702. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstUtils.html +2334 -0
  1703. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstValue.html +2442 -0
  1704. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstVersion.html +140 -0
  1705. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-gstconfig.html +175 -0
  1706. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-hierarchy.html +60 -0
  1707. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer-support.html +42 -0
  1708. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/gstreamer.html +57 -0
  1709. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/home.png +0 -0
  1710. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/index.html +224 -0
  1711. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/index.sgml +2441 -0
  1712. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/left.png +0 -0
  1713. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/libgstreamer.html +201 -0
  1714. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/right.png +0 -0
  1715. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/style.css +266 -0
  1716. data/vendor/local/share/gtk-doc/html/gstreamer-0.10/up.png +0 -0
  1717. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/GstAdapter.html +745 -0
  1718. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/GstBaseSink.html +1298 -0
  1719. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/GstBaseSrc.html +844 -0
  1720. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/GstBaseTransform.html +875 -0
  1721. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/GstCollectPads.html +1002 -0
  1722. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/GstControlSource.html +407 -0
  1723. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/GstController.html +936 -0
  1724. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/GstInterpolationControlSource.html +363 -0
  1725. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/GstLFOControlSource.html +222 -0
  1726. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/GstNetClientClock.html +174 -0
  1727. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/GstNetTimeProvider.html +172 -0
  1728. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/GstPushSrc.html +108 -0
  1729. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/annotation-glossary.html +89 -0
  1730. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/api-index-deprecated.html +75 -0
  1731. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/api-index-full.html +2227 -0
  1732. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gdp-header.png +0 -0
  1733. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-base.html +74 -0
  1734. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-check.html +45 -0
  1735. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-control.html +51 -0
  1736. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-dataprotocol.html +33 -0
  1737. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-hierarchy.html +49 -0
  1738. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-0.10.devhelp +589 -0
  1739. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-0.10.devhelp2 +615 -0
  1740. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-GstBaseParse.html +1004 -0
  1741. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-GstBitReader.html +1008 -0
  1742. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-GstBufferStraw.html +169 -0
  1743. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-GstByteReader.html +3668 -0
  1744. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-GstByteWriter.html +2233 -0
  1745. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-GstCheck.html +585 -0
  1746. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-GstControllerGObject.html +464 -0
  1747. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-GstDataQueue.html +544 -0
  1748. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-GstNetTimePacket.html +249 -0
  1749. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-GstStreamConsistency.html +130 -0
  1750. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-GstTypeFindHelper.html +364 -0
  1751. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs-gstdataprotocol.html +818 -0
  1752. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-libs.html +132 -0
  1753. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/gstreamer-net.html +47 -0
  1754. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/home.png +0 -0
  1755. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/index.html +129 -0
  1756. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/index.sgml +707 -0
  1757. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/left.png +0 -0
  1758. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/right.png +0 -0
  1759. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/style.css +266 -0
  1760. data/vendor/local/share/gtk-doc/html/gstreamer-libs-0.10/up.png +0 -0
  1761. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/ch01.html +83 -0
  1762. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/ch02.html +38 -0
  1763. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-0.10.devhelp +214 -0
  1764. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-0.10.devhelp2 +244 -0
  1765. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-capsfilter.html +184 -0
  1766. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-fakesink.html +358 -0
  1767. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-fakesrc.html +525 -0
  1768. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-fdsink.html +166 -0
  1769. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-fdsrc.html +210 -0
  1770. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-filesink.html +202 -0
  1771. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-filesrc.html +230 -0
  1772. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-funnel.html +156 -0
  1773. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-identity.html +310 -0
  1774. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-input-selector.html +327 -0
  1775. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-multiqueue.html +397 -0
  1776. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-output-selector.html +183 -0
  1777. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-plugin-coreelements.html +140 -0
  1778. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-plugin-coreindexers.html +70 -0
  1779. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-queue.html +425 -0
  1780. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-queue2.html +308 -0
  1781. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-tee.html +273 -0
  1782. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-typefind.html +243 -0
  1783. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/gstreamer-plugins-valve.html +179 -0
  1784. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/home.png +0 -0
  1785. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/index.html +95 -0
  1786. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/index.sgml +338 -0
  1787. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/left.png +0 -0
  1788. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/right.png +0 -0
  1789. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/style.css +266 -0
  1790. data/vendor/local/share/gtk-doc/html/gstreamer-plugins-0.10/up.png +0 -0
  1791. data/vendor/local/share/gtk-doc/html/libxml2/general.html +38 -0
  1792. data/vendor/local/share/gtk-doc/html/libxml2/home.png +0 -0
  1793. data/vendor/local/share/gtk-doc/html/libxml2/index.html +67 -0
  1794. data/vendor/local/share/gtk-doc/html/libxml2/left.png +0 -0
  1795. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-DOCBparser.html +138 -0
  1796. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-HTMLparser.html +371 -0
  1797. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-HTMLtree.html +172 -0
  1798. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-SAX.html +243 -0
  1799. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-SAX2.html +247 -0
  1800. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-c14n.html +91 -0
  1801. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-catalog.html +278 -0
  1802. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-chvalid.html +241 -0
  1803. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-debugXML.html +225 -0
  1804. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-dict.html +119 -0
  1805. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-encoding.html +208 -0
  1806. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-entities.html +166 -0
  1807. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-globals.html +383 -0
  1808. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-hash.html +214 -0
  1809. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-list.html +226 -0
  1810. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-nanoftp.html +177 -0
  1811. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-nanohttp.html +142 -0
  1812. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-parser.html +762 -0
  1813. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-parserInternals.html +673 -0
  1814. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-pattern.html +166 -0
  1815. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-relaxng.html +278 -0
  1816. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-schemasInternals.html +860 -0
  1817. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-schematron.html +166 -0
  1818. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-threads.html +161 -0
  1819. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-tree.html +1542 -0
  1820. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-uri.html +154 -0
  1821. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-valid.html +528 -0
  1822. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xinclude.html +169 -0
  1823. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xlink.html +160 -0
  1824. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlIO.html +337 -0
  1825. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlautomata.html +176 -0
  1826. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlerror.html +950 -0
  1827. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlexports.html +87 -0
  1828. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlmemory.html +186 -0
  1829. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlmodule.html +97 -0
  1830. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlreader.html +560 -0
  1831. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlregexp.html +280 -0
  1832. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlsave.html +132 -0
  1833. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlschemas.html +299 -0
  1834. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlschemastypes.html +237 -0
  1835. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlstring.html +217 -0
  1836. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlunicode.html +887 -0
  1837. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlversion.html +277 -0
  1838. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlwriter.html +474 -0
  1839. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xpath.html +529 -0
  1840. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xpathInternals.html +787 -0
  1841. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xpointer.html +171 -0
  1842. data/vendor/local/share/gtk-doc/html/libxml2/libxml2.devhelp +3529 -0
  1843. data/vendor/local/share/gtk-doc/html/libxml2/right.png +0 -0
  1844. data/vendor/local/share/gtk-doc/html/libxml2/style.css +66 -0
  1845. data/vendor/local/share/gtk-doc/html/libxml2/up.png +0 -0
  1846. data/vendor/local/share/license/gst-ffmpeg/AUTHORS +1 -0
  1847. data/vendor/local/share/license/gst-ffmpeg/COPYING +339 -0
  1848. data/vendor/local/share/license/gst-ffmpeg/COPYING.LIB +481 -0
  1849. data/vendor/local/share/license/gst-plugins-bad/AUTHORS +21 -0
  1850. data/vendor/local/share/license/gst-plugins-bad/COPYING +340 -0
  1851. data/vendor/local/share/license/gst-plugins-bad/COPYING.LIB +481 -0
  1852. data/vendor/local/share/license/gst-plugins-base/AUTHORS +23 -0
  1853. data/vendor/local/share/license/gst-plugins-base/COPYING +340 -0
  1854. data/vendor/local/share/license/gst-plugins-base/COPYING.LIB +481 -0
  1855. data/vendor/local/share/license/gst-plugins-good/AUTHORS +21 -0
  1856. data/vendor/local/share/license/gst-plugins-good/COPYING +504 -0
  1857. data/vendor/local/share/license/gstreamer/AUTHORS +32 -0
  1858. data/vendor/local/share/license/gstreamer/COPYING +481 -0
  1859. data/vendor/local/share/license/libav/COPYING.GPLv2 +339 -0
  1860. data/vendor/local/share/license/libav/COPYING.GPLv3 +674 -0
  1861. data/vendor/local/share/license/libav/COPYING.LGPLv2.1 +504 -0
  1862. data/vendor/local/share/license/libav/COPYING.LGPLv3 +165 -0
  1863. data/vendor/local/share/license/libav/CREDITS +55 -0
  1864. data/vendor/local/share/license/libav/LICENSE +46 -0
  1865. data/vendor/local/share/license/libogg/AUTHORS +7 -0
  1866. data/vendor/local/share/license/libogg/COPYING +28 -0
  1867. data/vendor/local/share/license/libtheora/AUTHORS +49 -0
  1868. data/vendor/local/share/license/libtheora/COPYING +28 -0
  1869. data/vendor/local/share/license/libvorbis/AUTHORS +3 -0
  1870. data/vendor/local/share/license/libvorbis/COPYING +28 -0
  1871. data/vendor/local/share/license/speex/AUTHORS +18 -0
  1872. data/vendor/local/share/license/speex/COPYING +35 -0
  1873. data/vendor/local/share/man/man1/cjpeg.1 +325 -0
  1874. data/vendor/local/share/man/man1/djpeg.1 +252 -0
  1875. data/vendor/local/share/man/man1/gst-feedback-0.10.1 +38 -0
  1876. data/vendor/local/share/man/man1/gst-inspect-0.10.1 +58 -0
  1877. data/vendor/local/share/man/man1/gst-launch-0.10.1 +475 -0
  1878. data/vendor/local/share/man/man1/gst-typefind-0.10.1 +40 -0
  1879. data/vendor/local/share/man/man1/gst-visualise-0.10.1 +32 -0
  1880. data/vendor/local/share/man/man1/gst-xmlinspect-0.10.1 +51 -0
  1881. data/vendor/local/share/man/man1/gst-xmllaunch-0.10.1 +69 -0
  1882. data/vendor/local/share/man/man1/jpegtran.1 +285 -0
  1883. data/vendor/local/share/man/man1/rdjpgcom.1 +63 -0
  1884. data/vendor/local/share/man/man1/speexdec.1 +78 -0
  1885. data/vendor/local/share/man/man1/speexenc.1 +105 -0
  1886. data/vendor/local/share/man/man1/wrjpgcom.1 +103 -0
  1887. data/vendor/local/share/man/man1/xml2-config.1 +31 -0
  1888. data/vendor/local/share/man/man1/xmlcatalog.1 +229 -0
  1889. data/vendor/local/share/man/man1/xmllint.1 +427 -0
  1890. data/vendor/local/share/man/man3/libxml.3 +71 -0
  1891. data/vendor/local/src/tml/packaging/jpeg_8-1_win32.log +248 -0
  1892. data/vendor/local/src/tml/packaging/jpeg_8-1_win32.sh +44 -0
  1893. data/vendor/local/src/tml/packaging/libsoup_2.26.3-1_win32.log +1518 -0
  1894. data/vendor/local/src/tml/packaging/libsoup_2.26.3-1_win32.sh +60 -0
  1895. data/vendor/local/src/tml/packaging/libxml2_2.7.7-1_win32.log +1244 -0
  1896. data/vendor/local/src/tml/packaging/libxml2_2.7.7-1_win32.sh +66 -0
  1897. metadata +2025 -0
@@ -0,0 +1,248 @@
1
+ ++ CC='gcc -mtune=pentium3 -mthreads'
2
+ ++ CFLAGS=-O2
3
+ ++ ./configure --disable-static --prefix=c:/devel/target/49541e7873c72f7e625ac89c1be10bb5
4
+ checking build system type... i686-pc-mingw32
5
+ checking host system type... i686-pc-mingw32
6
+ checking target system type... i686-pc-mingw32
7
+ checking for a BSD-compatible install... /opt/local/bin/install -c
8
+ checking whether build environment is sane... yes
9
+ checking for a thread-safe mkdir -p... /bin/mkdir -p
10
+ checking for gawk... gawk
11
+ checking whether make sets $(MAKE)... yes
12
+ checking for style of include used by make... GNU
13
+ checking for gcc... gcc -mtune=pentium3 -mthreads
14
+ checking whether the C compiler works... yes
15
+ checking for C compiler default output file name... a.exe
16
+ checking for suffix of executables... .exe
17
+ checking whether we are cross compiling... no
18
+ checking for suffix of object files... o
19
+ checking whether we are using the GNU C compiler... yes
20
+ checking whether gcc -mtune=pentium3 -mthreads accepts -g... yes
21
+ checking for gcc -mtune=pentium3 -mthreads option to accept ISO C89... none needed
22
+ checking dependency style of gcc -mtune=pentium3 -mthreads... gcc3
23
+ checking for function prototypes... yes
24
+ checking how to run the C preprocessor... gcc -mtune=pentium3 -mthreads -E
25
+ checking for grep that handles long lines and -e... /bin/grep
26
+ checking for egrep... /bin/grep -E
27
+ checking for ANSI C header files... yes
28
+ checking for sys/types.h... yes
29
+ checking for sys/stat.h... yes
30
+ checking for stdlib.h... yes
31
+ checking for string.h... yes
32
+ checking for memory.h... yes
33
+ checking for strings.h... yes
34
+ checking for inttypes.h... yes
35
+ checking for stdint.h... yes
36
+ checking for unistd.h... yes
37
+ checking for string.h... (cached) yes
38
+ checking whether to enable maintainer-specific portions of Makefiles... no
39
+ checking for gcc... (cached) gcc -mtune=pentium3 -mthreads
40
+ checking whether we are using the GNU C compiler... (cached) yes
41
+ checking whether gcc -mtune=pentium3 -mthreads accepts -g... (cached) yes
42
+ checking for gcc -mtune=pentium3 -mthreads option to accept ISO C89... (cached) none needed
43
+ checking dependency style of gcc -mtune=pentium3 -mthreads... (cached) gcc3
44
+ checking for gcc -mtune=pentium3 -mthreads option to accept ISO C99... -std=gnu99
45
+ checking for gcc -mtune=pentium3 -mthreads -std=gnu99 option to accept ISO Standard C... (cached) -std=gnu99
46
+ checking how to run the C preprocessor... gcc -mtune=pentium3 -mthreads -E
47
+ checking whether make sets $(MAKE)... (cached) yes
48
+ checking whether ln -s works... yes
49
+ checking if LD -Wl,--version-script works... yes
50
+ checking for function prototypes... yes
51
+ checking stddef.h usability... yes
52
+ checking stddef.h presence... yes
53
+ checking for stddef.h... yes
54
+ checking for stdlib.h... (cached) yes
55
+ checking locale.h usability... yes
56
+ checking locale.h presence... yes
57
+ checking for locale.h... yes
58
+ checking for string.h... (cached) yes
59
+ checking for size_t... yes
60
+ checking for type unsigned char... yes
61
+ checking for type unsigned short... yes
62
+ checking for type void... yes
63
+ checking for an ANSI C-conforming const... yes
64
+ checking for inline... __inline__
65
+ checking for broken incomplete types... ok
66
+ checking for short external names... ok
67
+ checking to see if char is signed... yes
68
+ checking to see if right shift is signed... yes
69
+ checking to see if fopen accepts b spec... yes
70
+ checking for as... as
71
+ checking for dlltool... dlltool
72
+ checking for objdump... objdump
73
+ checking for a sed that does not truncate output... /bin/sed
74
+ checking for fgrep... /bin/grep -F
75
+ checking for ld used by gcc -mtune=pentium3 -mthreads -std=gnu99... c:/opt/mingw/mingw32/bin/ld.exe
76
+ checking if the linker (c:/opt/mingw/mingw32/bin/ld.exe) is GNU ld... yes
77
+ checking for BSD- or MS-compatible name lister (nm)... /opt/mingw/bin/nm
78
+ checking the name lister (/opt/mingw/bin/nm) interface... BSD nm
79
+ checking the maximum length of command line arguments... 8192
80
+ checking whether the shell understands some XSI constructs... yes
81
+ checking whether the shell understands "+="... yes
82
+ checking for c:/opt/mingw/mingw32/bin/ld.exe option to reload object files... -r
83
+ checking for objdump... (cached) objdump
84
+ checking how to recognize dependent libraries... file_magic ^x86 archive import|^x86 DLL
85
+ checking for ar... ar
86
+ checking for strip... strip
87
+ checking for ranlib... ranlib
88
+ checking command to parse /opt/mingw/bin/nm output from gcc -mtune=pentium3 -mthreads -std=gnu99 object... ok
89
+ checking for dlfcn.h... no
90
+ checking for objdir... .libs
91
+ checking if gcc -mtune=pentium3 -mthreads -std=gnu99 supports -fno-rtti -fno-exceptions... no
92
+ checking for gcc -mtune=pentium3 -mthreads -std=gnu99 option to produce PIC... -DDLL_EXPORT -DPIC
93
+ checking if gcc -mtune=pentium3 -mthreads -std=gnu99 PIC flag -DDLL_EXPORT -DPIC works... yes
94
+ checking if gcc -mtune=pentium3 -mthreads -std=gnu99 static flag -static works... yes
95
+ checking if gcc -mtune=pentium3 -mthreads -std=gnu99 supports -c -o file.o... yes
96
+ checking if gcc -mtune=pentium3 -mthreads -std=gnu99 supports -c -o file.o... (cached) yes
97
+ checking whether the gcc -mtune=pentium3 -mthreads -std=gnu99 linker (c:/opt/mingw/mingw32/bin/ld.exe) supports shared libraries... yes
98
+ checking whether -lc should be explicitly linked in... yes
99
+ checking dynamic linker characteristics... Win32 ld.exe
100
+ checking how to hardcode library paths into programs... immediate
101
+ checking whether stripping libraries is possible... yes
102
+ checking if libtool supports shared libraries... yes
103
+ checking whether to build shared libraries... yes
104
+ checking whether to build static libraries... no
105
+ checking libjpeg version number... 8:0
106
+ configure: creating ./config.status
107
+ config.status: creating Makefile
108
+ config.status: creating jconfig.h
109
+ config.status: executing depfiles commands
110
+ config.status: executing libtool commands
111
+ ++ make install
112
+ CC jaricom.lo
113
+ CC jcapimin.lo
114
+ CC jcapistd.lo
115
+ CC jcarith.lo
116
+ CC jccoefct.lo
117
+ CC jccolor.lo
118
+ CC jcdctmgr.lo
119
+ CC jchuff.lo
120
+ CC jcinit.lo
121
+ CC jcmainct.lo
122
+ CC jcmarker.lo
123
+ CC jcmaster.lo
124
+ CC jcomapi.lo
125
+ CC jcparam.lo
126
+ CC jcprepct.lo
127
+ CC jcsample.lo
128
+ CC jctrans.lo
129
+ CC jdapimin.lo
130
+ CC jdapistd.lo
131
+ CC jdarith.lo
132
+ CC jdatadst.lo
133
+ CC jdatasrc.lo
134
+ CC jdcoefct.lo
135
+ CC jdcolor.lo
136
+ CC jddctmgr.lo
137
+ CC jdhuff.lo
138
+ CC jdinput.lo
139
+ CC jdmainct.lo
140
+ CC jdmarker.lo
141
+ CC jdmaster.lo
142
+ CC jdmerge.lo
143
+ CC jdpostct.lo
144
+ CC jdsample.lo
145
+ CC jdtrans.lo
146
+ CC jerror.lo
147
+ CC jfdctflt.lo
148
+ CC jfdctfst.lo
149
+ CC jfdctint.lo
150
+ CC jidctflt.lo
151
+ CC jidctfst.lo
152
+ CC jidctint.lo
153
+ CC jquant1.lo
154
+ CC jquant2.lo
155
+ CC jutils.lo
156
+ CC jmemmgr.lo
157
+ CC jmemnobs.lo
158
+ CCLD libjpeg.la
159
+ Creating library file: .libs/libjpeg.dll.a
160
+ CC cjpeg.o
161
+ CC rdppm.o
162
+ CC rdgif.o
163
+ CC rdtarga.o
164
+ CC rdrle.o
165
+ CC rdbmp.o
166
+ CC rdswitch.o
167
+ CC cdjpeg.o
168
+ CCLD cjpeg.exe
169
+ CC djpeg.o
170
+ CC wrppm.o
171
+ CC wrgif.o
172
+ CC wrtarga.o
173
+ CC wrrle.o
174
+ CC wrbmp.o
175
+ CC rdcolmap.o
176
+ CCLD djpeg.exe
177
+ CC jpegtran.o
178
+ CC transupp.o
179
+ CCLD jpegtran.exe
180
+ CC rdjpgcom.o
181
+ CCLD rdjpgcom.exe
182
+ CC wrjpgcom.o
183
+ CCLD wrjpgcom.exe
184
+ make[1]: Entering directory `/devel/src/jpeg/8-1_win32'
185
+ test -z "c:/devel/target/49541e7873c72f7e625ac89c1be10bb5/lib" || /bin/mkdir -p "c:/devel/target/49541e7873c72f7e625ac89c1be10bb5/lib"
186
+ /bin/sh ./libtool --mode=install /opt/local/bin/install -c libjpeg.la 'c:/devel/target/49541e7873c72f7e625ac89c1be10bb5/lib'
187
+ libtool: install: /opt/local/bin/install -c .libs/libjpeg.dll.a c:/devel/target/49541e7873c72f7e625ac89c1be10bb5/lib/libjpeg.dll.a
188
+ libtool: install: base_file=`basename libjpeg.la`
189
+ libtool: install: dlpath=`/bin/sh 2>&1 -c '. .libs/'libjpeg.la'i; echo libjpeg-8.dll'`
190
+ libtool: install: dldir=c:/devel/target/49541e7873c72f7e625ac89c1be10bb5/lib/`dirname ../bin/libjpeg-8.dll`
191
+ libtool: install: test -d c:/devel/target/49541e7873c72f7e625ac89c1be10bb5/lib/../bin || mkdir -p c:/devel/target/49541e7873c72f7e625ac89c1be10bb5/lib/../bin
192
+ libtool: install: /opt/local/bin/install -c .libs/libjpeg-8.dll c:/devel/target/49541e7873c72f7e625ac89c1be10bb5/lib/../bin/libjpeg-8.dll
193
+ libtool: install: chmod a+x c:/devel/target/49541e7873c72f7e625ac89c1be10bb5/lib/../bin/libjpeg-8.dll
194
+ libtool: install: if test -n '' && test -n 'strip --strip-unneeded'; then eval 'strip --strip-unneeded c:/devel/target/49541e7873c72f7e625ac89c1be10bb5/lib/../bin/libjpeg-8.dll' || exit 0; fi
195
+ libtool: install: /opt/local/bin/install -c .libs/libjpeg.lai c:/devel/target/49541e7873c72f7e625ac89c1be10bb5/lib/libjpeg.la
196
+ ----------------------------------------------------------------------
197
+ Libraries have been installed in:
198
+ c:/devel/target/49541e7873c72f7e625ac89c1be10bb5/lib
199
+
200
+ If you ever happen to want to link against installed libraries
201
+ in a given directory, LIBDIR, you must either use libtool, and
202
+ specify the full pathname of the library, or use the `-LLIBDIR'
203
+ flag during linking and do at least one of the following:
204
+ - add LIBDIR to the `PATH' environment variable
205
+ during execution
206
+ - add LIBDIR to the `LD_RUN_PATH' environment variable
207
+ during linking
208
+ - use the `-LLIBDIR' linker flag
209
+
210
+ See any operating system documentation about shared libraries for
211
+ more information, such as the ld(1) and ld.so(8) manual pages.
212
+ ----------------------------------------------------------------------
213
+ test -z "c:/devel/target/49541e7873c72f7e625ac89c1be10bb5/bin" || /bin/mkdir -p "c:/devel/target/49541e7873c72f7e625ac89c1be10bb5/bin"
214
+ /bin/sh ./libtool --mode=install /opt/local/bin/install -c cjpeg.exe djpeg.exe jpegtran.exe rdjpgcom.exe wrjpgcom.exe 'c:/devel/target/49541e7873c72f7e625ac89c1be10bb5/bin'
215
+ libtool: install: /opt/local/bin/install -c .libs/cjpeg.exe c:/devel/target/49541e7873c72f7e625ac89c1be10bb5/bin/cjpeg.exe
216
+ libtool: install: /opt/local/bin/install -c .libs/djpeg.exe c:/devel/target/49541e7873c72f7e625ac89c1be10bb5/bin/djpeg.exe
217
+ libtool: install: /opt/local/bin/install -c .libs/jpegtran.exe c:/devel/target/49541e7873c72f7e625ac89c1be10bb5/bin/jpegtran.exe
218
+ libtool: install: /opt/local/bin/install -c .libs/rdjpgcom.exe c:/devel/target/49541e7873c72f7e625ac89c1be10bb5/bin/rdjpgcom.exe
219
+ libtool: install: /opt/local/bin/install -c .libs/wrjpgcom.exe c:/devel/target/49541e7873c72f7e625ac89c1be10bb5/bin/wrjpgcom.exe
220
+ /bin/sh /devel/src/jpeg/8-1_win32/install-sh -d c:/devel/target/49541e7873c72f7e625ac89c1be10bb5/include
221
+ /opt/local/bin/install -c -m 644 jconfig.h c:/devel/target/49541e7873c72f7e625ac89c1be10bb5/include/jconfig.h
222
+ test -z "c:/devel/target/49541e7873c72f7e625ac89c1be10bb5/include" || /bin/mkdir -p "c:/devel/target/49541e7873c72f7e625ac89c1be10bb5/include"
223
+ /opt/local/bin/install -c -m 644 jerror.h jmorecfg.h jpeglib.h 'c:/devel/target/49541e7873c72f7e625ac89c1be10bb5/include'
224
+ test -z "c:/devel/target/49541e7873c72f7e625ac89c1be10bb5/share/man/man1" || /bin/mkdir -p "c:/devel/target/49541e7873c72f7e625ac89c1be10bb5/share/man/man1"
225
+ /opt/local/bin/install -c -m 644 cjpeg.1 djpeg.1 jpegtran.1 rdjpgcom.1 wrjpgcom.1 'c:/devel/target/49541e7873c72f7e625ac89c1be10bb5/share/man/man1'
226
+ make[1]: Leaving directory `/devel/src/jpeg/8-1_win32'
227
+ ++ rm -f /tmp/jpeg_8-1_win32.zip /tmp/jpeg-dev_8-1_win32.zip
228
+ ++ cd /devel/target/49541e7873c72f7e625ac89c1be10bb5
229
+ ++ zip /tmp/jpeg_8-1_win32.zip bin/libjpeg-8.dll
230
+ adding: bin/libjpeg-8.dll (224 bytes security) (deflated 53%)
231
+ ++ zip /tmp/jpeg-dev_8-1_win32.zip bin/cjpeg.exe bin/djpeg.exe bin/jpegtran.exe bin/rdjpgcom.exe bin/wrjpgcom.exe
232
+ adding: bin/cjpeg.exe (224 bytes security) (deflated 64%)
233
+ adding: bin/djpeg.exe (224 bytes security) (deflated 63%)
234
+ adding: bin/jpegtran.exe (224 bytes security) (deflated 62%)
235
+ adding: bin/rdjpgcom.exe (224 bytes security) (deflated 70%)
236
+ adding: bin/wrjpgcom.exe (224 bytes security) (deflated 69%)
237
+ ++ zip /tmp/jpeg-dev_8-1_win32.zip lib/libjpeg.dll.a
238
+ adding: lib/libjpeg.dll.a (224 bytes security) (deflated 93%)
239
+ ++ zip -r -D /tmp/jpeg-dev_8-1_win32.zip include share
240
+ adding: include/jconfig.h (224 bytes security) (deflated 57%)
241
+ adding: include/jerror.h (224 bytes security) (deflated 72%)
242
+ adding: include/jmorecfg.h (224 bytes security) (deflated 62%)
243
+ adding: include/jpeglib.h (224 bytes security) (deflated 71%)
244
+ adding: share/man/man1/cjpeg.1 (224 bytes security) (deflated 58%)
245
+ adding: share/man/man1/djpeg.1 (224 bytes security) (deflated 59%)
246
+ adding: share/man/man1/jpegtran.1 (224 bytes security) (deflated 58%)
247
+ adding: share/man/man1/rdjpgcom.1 (224 bytes security) (deflated 48%)
248
+ adding: share/man/man1/wrjpgcom.1 (224 bytes security) (deflated 54%)
@@ -0,0 +1,44 @@
1
+ # This is a shell script that calls functions and scripts from
2
+ # tml@iki.fi's personal work environment. It is not expected to be
3
+ # usable unmodified by others, and is included only for reference.
4
+
5
+ MOD=jpeg
6
+ VER=8
7
+ REV=1
8
+ ARCH=win32
9
+
10
+ THIS=${MOD}_${VER}-${REV}_${ARCH}
11
+
12
+ RUNZIP=${MOD}_${VER}-${REV}_${ARCH}.zip
13
+ DEVZIP=${MOD}-dev_${VER}-${REV}_${ARCH}.zip
14
+
15
+ HEX=`echo $THIS | md5sum | cut -d' ' -f1`
16
+ TARGET=c:/devel/target/$HEX
17
+
18
+ usedev
19
+ usemsvs6
20
+
21
+ (
22
+
23
+ set -x
24
+
25
+ CC='gcc -mtune=pentium3 -mthreads' \
26
+ CFLAGS=-O2 \
27
+ ./configure \
28
+ --disable-static \
29
+ --prefix=$TARGET &&
30
+
31
+ make install &&
32
+
33
+ rm -f /tmp/$RUNZIP /tmp/$DEVZIP &&
34
+
35
+ cd /devel/target/$HEX &&
36
+ zip /tmp/$RUNZIP bin/libjpeg-8.dll &&
37
+ zip /tmp/$DEVZIP bin/*.exe &&
38
+ zip /tmp/$DEVZIP lib/*.dll.a &&
39
+ zip -r -D /tmp/$DEVZIP include share
40
+
41
+ ) 2>&1 | tee /devel/src/tml/packaging/$THIS.log
42
+
43
+ (cd /devel && zip /tmp/$DEVZIP src/tml/packaging/$THIS.{sh,log}) &&
44
+ manifestify /tmp/$RUNZIP /tmp/$DEVZIP
@@ -0,0 +1,1518 @@
1
+ +++ latest --arch=win32 glib libxml2
2
+ ++ DEPS='glib-2.20.4-1 libxml2-2.7.3-1'
3
+ +++ latest --arch=win32 proxy-libintl
4
+ ++ PROXY_LIBINTL=proxy-libintl-20080918
5
+ +++ latest --arch=win32 win-iconv
6
+ ++ WIN_ICONV=win-iconv-tml-20090213
7
+ ++ PKG_CONFIG_PATH=/dummy
8
+ ++ for D in '$DEPS'
9
+ ++ PATH='/devel/dist/win32/glib-2.20.4-1/bin:/opt/misc/bin:/opt/gnu/bin:/opt/gnuwin32/bin:/opt/freetype/bin:/opt/pthread/bin:/opt/mingw/bin:/opt/svn/bin:/opt/local/bin:/c/WINDOWS/Microsoft.NET/Framework/v2.0.50727:/opt/xemacs-21.4/XEmacs-21.4.19/i586-pc-win32:/opt/sysinternals/bin:/bin:/c/WINDOWS/system32:/c/WINDOWS:/c/Program Files/Novell/GroupWise:/c/WINDOWS/system32/WindowsPowerShell/v1.0:/c/Program Files/QuickTime/QTSystem/'
10
+ ++ '[' -d /devel/dist/win32/glib-2.20.4-1/lib/pkgconfig ']'
11
+ ++ PKG_CONFIG_PATH=/devel/dist/win32/glib-2.20.4-1/lib/pkgconfig:/dummy
12
+ ++ for D in '$DEPS'
13
+ ++ PATH='/devel/dist/win32/libxml2-2.7.3-1/bin:/devel/dist/win32/glib-2.20.4-1/bin:/opt/misc/bin:/opt/gnu/bin:/opt/gnuwin32/bin:/opt/freetype/bin:/opt/pthread/bin:/opt/mingw/bin:/opt/svn/bin:/opt/local/bin:/c/WINDOWS/Microsoft.NET/Framework/v2.0.50727:/opt/xemacs-21.4/XEmacs-21.4.19/i586-pc-win32:/opt/sysinternals/bin:/bin:/c/WINDOWS/system32:/c/WINDOWS:/c/Program Files/Novell/GroupWise:/c/WINDOWS/system32/WindowsPowerShell/v1.0:/c/Program Files/QuickTime/QTSystem/'
14
+ ++ '[' -d /devel/dist/win32/libxml2-2.7.3-1/lib/pkgconfig ']'
15
+ ++ PKG_CONFIG_PATH=/devel/dist/win32/libxml2-2.7.3-1/lib/pkgconfig:/devel/dist/win32/glib-2.20.4-1/lib/pkgconfig:/dummy
16
+ ++ sed -e 's/need_relink=yes/need_relink=no # no way --tml/'
17
+ ++ mv ltmain.temp ltmain.sh
18
+ ++ sed -e 's!file /!dont-want-to-use-file!'
19
+ ++ mv configure.temp configure
20
+ ++ CC='gcc -mtune=pentium3 -mthreads -mms-bitfields'
21
+ ++ CPPFLAGS='-I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include'
22
+ ++ LDFLAGS='-L/devel/dist/win32/proxy-libintl-20080918/lib -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base'
23
+ ++ CFLAGS=-O2
24
+ ++ ./configure --enable-debug=yes --disable-gtk-doc --disable-static --without-gnome --prefix=c:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc
25
+ checking for a BSD-compatible install... /opt/local/bin/install -c
26
+ checking whether build environment is sane... yes
27
+ checking for a thread-safe mkdir -p... /bin/mkdir -p
28
+ checking for gawk... gawk
29
+ checking whether make sets $(MAKE)... yes
30
+ checking whether to enable maintainer-specific portions of Makefiles... no
31
+ checking whether make sets $(MAKE)... (cached) yes
32
+ checking for gcc... gcc -mtune=pentium3 -mthreads -mms-bitfields
33
+ checking for C compiler default output file name... a.exe
34
+ checking whether the C compiler works... yes
35
+ checking whether we are cross compiling... no
36
+ checking for suffix of executables... .exe
37
+ checking for suffix of object files... o
38
+ checking whether we are using the GNU C compiler... yes
39
+ checking whether gcc -mtune=pentium3 -mthreads -mms-bitfields accepts -g... yes
40
+ checking for gcc -mtune=pentium3 -mthreads -mms-bitfields option to accept ISO C89... none needed
41
+ checking for style of include used by make... GNU
42
+ checking dependency style of gcc -mtune=pentium3 -mthreads -mms-bitfields... gcc3
43
+ checking for gcc... (cached) gcc -mtune=pentium3 -mthreads -mms-bitfields
44
+ checking whether we are using the GNU C compiler... (cached) yes
45
+ checking whether gcc -mtune=pentium3 -mthreads -mms-bitfields accepts -g... (cached) yes
46
+ checking for gcc -mtune=pentium3 -mthreads -mms-bitfields option to accept ISO C89... (cached) none needed
47
+ checking dependency style of gcc -mtune=pentium3 -mthreads -mms-bitfields... (cached) gcc3
48
+ checking for a BSD-compatible install... /opt/local/bin/install -c
49
+ checking how to run the C preprocessor... gcc -mtune=pentium3 -mthreads -mms-bitfields -E
50
+ checking for grep that handles long lines and -e... /opt/gnuwin32/bin/grep
51
+ checking for egrep... /opt/gnuwin32/bin/grep -E
52
+ checking for ANSI C header files... yes
53
+ checking build system type... i686-pc-mingw32
54
+ checking host system type... i686-pc-mingw32
55
+ checking for as... as
56
+ checking for dlltool... dlltool
57
+ checking for objdump... objdump
58
+ checking for a sed that does not truncate output... /bin/sed
59
+ checking for fgrep... /opt/gnuwin32/bin/grep -F
60
+ checking for ld used by gcc -mtune=pentium3 -mthreads -mms-bitfields... c:/opt/mingw/bin/../lib/gcc/mingw32/3.4.5/../../../../mingw32/bin/ld.exe
61
+ checking if the linker (c:/opt/mingw/bin/../lib/gcc/mingw32/3.4.5/../../../../mingw32/bin/ld.exe) is GNU ld... yes
62
+ checking for BSD- or MS-compatible name lister (nm)... /opt/mingw/bin/nm
63
+ checking the name lister (/opt/mingw/bin/nm) interface... BSD nm
64
+ checking whether ln -s works... yes
65
+ checking the maximum length of command line arguments... 8192
66
+ checking whether the shell understands some XSI constructs... yes
67
+ checking whether the shell understands "+="... yes
68
+ checking for c:/opt/mingw/bin/../lib/gcc/mingw32/3.4.5/../../../../mingw32/bin/ld.exe option to reload object files... -r
69
+ checking for objdump... (cached) objdump
70
+ checking how to recognize dependent libraries... file_magic file format pei*-i386(.*architecture: i386)?
71
+ checking for ar... ar
72
+ checking for strip... strip
73
+ checking for ranlib... ranlib
74
+ checking command to parse /opt/mingw/bin/nm output from gcc -mtune=pentium3 -mthreads -mms-bitfields object... ok
75
+ checking for sys/types.h... yes
76
+ checking for sys/stat.h... yes
77
+ checking for stdlib.h... yes
78
+ checking for string.h... yes
79
+ checking for memory.h... yes
80
+ checking for strings.h... yes
81
+ checking for inttypes.h... yes
82
+ checking for stdint.h... yes
83
+ checking for unistd.h... yes
84
+ checking for dlfcn.h... no
85
+ checking for objdir... .libs
86
+ checking if gcc -mtune=pentium3 -mthreads -mms-bitfields supports -fno-rtti -fno-exceptions... no
87
+ checking for gcc -mtune=pentium3 -mthreads -mms-bitfields option to produce PIC... -DDLL_EXPORT -DPIC
88
+ checking if gcc -mtune=pentium3 -mthreads -mms-bitfields PIC flag -DDLL_EXPORT -DPIC works... yes
89
+ checking if gcc -mtune=pentium3 -mthreads -mms-bitfields static flag -static works... yes
90
+ checking if gcc -mtune=pentium3 -mthreads -mms-bitfields supports -c -o file.o... yes
91
+ checking if gcc -mtune=pentium3 -mthreads -mms-bitfields supports -c -o file.o... (cached) yes
92
+ checking whether the gcc -mtune=pentium3 -mthreads -mms-bitfields linker (c:/opt/mingw/bin/../lib/gcc/mingw32/3.4.5/../../../../mingw32/bin/ld.exe) supports shared libraries... yes
93
+ checking whether -lc should be explicitly linked in... yes
94
+ checking dynamic linker characteristics... Win32 ld.exe
95
+ checking how to hardcode library paths into programs... immediate
96
+ checking whether stripping libraries is possible... yes
97
+ checking if libtool supports shared libraries... yes
98
+ checking whether to build shared libraries... yes
99
+ checking whether to build static libraries... no
100
+ checking for working alloca.h... no
101
+ checking for alloca... yes
102
+ checking pkg-config is at least version 0.16... yes
103
+ checking for GLIB - version >= 2.15.3... yes (version 2.20.4)
104
+ checking for XML... yes
105
+ checking for Win32... yes
106
+ checking for gmtime_r... no
107
+ checking for mmap... no
108
+ checking for socket... no
109
+ checking for socket in -lsocket... no
110
+ checking for gethostbyname... no
111
+ checking for gethostbyname in -lnsl... no
112
+ checking for inet_pton... no
113
+ checking for inet_ntop... no
114
+ checking for inet_aton... no
115
+ checking for getaddrinfo... no
116
+ checking for getnameinfo... no
117
+ checking IPv6 support... no
118
+ checking for LIBGNUTLS... no
119
+ configure: WARNING: Disabling SSL support
120
+ checking whether to build libsoup-gnome... no
121
+ checking whether gcc understands -Wmissing-include-dirs... no
122
+ checking whether gcc understands -Wundef... yes
123
+ configure: checking for programs needed for regression tests
124
+ checking for httpd2... no
125
+ checking for httpd... no
126
+ checking for curl... no
127
+ configure: Some regression tests will not be run due to missing packages: apache curl
128
+ configure: creating ./config.status
129
+ config.status: creating libsoup-2.4.pc
130
+ config.status: creating libsoup-gnome-2.4.pc
131
+ config.status: creating Makefile
132
+ config.status: creating libsoup-zip
133
+ config.status: creating libsoup/Makefile
134
+ config.status: creating tests/Makefile
135
+ config.status: creating tests/httpd.conf
136
+ config.status: creating docs/Makefile
137
+ config.status: creating docs/reference/Makefile
138
+ config.status: creating config.h
139
+ config.status: executing depfiles commands
140
+ config.status: executing libtool commands
141
+ ++ libtoolcacheize
142
+ libtool-cache set up successfully
143
+ ++ PATH='/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/bin:.libs:/devel/dist/win32/libxml2-2.7.3-1/bin:/devel/dist/win32/glib-2.20.4-1/bin:/opt/misc/bin:/opt/gnu/bin:/opt/gnuwin32/bin:/opt/freetype/bin:/opt/pthread/bin:/opt/mingw/bin:/opt/svn/bin:/opt/local/bin:/c/WINDOWS/Microsoft.NET/Framework/v2.0.50727:/opt/xemacs-21.4/XEmacs-21.4.19/i586-pc-win32:/opt/sysinternals/bin:/bin:/c/WINDOWS/system32:/c/WINDOWS:/c/Program Files/Novell/GroupWise:/c/WINDOWS/system32/WindowsPowerShell/v1.0:/c/Program Files/QuickTime/QTSystem/'
144
+ ++ make install
145
+ Making install in libsoup
146
+ make[1]: Entering directory `/devel/src/gnome/libsoup/2.26.3-1_win32/libsoup'
147
+ make install-am
148
+ make[2]: Entering directory `/devel/src/gnome/libsoup/2.26.3-1_win32/libsoup'
149
+ /bin/sh ../libtool --tag=CC --mode=compile gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-marshal.lo -MD -MP -MF .deps/soup-marshal.Tpo -c -o soup-marshal.lo soup-marshal.c
150
+ libtool-cache: not cached, running libtool...
151
+ libtool-cache: libtool output: gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-marshal.lo -MD -MP -MF .deps/soup-marshal.Tpo -c soup-marshal.c -DDLL_EXPORT -DPIC -o .libs/soup-marshal.o
152
+ In file included from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gthread.h:36,
153
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gasyncqueue.h:34,
154
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib.h:34,
155
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/gobject/gtype.h:26,
156
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/gobject/gboxed.h:26,
157
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib-object.h:25,
158
+ from soup-marshal.h:5,
159
+ from soup-marshal.c:1:
160
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:137: warning: function declaration isn't a prototype
161
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h: In function `_g_win32_get_system_data_dirs':
162
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:148: warning: function declaration isn't a prototype
163
+ mv -f .deps/soup-marshal.Tpo .deps/soup-marshal.Plo
164
+ /bin/sh ../libtool --tag=CC --mode=compile gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-enum-types.lo -MD -MP -MF .deps/soup-enum-types.Tpo -c -o soup-enum-types.lo soup-enum-types.c
165
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-enum-types.lo -MD -MP -MF .deps/soup-enum-types.Tpo -c soup-enum-types.c -DDLL_EXPORT -DPIC -o .libs/soup-enum-types.o&&echo -e "# Generated by libtool cache\npic_object='.libs/soup-enum-types.o'\nnon_pic_object=none\n" > soup-enum-types.lo
166
+
167
+ In file included from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gthread.h:36,
168
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gasyncqueue.h:34,
169
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib.h:34,
170
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/gobject/gtype.h:26,
171
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/gobject/gboxed.h:26,
172
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib-object.h:25,
173
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/gio/gioenums.h:30,
174
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/gio/giotypes.h:30,
175
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/gio/gio.h:28,
176
+ from ../libsoup/soup-address.h:11,
177
+ from soup.h:13,
178
+ from soup-enum-types.c:4:
179
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:137: warning: function declaration isn't a prototype
180
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h: In function `_g_win32_get_system_data_dirs':
181
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:148: warning: function declaration isn't a prototype
182
+ mv -f .deps/soup-enum-types.Tpo .deps/soup-enum-types.Plo
183
+ /bin/sh ../libtool --tag=CC --mode=compile gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-address.lo -MD -MP -MF .deps/soup-address.Tpo -c -o soup-address.lo soup-address.c
184
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-address.lo -MD -MP -MF .deps/soup-address.Tpo -c soup-address.c -DDLL_EXPORT -DPIC -o .libs/soup-address.o&&echo -e "# Generated by libtool cache\npic_object='.libs/soup-address.o'\nnon_pic_object=none\n" > soup-address.lo
185
+
186
+ In file included from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gthread.h:36,
187
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gasyncqueue.h:34,
188
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib.h:34,
189
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/gobject/gtype.h:26,
190
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/gobject/gboxed.h:26,
191
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib-object.h:25,
192
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/gio/gioenums.h:30,
193
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/gio/giotypes.h:30,
194
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/gio/gio.h:28,
195
+ from soup-address.h:11,
196
+ from soup-address.c:19:
197
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:137: warning: function declaration isn't a prototype
198
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h: In function `_g_win32_get_system_data_dirs':
199
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:148: warning: function declaration isn't a prototype
200
+ mv -f .deps/soup-address.Tpo .deps/soup-address.Plo
201
+ /bin/sh ../libtool --tag=CC --mode=compile gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-auth.lo -MD -MP -MF .deps/soup-auth.Tpo -c -o soup-auth.lo soup-auth.c
202
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-auth.lo -MD -MP -MF .deps/soup-auth.Tpo -c soup-auth.c -DDLL_EXPORT -DPIC -o .libs/soup-auth.o&&echo -e "# Generated by libtool cache\npic_object='.libs/soup-auth.o'\nnon_pic_object=none\n" > soup-auth.lo
203
+
204
+ In file included from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gthread.h:36,
205
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gasyncqueue.h:34,
206
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib.h:34,
207
+ from ../libsoup/soup-types.h:9,
208
+ from soup-auth.h:9,
209
+ from soup-auth.c:14:
210
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:137: warning: function declaration isn't a prototype
211
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h: In function `_g_win32_get_system_data_dirs':
212
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:148: warning: function declaration isn't a prototype
213
+ mv -f .deps/soup-auth.Tpo .deps/soup-auth.Plo
214
+ /bin/sh ../libtool --tag=CC --mode=compile gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-auth-basic.lo -MD -MP -MF .deps/soup-auth-basic.Tpo -c -o soup-auth-basic.lo soup-auth-basic.c
215
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-auth-basic.lo -MD -MP -MF .deps/soup-auth-basic.Tpo -c soup-auth-basic.c -DDLL_EXPORT -DPIC -o .libs/soup-auth-basic.o&&echo -e "# Generated by libtool cache\npic_object='.libs/soup-auth-basic.o'\nnon_pic_object=none\n" > soup-auth-basic.lo
216
+
217
+ In file included from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gthread.h:36,
218
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gasyncqueue.h:34,
219
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib.h:34,
220
+ from ../libsoup/soup-types.h:9,
221
+ from soup-auth.h:9,
222
+ from soup-auth-basic.h:9,
223
+ from soup-auth-basic.c:14:
224
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:137: warning: function declaration isn't a prototype
225
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h: In function `_g_win32_get_system_data_dirs':
226
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:148: warning: function declaration isn't a prototype
227
+ mv -f .deps/soup-auth-basic.Tpo .deps/soup-auth-basic.Plo
228
+ /bin/sh ../libtool --tag=CC --mode=compile gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-auth-digest.lo -MD -MP -MF .deps/soup-auth-digest.Tpo -c -o soup-auth-digest.lo soup-auth-digest.c
229
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-auth-digest.lo -MD -MP -MF .deps/soup-auth-digest.Tpo -c soup-auth-digest.c -DDLL_EXPORT -DPIC -o .libs/soup-auth-digest.o&&echo -e "# Generated by libtool cache\npic_object='.libs/soup-auth-digest.o'\nnon_pic_object=none\n" > soup-auth-digest.lo
230
+
231
+ In file included from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gthread.h:36,
232
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gasyncqueue.h:34,
233
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib.h:34,
234
+ from ../libsoup/soup-types.h:9,
235
+ from soup-auth.h:9,
236
+ from soup-auth-digest.h:9,
237
+ from soup-auth-digest.c:17:
238
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:137: warning: function declaration isn't a prototype
239
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h: In function `_g_win32_get_system_data_dirs':
240
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:148: warning: function declaration isn't a prototype
241
+ mv -f .deps/soup-auth-digest.Tpo .deps/soup-auth-digest.Plo
242
+ /bin/sh ../libtool --tag=CC --mode=compile gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-auth-ntlm.lo -MD -MP -MF .deps/soup-auth-ntlm.Tpo -c -o soup-auth-ntlm.lo soup-auth-ntlm.c
243
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-auth-ntlm.lo -MD -MP -MF .deps/soup-auth-ntlm.Tpo -c soup-auth-ntlm.c -DDLL_EXPORT -DPIC -o .libs/soup-auth-ntlm.o&&echo -e "# Generated by libtool cache\npic_object='.libs/soup-auth-ntlm.o'\nnon_pic_object=none\n" > soup-auth-ntlm.lo
244
+
245
+ In file included from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gthread.h:36,
246
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gasyncqueue.h:34,
247
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib.h:34,
248
+ from ../libsoup/soup-types.h:9,
249
+ from soup-auth.h:9,
250
+ from soup-auth-ntlm.h:9,
251
+ from soup-auth-ntlm.c:14:
252
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:137: warning: function declaration isn't a prototype
253
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h: In function `_g_win32_get_system_data_dirs':
254
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:148: warning: function declaration isn't a prototype
255
+ mv -f .deps/soup-auth-ntlm.Tpo .deps/soup-auth-ntlm.Plo
256
+ /bin/sh ../libtool --tag=CC --mode=compile gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-auth-domain.lo -MD -MP -MF .deps/soup-auth-domain.Tpo -c -o soup-auth-domain.lo soup-auth-domain.c
257
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-auth-domain.lo -MD -MP -MF .deps/soup-auth-domain.Tpo -c soup-auth-domain.c -DDLL_EXPORT -DPIC -o .libs/soup-auth-domain.o&&echo -e "# Generated by libtool cache\npic_object='.libs/soup-auth-domain.o'\nnon_pic_object=none\n" > soup-auth-domain.lo
258
+
259
+ In file included from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gthread.h:36,
260
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gasyncqueue.h:34,
261
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib.h:34,
262
+ from ../libsoup/soup-types.h:9,
263
+ from soup-auth-domain.h:9,
264
+ from soup-auth-domain.c:14:
265
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:137: warning: function declaration isn't a prototype
266
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h: In function `_g_win32_get_system_data_dirs':
267
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:148: warning: function declaration isn't a prototype
268
+ mv -f .deps/soup-auth-domain.Tpo .deps/soup-auth-domain.Plo
269
+ /bin/sh ../libtool --tag=CC --mode=compile gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-auth-domain-basic.lo -MD -MP -MF .deps/soup-auth-domain-basic.Tpo -c -o soup-auth-domain-basic.lo soup-auth-domain-basic.c
270
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-auth-domain-basic.lo -MD -MP -MF .deps/soup-auth-domain-basic.Tpo -c soup-auth-domain-basic.c -DDLL_EXPORT -DPIC -o .libs/soup-auth-domain-basic.o&&echo -e "# Generated by libtool cache\npic_object='.libs/soup-auth-domain-basic.o'\nnon_pic_object=none\n" > soup-auth-domain-basic.lo
271
+
272
+ In file included from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gthread.h:36,
273
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gasyncqueue.h:34,
274
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib.h:34,
275
+ from ../libsoup/soup-types.h:9,
276
+ from ../libsoup/soup-auth-domain.h:9,
277
+ from soup-auth-domain-basic.h:9,
278
+ from soup-auth-domain-basic.c:14:
279
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:137: warning: function declaration isn't a prototype
280
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h: In function `_g_win32_get_system_data_dirs':
281
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:148: warning: function declaration isn't a prototype
282
+ mv -f .deps/soup-auth-domain-basic.Tpo .deps/soup-auth-domain-basic.Plo
283
+ /bin/sh ../libtool --tag=CC --mode=compile gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-auth-domain-digest.lo -MD -MP -MF .deps/soup-auth-domain-digest.Tpo -c -o soup-auth-domain-digest.lo soup-auth-domain-digest.c
284
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-auth-domain-digest.lo -MD -MP -MF .deps/soup-auth-domain-digest.Tpo -c soup-auth-domain-digest.c -DDLL_EXPORT -DPIC -o .libs/soup-auth-domain-digest.o&&echo -e "# Generated by libtool cache\npic_object='.libs/soup-auth-domain-digest.o'\nnon_pic_object=none\n" > soup-auth-domain-digest.lo
285
+
286
+ In file included from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gthread.h:36,
287
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gasyncqueue.h:34,
288
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib.h:34,
289
+ from ../libsoup/soup-types.h:9,
290
+ from ../libsoup/soup-auth-domain.h:9,
291
+ from soup-auth-domain-digest.h:9,
292
+ from soup-auth-domain-digest.c:15:
293
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:137: warning: function declaration isn't a prototype
294
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h: In function `_g_win32_get_system_data_dirs':
295
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:148: warning: function declaration isn't a prototype
296
+ mv -f .deps/soup-auth-domain-digest.Tpo .deps/soup-auth-domain-digest.Plo
297
+ /bin/sh ../libtool --tag=CC --mode=compile gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-auth-manager.lo -MD -MP -MF .deps/soup-auth-manager.Tpo -c -o soup-auth-manager.lo soup-auth-manager.c
298
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-auth-manager.lo -MD -MP -MF .deps/soup-auth-manager.Tpo -c soup-auth-manager.c -DDLL_EXPORT -DPIC -o .libs/soup-auth-manager.o&&echo -e "# Generated by libtool cache\npic_object='.libs/soup-auth-manager.o'\nnon_pic_object=none\n" > soup-auth-manager.lo
299
+
300
+ In file included from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gthread.h:36,
301
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gasyncqueue.h:34,
302
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib.h:34,
303
+ from soup-types.h:9,
304
+ from soup-auth-manager.h:9,
305
+ from soup-auth-manager.c:14:
306
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:137: warning: function declaration isn't a prototype
307
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h: In function `_g_win32_get_system_data_dirs':
308
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:148: warning: function declaration isn't a prototype
309
+ mv -f .deps/soup-auth-manager.Tpo .deps/soup-auth-manager.Plo
310
+ /bin/sh ../libtool --tag=CC --mode=compile gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-auth-manager-ntlm.lo -MD -MP -MF .deps/soup-auth-manager-ntlm.Tpo -c -o soup-auth-manager-ntlm.lo soup-auth-manager-ntlm.c
311
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-auth-manager-ntlm.lo -MD -MP -MF .deps/soup-auth-manager-ntlm.Tpo -c soup-auth-manager-ntlm.c -DDLL_EXPORT -DPIC -o .libs/soup-auth-manager-ntlm.o&&echo -e "# Generated by libtool cache\npic_object='.libs/soup-auth-manager-ntlm.o'\nnon_pic_object=none\n" > soup-auth-manager-ntlm.lo
312
+
313
+ In file included from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gthread.h:36,
314
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gasyncqueue.h:34,
315
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib.h:34,
316
+ from soup-types.h:9,
317
+ from soup-auth-manager.h:9,
318
+ from soup-auth-manager-ntlm.h:9,
319
+ from soup-auth-manager-ntlm.c:16:
320
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:137: warning: function declaration isn't a prototype
321
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h: In function `_g_win32_get_system_data_dirs':
322
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:148: warning: function declaration isn't a prototype
323
+ mv -f .deps/soup-auth-manager-ntlm.Tpo .deps/soup-auth-manager-ntlm.Plo
324
+ /bin/sh ../libtool --tag=CC --mode=compile gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-connection.lo -MD -MP -MF .deps/soup-connection.Tpo -c -o soup-connection.lo soup-connection.c
325
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-connection.lo -MD -MP -MF .deps/soup-connection.Tpo -c soup-connection.c -DDLL_EXPORT -DPIC -o .libs/soup-connection.o&&echo -e "# Generated by libtool cache\npic_object='.libs/soup-connection.o'\nnon_pic_object=none\n" > soup-connection.lo
326
+
327
+ In file included from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gthread.h:36,
328
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gasyncqueue.h:34,
329
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib.h:34,
330
+ from soup-connection.c:15:
331
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:137: warning: function declaration isn't a prototype
332
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h: In function `_g_win32_get_system_data_dirs':
333
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:148: warning: function declaration isn't a prototype
334
+ mv -f .deps/soup-connection.Tpo .deps/soup-connection.Plo
335
+ /bin/sh ../libtool --tag=CC --mode=compile gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-cookie.lo -MD -MP -MF .deps/soup-cookie.Tpo -c -o soup-cookie.lo soup-cookie.c
336
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-cookie.lo -MD -MP -MF .deps/soup-cookie.Tpo -c soup-cookie.c -DDLL_EXPORT -DPIC -o .libs/soup-cookie.o&&echo -e "# Generated by libtool cache\npic_object='.libs/soup-cookie.o'\nnon_pic_object=none\n" > soup-cookie.lo
337
+
338
+ In file included from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gthread.h:36,
339
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gasyncqueue.h:34,
340
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib.h:34,
341
+ from ../libsoup/soup-types.h:9,
342
+ from soup-cookie.h:9,
343
+ from soup-cookie.c:15:
344
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:137: warning: function declaration isn't a prototype
345
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h: In function `_g_win32_get_system_data_dirs':
346
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:148: warning: function declaration isn't a prototype
347
+ mv -f .deps/soup-cookie.Tpo .deps/soup-cookie.Plo
348
+ /bin/sh ../libtool --tag=CC --mode=compile gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-cookie-jar.lo -MD -MP -MF .deps/soup-cookie-jar.Tpo -c -o soup-cookie-jar.lo soup-cookie-jar.c
349
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-cookie-jar.lo -MD -MP -MF .deps/soup-cookie-jar.Tpo -c soup-cookie-jar.c -DDLL_EXPORT -DPIC -o .libs/soup-cookie-jar.o&&echo -e "# Generated by libtool cache\npic_object='.libs/soup-cookie-jar.o'\nnon_pic_object=none\n" > soup-cookie-jar.lo
350
+
351
+ In file included from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gthread.h:36,
352
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gasyncqueue.h:34,
353
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib.h:34,
354
+ from ../libsoup/soup-types.h:9,
355
+ from soup-cookie.h:9,
356
+ from soup-cookie-jar.c:15:
357
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:137: warning: function declaration isn't a prototype
358
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h: In function `_g_win32_get_system_data_dirs':
359
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:148: warning: function declaration isn't a prototype
360
+ mv -f .deps/soup-cookie-jar.Tpo .deps/soup-cookie-jar.Plo
361
+ /bin/sh ../libtool --tag=CC --mode=compile gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-cookie-jar-text.lo -MD -MP -MF .deps/soup-cookie-jar-text.Tpo -c -o soup-cookie-jar-text.lo soup-cookie-jar-text.c
362
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-cookie-jar-text.lo -MD -MP -MF .deps/soup-cookie-jar-text.Tpo -c soup-cookie-jar-text.c -DDLL_EXPORT -DPIC -o .libs/soup-cookie-jar-text.o&&echo -e "# Generated by libtool cache\npic_object='.libs/soup-cookie-jar-text.o'\nnon_pic_object=none\n" > soup-cookie-jar-text.lo
363
+
364
+ In file included from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gthread.h:36,
365
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gasyncqueue.h:34,
366
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib.h:34,
367
+ from ../libsoup/soup-types.h:9,
368
+ from ../libsoup/soup-cookie-jar.h:9,
369
+ from soup-cookie-jar-text.h:9,
370
+ from soup-cookie-jar-text.c:16:
371
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:137: warning: function declaration isn't a prototype
372
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h: In function `_g_win32_get_system_data_dirs':
373
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:148: warning: function declaration isn't a prototype
374
+ mv -f .deps/soup-cookie-jar-text.Tpo .deps/soup-cookie-jar-text.Plo
375
+ /bin/sh ../libtool --tag=CC --mode=compile gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-date.lo -MD -MP -MF .deps/soup-date.Tpo -c -o soup-date.lo soup-date.c
376
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-date.lo -MD -MP -MF .deps/soup-date.Tpo -c soup-date.c -DDLL_EXPORT -DPIC -o .libs/soup-date.o&&echo -e "# Generated by libtool cache\npic_object='.libs/soup-date.o'\nnon_pic_object=none\n" > soup-date.lo
377
+
378
+ In file included from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gthread.h:36,
379
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gasyncqueue.h:34,
380
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib.h:34,
381
+ from soup-date.c:15:
382
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:137: warning: function declaration isn't a prototype
383
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h: In function `_g_win32_get_system_data_dirs':
384
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:148: warning: function declaration isn't a prototype
385
+ mv -f .deps/soup-date.Tpo .deps/soup-date.Plo
386
+ /bin/sh ../libtool --tag=CC --mode=compile gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-dns.lo -MD -MP -MF .deps/soup-dns.Tpo -c -o soup-dns.lo soup-dns.c
387
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-dns.lo -MD -MP -MF .deps/soup-dns.Tpo -c soup-dns.c -DDLL_EXPORT -DPIC -o .libs/soup-dns.o&&echo -e "# Generated by libtool cache\npic_object='.libs/soup-dns.o'\nnon_pic_object=none\n" > soup-dns.lo
388
+
389
+ In file included from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gthread.h:36,
390
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gasyncqueue.h:34,
391
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib.h:34,
392
+ from soup-dns.h:9,
393
+ from soup-dns.c:20:
394
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:137: warning: function declaration isn't a prototype
395
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h: In function `_g_win32_get_system_data_dirs':
396
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:148: warning: function declaration isn't a prototype
397
+ soup-dns.c: In function `soup_dns_is_ip_address':
398
+ soup-dns.c:309: warning: unused variable `sin'
399
+ soup-dns.c: In function `resolve_name':
400
+ soup-dns.c:409: warning: passing arg 1 of `gethostbyaddr' from incompatible pointer type
401
+ soup-dns.c: At top level:
402
+ soup-dns.c:45: warning: 'inet_pton' defined but not used
403
+ soup-dns.c:82: warning: 'inet_ntop' defined but not used
404
+ mv -f .deps/soup-dns.Tpo .deps/soup-dns.Plo
405
+ /bin/sh ../libtool --tag=CC --mode=compile gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-form.lo -MD -MP -MF .deps/soup-form.Tpo -c -o soup-form.lo soup-form.c
406
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-form.lo -MD -MP -MF .deps/soup-form.Tpo -c soup-form.c -DDLL_EXPORT -DPIC -o .libs/soup-form.o&&echo -e "# Generated by libtool cache\npic_object='.libs/soup-form.o'\nnon_pic_object=none\n" > soup-form.lo
407
+
408
+ In file included from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gthread.h:36,
409
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gasyncqueue.h:34,
410
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib.h:34,
411
+ from ../libsoup/soup-types.h:9,
412
+ from soup-form.h:9,
413
+ from soup-form.c:14:
414
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:137: warning: function declaration isn't a prototype
415
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h: In function `_g_win32_get_system_data_dirs':
416
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:148: warning: function declaration isn't a prototype
417
+ mv -f .deps/soup-form.Tpo .deps/soup-form.Plo
418
+ /bin/sh ../libtool --tag=CC --mode=compile gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-gnutls.lo -MD -MP -MF .deps/soup-gnutls.Tpo -c -o soup-gnutls.lo soup-gnutls.c
419
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-gnutls.lo -MD -MP -MF .deps/soup-gnutls.Tpo -c soup-gnutls.c -DDLL_EXPORT -DPIC -o .libs/soup-gnutls.o&&echo -e "# Generated by libtool cache\npic_object='.libs/soup-gnutls.o'\nnon_pic_object=none\n" > soup-gnutls.lo
420
+
421
+ mv -f .deps/soup-gnutls.Tpo .deps/soup-gnutls.Plo
422
+ /bin/sh ../libtool --tag=CC --mode=compile gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-headers.lo -MD -MP -MF .deps/soup-headers.Tpo -c -o soup-headers.lo soup-headers.c
423
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-headers.lo -MD -MP -MF .deps/soup-headers.Tpo -c soup-headers.c -DDLL_EXPORT -DPIC -o .libs/soup-headers.o&&echo -e "# Generated by libtool cache\npic_object='.libs/soup-headers.o'\nnon_pic_object=none\n" > soup-headers.lo
424
+
425
+ In file included from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gthread.h:36,
426
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gasyncqueue.h:34,
427
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib.h:34,
428
+ from soup-headers.h:9,
429
+ from soup-headers.c:13:
430
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:137: warning: function declaration isn't a prototype
431
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h: In function `_g_win32_get_system_data_dirs':
432
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:148: warning: function declaration isn't a prototype
433
+ mv -f .deps/soup-headers.Tpo .deps/soup-headers.Plo
434
+ /bin/sh ../libtool --tag=CC --mode=compile gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-logger.lo -MD -MP -MF .deps/soup-logger.Tpo -c -o soup-logger.lo soup-logger.c
435
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-logger.lo -MD -MP -MF .deps/soup-logger.Tpo -c soup-logger.c -DDLL_EXPORT -DPIC -o .libs/soup-logger.o&&echo -e "# Generated by libtool cache\npic_object='.libs/soup-logger.o'\nnon_pic_object=none\n" > soup-logger.lo
436
+
437
+ In file included from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gthread.h:36,
438
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gasyncqueue.h:34,
439
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib.h:34,
440
+ from ../libsoup/soup-types.h:9,
441
+ from soup-logger.h:9,
442
+ from soup-logger.c:16:
443
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:137: warning: function declaration isn't a prototype
444
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h: In function `_g_win32_get_system_data_dirs':
445
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:148: warning: function declaration isn't a prototype
446
+ mv -f .deps/soup-logger.Tpo .deps/soup-logger.Plo
447
+ /bin/sh ../libtool --tag=CC --mode=compile gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-message.lo -MD -MP -MF .deps/soup-message.Tpo -c -o soup-message.lo soup-message.c
448
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-message.lo -MD -MP -MF .deps/soup-message.Tpo -c soup-message.c -DDLL_EXPORT -DPIC -o .libs/soup-message.o&&echo -e "# Generated by libtool cache\npic_object='.libs/soup-message.o'\nnon_pic_object=none\n" > soup-message.lo
449
+
450
+ In file included from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gthread.h:36,
451
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gasyncqueue.h:34,
452
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib.h:34,
453
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/gobject/gtype.h:26,
454
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/gobject/gboxed.h:26,
455
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib-object.h:25,
456
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/gio/gioenums.h:30,
457
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/gio/giotypes.h:30,
458
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/gio/gio.h:28,
459
+ from soup-address.h:11,
460
+ from soup-message.c:11:
461
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:137: warning: function declaration isn't a prototype
462
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h: In function `_g_win32_get_system_data_dirs':
463
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:148: warning: function declaration isn't a prototype
464
+ mv -f .deps/soup-message.Tpo .deps/soup-message.Plo
465
+ /bin/sh ../libtool --tag=CC --mode=compile gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-message-body.lo -MD -MP -MF .deps/soup-message-body.Tpo -c -o soup-message-body.lo soup-message-body.c
466
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-message-body.lo -MD -MP -MF .deps/soup-message-body.Tpo -c soup-message-body.c -DDLL_EXPORT -DPIC -o .libs/soup-message-body.o&&echo -e "# Generated by libtool cache\npic_object='.libs/soup-message-body.o'\nnon_pic_object=none\n" > soup-message-body.lo
467
+
468
+ In file included from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gthread.h:36,
469
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gasyncqueue.h:34,
470
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib.h:34,
471
+ from ../libsoup/soup-types.h:9,
472
+ from soup-message-body.h:9,
473
+ from soup-message-body.c:10:
474
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:137: warning: function declaration isn't a prototype
475
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h: In function `_g_win32_get_system_data_dirs':
476
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:148: warning: function declaration isn't a prototype
477
+ mv -f .deps/soup-message-body.Tpo .deps/soup-message-body.Plo
478
+ /bin/sh ../libtool --tag=CC --mode=compile gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-message-client-io.lo -MD -MP -MF .deps/soup-message-client-io.Tpo -c -o soup-message-client-io.lo soup-message-client-io.c
479
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-message-client-io.lo -MD -MP -MF .deps/soup-message-client-io.Tpo -c soup-message-client-io.c -DDLL_EXPORT -DPIC -o .libs/soup-message-client-io.o&&echo -e "# Generated by libtool cache\npic_object='.libs/soup-message-client-io.o'\nnon_pic_object=none\n" > soup-message-client-io.lo
480
+
481
+ In file included from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gthread.h:36,
482
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gasyncqueue.h:34,
483
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib.h:34,
484
+ from ../libsoup/soup-types.h:9,
485
+ from soup-message.h:9,
486
+ from soup-message-private.h:9,
487
+ from soup-message-client-io.c:15:
488
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:137: warning: function declaration isn't a prototype
489
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h: In function `_g_win32_get_system_data_dirs':
490
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:148: warning: function declaration isn't a prototype
491
+ mv -f .deps/soup-message-client-io.Tpo .deps/soup-message-client-io.Plo
492
+ /bin/sh ../libtool --tag=CC --mode=compile gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-message-headers.lo -MD -MP -MF .deps/soup-message-headers.Tpo -c -o soup-message-headers.lo soup-message-headers.c
493
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-message-headers.lo -MD -MP -MF .deps/soup-message-headers.Tpo -c soup-message-headers.c -DDLL_EXPORT -DPIC -o .libs/soup-message-headers.o&&echo -e "# Generated by libtool cache\npic_object='.libs/soup-message-headers.o'\nnon_pic_object=none\n" > soup-message-headers.lo
494
+
495
+ In file included from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gthread.h:36,
496
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gasyncqueue.h:34,
497
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib.h:34,
498
+ from ../libsoup/soup-types.h:9,
499
+ from soup-message-headers.h:9,
500
+ from soup-message-headers.c:11:
501
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:137: warning: function declaration isn't a prototype
502
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h: In function `_g_win32_get_system_data_dirs':
503
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:148: warning: function declaration isn't a prototype
504
+ mv -f .deps/soup-message-headers.Tpo .deps/soup-message-headers.Plo
505
+ /bin/sh ../libtool --tag=CC --mode=compile gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-message-io.lo -MD -MP -MF .deps/soup-message-io.Tpo -c -o soup-message-io.lo soup-message-io.c
506
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-message-io.lo -MD -MP -MF .deps/soup-message-io.Tpo -c soup-message-io.c -DDLL_EXPORT -DPIC -o .libs/soup-message-io.o&&echo -e "# Generated by libtool cache\npic_object='.libs/soup-message-io.o'\nnon_pic_object=none\n" > soup-message-io.lo
507
+
508
+ In file included from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gthread.h:36,
509
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gasyncqueue.h:34,
510
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib.h:34,
511
+ from soup-types.h:9,
512
+ from soup-connection.h:11,
513
+ from soup-message-io.c:15:
514
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:137: warning: function declaration isn't a prototype
515
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h: In function `_g_win32_get_system_data_dirs':
516
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:148: warning: function declaration isn't a prototype
517
+ mv -f .deps/soup-message-io.Tpo .deps/soup-message-io.Plo
518
+ /bin/sh ../libtool --tag=CC --mode=compile gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-message-queue.lo -MD -MP -MF .deps/soup-message-queue.Tpo -c -o soup-message-queue.lo soup-message-queue.c
519
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-message-queue.lo -MD -MP -MF .deps/soup-message-queue.Tpo -c soup-message-queue.c -DDLL_EXPORT -DPIC -o .libs/soup-message-queue.o&&echo -e "# Generated by libtool cache\npic_object='.libs/soup-message-queue.o'\nnon_pic_object=none\n" > soup-message-queue.lo
520
+
521
+ In file included from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gthread.h:36,
522
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gasyncqueue.h:34,
523
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib.h:34,
524
+ from soup-message-queue.h:10,
525
+ from soup-message-queue.c:13:
526
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:137: warning: function declaration isn't a prototype
527
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h: In function `_g_win32_get_system_data_dirs':
528
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:148: warning: function declaration isn't a prototype
529
+ mv -f .deps/soup-message-queue.Tpo .deps/soup-message-queue.Plo
530
+ /bin/sh ../libtool --tag=CC --mode=compile gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-message-server-io.lo -MD -MP -MF .deps/soup-message-server-io.Tpo -c -o soup-message-server-io.lo soup-message-server-io.c
531
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-message-server-io.lo -MD -MP -MF .deps/soup-message-server-io.Tpo -c soup-message-server-io.c -DDLL_EXPORT -DPIC -o .libs/soup-message-server-io.o&&echo -e "# Generated by libtool cache\npic_object='.libs/soup-message-server-io.o'\nnon_pic_object=none\n" > soup-message-server-io.lo
532
+
533
+ In file included from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gthread.h:36,
534
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gasyncqueue.h:34,
535
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib.h:34,
536
+ from ../libsoup/soup-types.h:9,
537
+ from soup-message.h:9,
538
+ from soup-message-private.h:9,
539
+ from soup-message-server-io.c:15:
540
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:137: warning: function declaration isn't a prototype
541
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h: In function `_g_win32_get_system_data_dirs':
542
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:148: warning: function declaration isn't a prototype
543
+ mv -f .deps/soup-message-server-io.Tpo .deps/soup-message-server-io.Plo
544
+ /bin/sh ../libtool --tag=CC --mode=compile gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-method.lo -MD -MP -MF .deps/soup-method.Tpo -c -o soup-method.lo soup-method.c
545
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-method.lo -MD -MP -MF .deps/soup-method.Tpo -c soup-method.c -DDLL_EXPORT -DPIC -o .libs/soup-method.o&&echo -e "# Generated by libtool cache\npic_object='.libs/soup-method.o'\nnon_pic_object=none\n" > soup-method.lo
546
+
547
+ In file included from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gthread.h:36,
548
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gasyncqueue.h:34,
549
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib.h:34,
550
+ from ../libsoup/soup-types.h:9,
551
+ from soup-method.h:9,
552
+ from soup-method.c:12:
553
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:137: warning: function declaration isn't a prototype
554
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h: In function `_g_win32_get_system_data_dirs':
555
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:148: warning: function declaration isn't a prototype
556
+ mv -f .deps/soup-method.Tpo .deps/soup-method.Plo
557
+ /bin/sh ../libtool --tag=CC --mode=compile gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-misc.lo -MD -MP -MF .deps/soup-misc.Tpo -c -o soup-misc.lo soup-misc.c
558
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-misc.lo -MD -MP -MF .deps/soup-misc.Tpo -c soup-misc.c -DDLL_EXPORT -DPIC -o .libs/soup-misc.o&&echo -e "# Generated by libtool cache\npic_object='.libs/soup-misc.o'\nnon_pic_object=none\n" > soup-misc.lo
559
+
560
+ In file included from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gthread.h:36,
561
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gasyncqueue.h:34,
562
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib.h:34,
563
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/gobject/gtype.h:26,
564
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/gobject/gboxed.h:26,
565
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib-object.h:25,
566
+ from soup-misc.h:9,
567
+ from soup-misc.c:11:
568
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:137: warning: function declaration isn't a prototype
569
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h: In function `_g_win32_get_system_data_dirs':
570
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:148: warning: function declaration isn't a prototype
571
+ mv -f .deps/soup-misc.Tpo .deps/soup-misc.Plo
572
+ /bin/sh ../libtool --tag=CC --mode=compile gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-multipart.lo -MD -MP -MF .deps/soup-multipart.Tpo -c -o soup-multipart.lo soup-multipart.c
573
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-multipart.lo -MD -MP -MF .deps/soup-multipart.Tpo -c soup-multipart.c -DDLL_EXPORT -DPIC -o .libs/soup-multipart.o&&echo -e "# Generated by libtool cache\npic_object='.libs/soup-multipart.o'\nnon_pic_object=none\n" > soup-multipart.lo
574
+
575
+ In file included from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gthread.h:36,
576
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gasyncqueue.h:34,
577
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib.h:34,
578
+ from ../libsoup/soup-types.h:9,
579
+ from soup-multipart.h:9,
580
+ from soup-multipart.c:10:
581
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:137: warning: function declaration isn't a prototype
582
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h: In function `_g_win32_get_system_data_dirs':
583
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:148: warning: function declaration isn't a prototype
584
+ mv -f .deps/soup-multipart.Tpo .deps/soup-multipart.Plo
585
+ /bin/sh ../libtool --tag=CC --mode=compile gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-nossl.lo -MD -MP -MF .deps/soup-nossl.Tpo -c -o soup-nossl.lo soup-nossl.c
586
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-nossl.lo -MD -MP -MF .deps/soup-nossl.Tpo -c soup-nossl.c -DDLL_EXPORT -DPIC -o .libs/soup-nossl.o&&echo -e "# Generated by libtool cache\npic_object='.libs/soup-nossl.o'\nnon_pic_object=none\n" > soup-nossl.lo
587
+
588
+ In file included from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gthread.h:36,
589
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gasyncqueue.h:34,
590
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib.h:34,
591
+ from soup-ssl.h:9,
592
+ from soup-nossl.c:12:
593
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:137: warning: function declaration isn't a prototype
594
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h: In function `_g_win32_get_system_data_dirs':
595
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:148: warning: function declaration isn't a prototype
596
+ mv -f .deps/soup-nossl.Tpo .deps/soup-nossl.Plo
597
+ /bin/sh ../libtool --tag=CC --mode=compile gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-path-map.lo -MD -MP -MF .deps/soup-path-map.Tpo -c -o soup-path-map.lo soup-path-map.c
598
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-path-map.lo -MD -MP -MF .deps/soup-path-map.Tpo -c soup-path-map.c -DDLL_EXPORT -DPIC -o .libs/soup-path-map.o&&echo -e "# Generated by libtool cache\npic_object='.libs/soup-path-map.o'\nnon_pic_object=none\n" > soup-path-map.lo
599
+
600
+ In file included from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gthread.h:36,
601
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gasyncqueue.h:34,
602
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib.h:34,
603
+ from ./soup-types.h:9,
604
+ from soup-path-map.h:9,
605
+ from soup-path-map.c:8:
606
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:137: warning: function declaration isn't a prototype
607
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h: In function `_g_win32_get_system_data_dirs':
608
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:148: warning: function declaration isn't a prototype
609
+ mv -f .deps/soup-path-map.Tpo .deps/soup-path-map.Plo
610
+ /bin/sh ../libtool --tag=CC --mode=compile gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-proxy-resolver.lo -MD -MP -MF .deps/soup-proxy-resolver.Tpo -c -o soup-proxy-resolver.lo soup-proxy-resolver.c
611
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-proxy-resolver.lo -MD -MP -MF .deps/soup-proxy-resolver.Tpo -c soup-proxy-resolver.c -DDLL_EXPORT -DPIC -o .libs/soup-proxy-resolver.o&&echo -e "# Generated by libtool cache\npic_object='.libs/soup-proxy-resolver.o'\nnon_pic_object=none\n" > soup-proxy-resolver.lo
612
+
613
+ In file included from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gthread.h:36,
614
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gasyncqueue.h:34,
615
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib.h:34,
616
+ from ../libsoup/soup-types.h:9,
617
+ from soup-proxy-resolver.h:9,
618
+ from soup-proxy-resolver.c:12:
619
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:137: warning: function declaration isn't a prototype
620
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h: In function `_g_win32_get_system_data_dirs':
621
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:148: warning: function declaration isn't a prototype
622
+ mv -f .deps/soup-proxy-resolver.Tpo .deps/soup-proxy-resolver.Plo
623
+ /bin/sh ../libtool --tag=CC --mode=compile gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-proxy-resolver-static.lo -MD -MP -MF .deps/soup-proxy-resolver-static.Tpo -c -o soup-proxy-resolver-static.lo soup-proxy-resolver-static.c
624
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-proxy-resolver-static.lo -MD -MP -MF .deps/soup-proxy-resolver-static.Tpo -c soup-proxy-resolver-static.c -DDLL_EXPORT -DPIC -o .libs/soup-proxy-resolver-static.o&&echo -e "# Generated by libtool cache\npic_object='.libs/soup-proxy-resolver-static.o'\nnon_pic_object=none\n" > soup-proxy-resolver-static.lo
625
+
626
+ In file included from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gthread.h:36,
627
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gasyncqueue.h:34,
628
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib.h:34,
629
+ from ../libsoup/soup-types.h:9,
630
+ from soup-proxy-resolver.h:9,
631
+ from soup-proxy-resolver-static.h:9,
632
+ from soup-proxy-resolver-static.c:14:
633
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:137: warning: function declaration isn't a prototype
634
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h: In function `_g_win32_get_system_data_dirs':
635
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:148: warning: function declaration isn't a prototype
636
+ mv -f .deps/soup-proxy-resolver-static.Tpo .deps/soup-proxy-resolver-static.Plo
637
+ /bin/sh ../libtool --tag=CC --mode=compile gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-proxy-uri-resolver.lo -MD -MP -MF .deps/soup-proxy-uri-resolver.Tpo -c -o soup-proxy-uri-resolver.lo soup-proxy-uri-resolver.c
638
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-proxy-uri-resolver.lo -MD -MP -MF .deps/soup-proxy-uri-resolver.Tpo -c soup-proxy-uri-resolver.c -DDLL_EXPORT -DPIC -o .libs/soup-proxy-uri-resolver.o&&echo -e "# Generated by libtool cache\npic_object='.libs/soup-proxy-uri-resolver.o'\nnon_pic_object=none\n" > soup-proxy-uri-resolver.lo
639
+
640
+ In file included from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gthread.h:36,
641
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gasyncqueue.h:34,
642
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib.h:34,
643
+ from ../libsoup/soup-types.h:9,
644
+ from ../libsoup/soup-proxy-resolver.h:9,
645
+ from soup-proxy-uri-resolver.h:9,
646
+ from soup-proxy-uri-resolver.c:12:
647
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:137: warning: function declaration isn't a prototype
648
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h: In function `_g_win32_get_system_data_dirs':
649
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:148: warning: function declaration isn't a prototype
650
+ mv -f .deps/soup-proxy-uri-resolver.Tpo .deps/soup-proxy-uri-resolver.Plo
651
+ /bin/sh ../libtool --tag=CC --mode=compile gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-server.lo -MD -MP -MF .deps/soup-server.Tpo -c -o soup-server.lo soup-server.c
652
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-server.lo -MD -MP -MF .deps/soup-server.Tpo -c soup-server.c -DDLL_EXPORT -DPIC -o .libs/soup-server.o&&echo -e "# Generated by libtool cache\npic_object='.libs/soup-server.o'\nnon_pic_object=none\n" > soup-server.lo
653
+
654
+ In file included from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gthread.h:36,
655
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gasyncqueue.h:34,
656
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib.h:34,
657
+ from ../libsoup/soup-types.h:9,
658
+ from soup-server.h:9,
659
+ from soup-server.c:17:
660
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:137: warning: function declaration isn't a prototype
661
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h: In function `_g_win32_get_system_data_dirs':
662
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:148: warning: function declaration isn't a prototype
663
+ mv -f .deps/soup-server.Tpo .deps/soup-server.Plo
664
+ /bin/sh ../libtool --tag=CC --mode=compile gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-session.lo -MD -MP -MF .deps/soup-session.Tpo -c -o soup-session.lo soup-session.c
665
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-session.lo -MD -MP -MF .deps/soup-session.Tpo -c soup-session.c -DDLL_EXPORT -DPIC -o .libs/soup-session.o&&echo -e "# Generated by libtool cache\npic_object='.libs/soup-session.o'\nnon_pic_object=none\n" > soup-session.lo
666
+
667
+ In file included from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gthread.h:36,
668
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gasyncqueue.h:34,
669
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib.h:34,
670
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/gobject/gtype.h:26,
671
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/gobject/gboxed.h:26,
672
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib-object.h:25,
673
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/gio/gioenums.h:30,
674
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/gio/giotypes.h:30,
675
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/gio/gio.h:28,
676
+ from soup-address.h:11,
677
+ from soup-session.c:16:
678
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:137: warning: function declaration isn't a prototype
679
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h: In function `_g_win32_get_system_data_dirs':
680
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:148: warning: function declaration isn't a prototype
681
+ mv -f .deps/soup-session.Tpo .deps/soup-session.Plo
682
+ /bin/sh ../libtool --tag=CC --mode=compile gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-session-async.lo -MD -MP -MF .deps/soup-session-async.Tpo -c -o soup-session-async.lo soup-session-async.c
683
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-session-async.lo -MD -MP -MF .deps/soup-session-async.Tpo -c soup-session-async.c -DDLL_EXPORT -DPIC -o .libs/soup-session-async.o&&echo -e "# Generated by libtool cache\npic_object='.libs/soup-session-async.o'\nnon_pic_object=none\n" > soup-session-async.lo
684
+
685
+ In file included from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gthread.h:36,
686
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gasyncqueue.h:34,
687
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib.h:34,
688
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/gobject/gtype.h:26,
689
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/gobject/gboxed.h:26,
690
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib-object.h:25,
691
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/gio/gioenums.h:30,
692
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/gio/giotypes.h:30,
693
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/gio/gio.h:28,
694
+ from soup-address.h:11,
695
+ from soup-session-async.c:12:
696
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:137: warning: function declaration isn't a prototype
697
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h: In function `_g_win32_get_system_data_dirs':
698
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:148: warning: function declaration isn't a prototype
699
+ mv -f .deps/soup-session-async.Tpo .deps/soup-session-async.Plo
700
+ /bin/sh ../libtool --tag=CC --mode=compile gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-session-feature.lo -MD -MP -MF .deps/soup-session-feature.Tpo -c -o soup-session-feature.lo soup-session-feature.c
701
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-session-feature.lo -MD -MP -MF .deps/soup-session-feature.Tpo -c soup-session-feature.c -DDLL_EXPORT -DPIC -o .libs/soup-session-feature.o&&echo -e "# Generated by libtool cache\npic_object='.libs/soup-session-feature.o'\nnon_pic_object=none\n" > soup-session-feature.lo
702
+
703
+ In file included from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gthread.h:36,
704
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gasyncqueue.h:34,
705
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib.h:34,
706
+ from ../libsoup/soup-types.h:9,
707
+ from soup-session-feature.h:9,
708
+ from soup-session-feature.c:12:
709
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:137: warning: function declaration isn't a prototype
710
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h: In function `_g_win32_get_system_data_dirs':
711
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:148: warning: function declaration isn't a prototype
712
+ mv -f .deps/soup-session-feature.Tpo .deps/soup-session-feature.Plo
713
+ /bin/sh ../libtool --tag=CC --mode=compile gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-session-sync.lo -MD -MP -MF .deps/soup-session-sync.Tpo -c -o soup-session-sync.lo soup-session-sync.c
714
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-session-sync.lo -MD -MP -MF .deps/soup-session-sync.Tpo -c soup-session-sync.c -DDLL_EXPORT -DPIC -o .libs/soup-session-sync.o&&echo -e "# Generated by libtool cache\npic_object='.libs/soup-session-sync.o'\nnon_pic_object=none\n" > soup-session-sync.lo
715
+
716
+ In file included from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gthread.h:36,
717
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gasyncqueue.h:34,
718
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib.h:34,
719
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/gobject/gtype.h:26,
720
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/gobject/gboxed.h:26,
721
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib-object.h:25,
722
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/gio/gioenums.h:30,
723
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/gio/giotypes.h:30,
724
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/gio/gio.h:28,
725
+ from soup-address.h:11,
726
+ from soup-session-sync.c:12:
727
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:137: warning: function declaration isn't a prototype
728
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h: In function `_g_win32_get_system_data_dirs':
729
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:148: warning: function declaration isn't a prototype
730
+ mv -f .deps/soup-session-sync.Tpo .deps/soup-session-sync.Plo
731
+ /bin/sh ../libtool --tag=CC --mode=compile gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-socket.lo -MD -MP -MF .deps/soup-socket.Tpo -c -o soup-socket.lo soup-socket.c
732
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-socket.lo -MD -MP -MF .deps/soup-socket.Tpo -c soup-socket.c -DDLL_EXPORT -DPIC -o .libs/soup-socket.o&&echo -e "# Generated by libtool cache\npic_object='.libs/soup-socket.o'\nnon_pic_object=none\n" > soup-socket.lo
733
+
734
+ In file included from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gthread.h:36,
735
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gasyncqueue.h:34,
736
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib.h:34,
737
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/gobject/gtype.h:26,
738
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/gobject/gboxed.h:26,
739
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib-object.h:25,
740
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/gio/gioenums.h:30,
741
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/gio/giotypes.h:30,
742
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/gio/gio.h:28,
743
+ from soup-address.h:11,
744
+ from soup-socket.c:19:
745
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:137: warning: function declaration isn't a prototype
746
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h: In function `_g_win32_get_system_data_dirs':
747
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:148: warning: function declaration isn't a prototype
748
+ soup-socket.c: In function `soup_socket_connect_sync':
749
+ soup-socket.c:771: warning: 'cancel_id' might be used uninitialized in this function
750
+ mv -f .deps/soup-socket.Tpo .deps/soup-socket.Plo
751
+ /bin/sh ../libtool --tag=CC --mode=compile gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-status.lo -MD -MP -MF .deps/soup-status.Tpo -c -o soup-status.lo soup-status.c
752
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-status.lo -MD -MP -MF .deps/soup-status.Tpo -c soup-status.c -DDLL_EXPORT -DPIC -o .libs/soup-status.o&&echo -e "# Generated by libtool cache\npic_object='.libs/soup-status.o'\nnon_pic_object=none\n" > soup-status.lo
753
+
754
+ In file included from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gthread.h:36,
755
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gasyncqueue.h:34,
756
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib.h:34,
757
+ from soup-status.c:8:
758
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:137: warning: function declaration isn't a prototype
759
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h: In function `_g_win32_get_system_data_dirs':
760
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:148: warning: function declaration isn't a prototype
761
+ mv -f .deps/soup-status.Tpo .deps/soup-status.Plo
762
+ /bin/sh ../libtool --tag=CC --mode=compile gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-uri.lo -MD -MP -MF .deps/soup-uri.Tpo -c -o soup-uri.lo soup-uri.c
763
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-uri.lo -MD -MP -MF .deps/soup-uri.Tpo -c soup-uri.c -DDLL_EXPORT -DPIC -o .libs/soup-uri.o&&echo -e "# Generated by libtool cache\npic_object='.libs/soup-uri.o'\nnon_pic_object=none\n" > soup-uri.lo
764
+
765
+ In file included from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gthread.h:36,
766
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gasyncqueue.h:34,
767
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib.h:34,
768
+ from ../libsoup/soup-types.h:9,
769
+ from soup-uri.h:11,
770
+ from soup-uri.c:12:
771
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:137: warning: function declaration isn't a prototype
772
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h: In function `_g_win32_get_system_data_dirs':
773
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:148: warning: function declaration isn't a prototype
774
+ mv -f .deps/soup-uri.Tpo .deps/soup-uri.Plo
775
+ /bin/sh ../libtool --tag=CC --mode=compile gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-value-utils.lo -MD -MP -MF .deps/soup-value-utils.Tpo -c -o soup-value-utils.lo soup-value-utils.c
776
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-value-utils.lo -MD -MP -MF .deps/soup-value-utils.Tpo -c soup-value-utils.c -DDLL_EXPORT -DPIC -o .libs/soup-value-utils.o&&echo -e "# Generated by libtool cache\npic_object='.libs/soup-value-utils.o'\nnon_pic_object=none\n" > soup-value-utils.lo
777
+
778
+ In file included from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gthread.h:36,
779
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gasyncqueue.h:34,
780
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib.h:34,
781
+ from ../libsoup/soup-types.h:9,
782
+ from soup-value-utils.h:9,
783
+ from soup-value-utils.c:8:
784
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:137: warning: function declaration isn't a prototype
785
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h: In function `_g_win32_get_system_data_dirs':
786
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:148: warning: function declaration isn't a prototype
787
+ mv -f .deps/soup-value-utils.Tpo .deps/soup-value-utils.Plo
788
+ /bin/sh ../libtool --tag=CC --mode=compile gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-xmlrpc.lo -MD -MP -MF .deps/soup-xmlrpc.Tpo -c -o soup-xmlrpc.lo soup-xmlrpc.c
789
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -DG_LOG_DOMAIN=\"libsoup\" -I.. -DG_ENABLE_DEBUG -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT soup-xmlrpc.lo -MD -MP -MF .deps/soup-xmlrpc.Tpo -c soup-xmlrpc.c -DDLL_EXPORT -DPIC -o .libs/soup-xmlrpc.o&&echo -e "# Generated by libtool cache\npic_object='.libs/soup-xmlrpc.o'\nnon_pic_object=none\n" > soup-xmlrpc.lo
790
+
791
+ In file included from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gthread.h:36,
792
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gasyncqueue.h:34,
793
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib.h:34,
794
+ from ../libsoup/soup-types.h:9,
795
+ from soup-xmlrpc.h:9,
796
+ from soup-xmlrpc.c:17:
797
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:137: warning: function declaration isn't a prototype
798
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h: In function `_g_win32_get_system_data_dirs':
799
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:148: warning: function declaration isn't a prototype
800
+ mv -f .deps/soup-xmlrpc.Tpo .deps/soup-xmlrpc.Plo
801
+ /bin/sh ../libtool --tag=CC --mode=link gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -version-info 3:0:2 -no-undefined -L/devel/dist/win32/proxy-libintl-20080918/lib -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o libsoup-2.4.la -rpath c:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/lib soup-marshal.lo soup-enum-types.lo soup-address.lo soup-auth.lo soup-auth-basic.lo soup-auth-digest.lo soup-auth-ntlm.lo soup-auth-domain.lo soup-auth-domain-basic.lo soup-auth-domain-digest.lo soup-auth-manager.lo soup-auth-manager-ntlm.lo soup-connection.lo soup-cookie.lo soup-cookie-jar.lo soup-cookie-jar-text.lo soup-date.lo soup-dns.lo soup-form.lo soup-gnutls.lo soup-headers.lo soup-logger.lo soup-message.lo soup-message-body.lo soup-message-client-io.lo soup-message-headers.lo soup-message-io.lo soup-message-queue.lo soup-message-server-io.lo soup-method.lo soup-misc.lo soup-multipart.lo soup-nossl.lo soup-path-map.lo soup-proxy-resolver.lo soup-proxy-resolver-static.lo soup-proxy-uri-resolver.lo soup-server.lo soup-session.lo soup-session-async.lo soup-session-feature.lo soup-session-sync.lo soup-socket.lo soup-status.lo soup-uri.lo soup-value-utils.lo soup-xmlrpc.lo -Lc:/devel/dist/win32/glib-2.20.4-1/lib -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl -Lc:/devel/dist/win32/libxml2-2.7.3-1/lib -lxml2 -lws2_32
802
+ libtool-cache: not cached, running libtool...
803
+ libtool-cache: libtool output: gcc -mtune=pentium3 -mthreads -mms-bitfields -shared .libs/soup-marshal.o .libs/soup-enum-types.o .libs/soup-address.o .libs/soup-auth.o .libs/soup-auth-basic.o .libs/soup-auth-digest.o .libs/soup-auth-ntlm.o .libs/soup-auth-domain.o .libs/soup-auth-domain-basic.o .libs/soup-auth-domain-digest.o .libs/soup-auth-manager.o .libs/soup-auth-manager-ntlm.o .libs/soup-connection.o .libs/soup-cookie.o .libs/soup-cookie-jar.o .libs/soup-cookie-jar-text.o .libs/soup-date.o .libs/soup-dns.o .libs/soup-form.o .libs/soup-gnutls.o .libs/soup-headers.o .libs/soup-logger.o .libs/soup-message.o .libs/soup-message-body.o .libs/soup-message-client-io.o .libs/soup-message-headers.o .libs/soup-message-io.o .libs/soup-message-queue.o .libs/soup-message-server-io.o .libs/soup-method.o .libs/soup-misc.o .libs/soup-multipart.o .libs/soup-nossl.o .libs/soup-path-map.o .libs/soup-proxy-resolver.o .libs/soup-proxy-resolver-static.o .libs/soup-proxy-uri-resolver.o .libs/soup-server.o .libs/soup-session.o .libs/soup-session-async.o .libs/soup-session-feature.o .libs/soup-session-sync.o .libs/soup-socket.o .libs/soup-status.o .libs/soup-uri.o .libs/soup-value-utils.o .libs/soup-xmlrpc.o -L/devel/dist/win32/proxy-libintl-20080918/lib -Lc:/devel/dist/win32/glib-2.20.4-1/lib -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl -Lc:/devel/dist/win32/libxml2-2.7.3-1/lib -lxml2 -lws2_32 -mtune=pentium3 -mthreads -mms-bitfields -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -mthreads -o .libs/libsoup-2.4-1.dll -Wl,--enable-auto-image-base -Xlinker --out-implib -Xlinker .libs/libsoup-2.4.dll.a
804
+ Creating library file: .libs/libsoup-2.4.dll.a
805
+ libtool-cache: libtool output: ( cd ".libs" && rm -f "libsoup-2.4.la" && ln -s "../libsoup-2.4.la" "libsoup-2.4.la" )
806
+ make[3]: Entering directory `/devel/src/gnome/libsoup/2.26.3-1_win32/libsoup'
807
+ test -z "c:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/lib" || /bin/mkdir -p "c:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/lib"
808
+ /bin/sh ../libtool --mode=install /opt/local/bin/install -c 'libsoup-2.4.la' 'c:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/lib/libsoup-2.4.la'
809
+ libtool-cache: Unrecognized mode --mode=install - passing through to original libtool
810
+ libtool.orig: install: /opt/local/bin/install -c .libs/libsoup-2.4.dll.a c:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/lib/libsoup-2.4.dll.a
811
+ libtool.orig: install: base_file=`basename libsoup-2.4.la`
812
+ libtool.orig: install: dlpath=`/bin/sh 2>&1 -c '. .libs/'libsoup-2.4.la'i; echo libsoup-2.4-1.dll'`
813
+ libtool.orig: install: dldir=c:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/lib/`dirname ../bin/libsoup-2.4-1.dll`
814
+ libtool.orig: install: test -d c:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/lib/../bin || mkdir -p c:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/lib/../bin
815
+ libtool.orig: install: /opt/local/bin/install -c .libs/libsoup-2.4-1.dll c:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/lib/../bin/libsoup-2.4-1.dll
816
+ libtool.orig: install: chmod a+x c:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/lib/../bin/libsoup-2.4-1.dll
817
+ libtool.orig: install: if test -n '' && test -n 'strip --strip-unneeded'; then eval 'strip --strip-unneeded c:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/lib/../bin/libsoup-2.4-1.dll' || exit 0; fi
818
+ libtool.orig: install: /opt/local/bin/install -c .libs/libsoup-2.4.lai c:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/lib/libsoup-2.4.la
819
+ ----------------------------------------------------------------------
820
+ Libraries have been installed in:
821
+ c:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/lib
822
+
823
+ If you ever happen to want to link against installed libraries
824
+ in a given directory, LIBDIR, you must either use libtool, and
825
+ specify the full pathname of the library, or use the `-LLIBDIR'
826
+ flag during linking and do at least one of the following:
827
+ - add LIBDIR to the `PATH' environment variable
828
+ during execution
829
+ - add LIBDIR to the `LD_RUN_PATH' environment variable
830
+ during linking
831
+ - use the `-LLIBDIR' linker flag
832
+
833
+ See any operating system documentation about shared libraries for
834
+ more information, such as the ld(1) and ld.so(8) manual pages.
835
+ ----------------------------------------------------------------------
836
+ test -z "" || /bin/mkdir -p ""
837
+ test -z "c:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/include/libsoup-2.4/libsoup" || /bin/mkdir -p "c:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/include/libsoup-2.4/libsoup"
838
+ /opt/local/bin/install -c -m 644 'soup.h' 'c:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/include/libsoup-2.4/libsoup/soup.h'
839
+ /opt/local/bin/install -c -m 644 'soup-address.h' 'c:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/include/libsoup-2.4/libsoup/soup-address.h'
840
+ /opt/local/bin/install -c -m 644 'soup-auth.h' 'c:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/include/libsoup-2.4/libsoup/soup-auth.h'
841
+ /opt/local/bin/install -c -m 644 'soup-auth-domain.h' 'c:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/include/libsoup-2.4/libsoup/soup-auth-domain.h'
842
+ /opt/local/bin/install -c -m 644 'soup-auth-domain-basic.h' 'c:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/include/libsoup-2.4/libsoup/soup-auth-domain-basic.h'
843
+ /opt/local/bin/install -c -m 644 'soup-auth-domain-digest.h' 'c:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/include/libsoup-2.4/libsoup/soup-auth-domain-digest.h'
844
+ /opt/local/bin/install -c -m 644 'soup-cookie.h' 'c:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/include/libsoup-2.4/libsoup/soup-cookie.h'
845
+ /opt/local/bin/install -c -m 644 'soup-cookie-jar.h' 'c:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/include/libsoup-2.4/libsoup/soup-cookie-jar.h'
846
+ /opt/local/bin/install -c -m 644 'soup-cookie-jar-text.h' 'c:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/include/libsoup-2.4/libsoup/soup-cookie-jar-text.h'
847
+ /opt/local/bin/install -c -m 644 'soup-date.h' 'c:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/include/libsoup-2.4/libsoup/soup-date.h'
848
+ /opt/local/bin/install -c -m 644 'soup-form.h' 'c:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/include/libsoup-2.4/libsoup/soup-form.h'
849
+ /opt/local/bin/install -c -m 644 'soup-headers.h' 'c:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/include/libsoup-2.4/libsoup/soup-headers.h'
850
+ /opt/local/bin/install -c -m 644 'soup-logger.h' 'c:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/include/libsoup-2.4/libsoup/soup-logger.h'
851
+ /opt/local/bin/install -c -m 644 'soup-message.h' 'c:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/include/libsoup-2.4/libsoup/soup-message.h'
852
+ /opt/local/bin/install -c -m 644 'soup-message-body.h' 'c:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/include/libsoup-2.4/libsoup/soup-message-body.h'
853
+ /opt/local/bin/install -c -m 644 'soup-message-headers.h' 'c:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/include/libsoup-2.4/libsoup/soup-message-headers.h'
854
+ /opt/local/bin/install -c -m 644 'soup-method.h' 'c:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/include/libsoup-2.4/libsoup/soup-method.h'
855
+ /opt/local/bin/install -c -m 644 'soup-misc.h' 'c:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/include/libsoup-2.4/libsoup/soup-misc.h'
856
+ /opt/local/bin/install -c -m 644 'soup-multipart.h' 'c:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/include/libsoup-2.4/libsoup/soup-multipart.h'
857
+ /opt/local/bin/install -c -m 644 'soup-portability.h' 'c:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/include/libsoup-2.4/libsoup/soup-portability.h'
858
+ /opt/local/bin/install -c -m 644 'soup-proxy-resolver.h' 'c:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/include/libsoup-2.4/libsoup/soup-proxy-resolver.h'
859
+ /opt/local/bin/install -c -m 644 'soup-proxy-uri-resolver.h' 'c:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/include/libsoup-2.4/libsoup/soup-proxy-uri-resolver.h'
860
+ /opt/local/bin/install -c -m 644 'soup-server.h' 'c:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/include/libsoup-2.4/libsoup/soup-server.h'
861
+ /opt/local/bin/install -c -m 644 'soup-session.h' 'c:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/include/libsoup-2.4/libsoup/soup-session.h'
862
+ /opt/local/bin/install -c -m 644 'soup-session-async.h' 'c:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/include/libsoup-2.4/libsoup/soup-session-async.h'
863
+ /opt/local/bin/install -c -m 644 'soup-session-feature.h' 'c:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/include/libsoup-2.4/libsoup/soup-session-feature.h'
864
+ /opt/local/bin/install -c -m 644 'soup-session-sync.h' 'c:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/include/libsoup-2.4/libsoup/soup-session-sync.h'
865
+ /opt/local/bin/install -c -m 644 'soup-socket.h' 'c:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/include/libsoup-2.4/libsoup/soup-socket.h'
866
+ /opt/local/bin/install -c -m 644 'soup-status.h' 'c:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/include/libsoup-2.4/libsoup/soup-status.h'
867
+ /opt/local/bin/install -c -m 644 'soup-types.h' 'c:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/include/libsoup-2.4/libsoup/soup-types.h'
868
+ /opt/local/bin/install -c -m 644 'soup-uri.h' 'c:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/include/libsoup-2.4/libsoup/soup-uri.h'
869
+ /opt/local/bin/install -c -m 644 'soup-value-utils.h' 'c:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/include/libsoup-2.4/libsoup/soup-value-utils.h'
870
+ /opt/local/bin/install -c -m 644 'soup-xmlrpc.h' 'c:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/include/libsoup-2.4/libsoup/soup-xmlrpc.h'
871
+ /opt/local/bin/install -c -m 644 'soup-enum-types.h' 'c:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/include/libsoup-2.4/libsoup/soup-enum-types.h'
872
+ make[3]: Leaving directory `/devel/src/gnome/libsoup/2.26.3-1_win32/libsoup'
873
+ make[2]: Leaving directory `/devel/src/gnome/libsoup/2.26.3-1_win32/libsoup'
874
+ make[1]: Leaving directory `/devel/src/gnome/libsoup/2.26.3-1_win32/libsoup'
875
+ Making install in tests
876
+ make[1]: Entering directory `/devel/src/gnome/libsoup/2.26.3-1_win32/tests'
877
+ gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -I.. -DSRCDIR=\""."\" -DLIBSOUP_DISABLE_DEPRECATED -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT chunk-test.o -MD -MP -MF .deps/chunk-test.Tpo -c -o chunk-test.o chunk-test.c
878
+ In file included from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gthread.h:36,
879
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gasyncqueue.h:34,
880
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib.h:34,
881
+ from chunk-test.c:12:
882
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:137: warning: function declaration isn't a prototype
883
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h: In function `_g_win32_get_system_data_dirs':
884
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:148: warning: function declaration isn't a prototype
885
+ mv -f .deps/chunk-test.Tpo .deps/chunk-test.Po
886
+ gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -I.. -DSRCDIR=\""."\" -DLIBSOUP_DISABLE_DEPRECATED -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT test-utils.o -MD -MP -MF .deps/test-utils.Tpo -c -o test-utils.o test-utils.c
887
+ In file included from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gthread.h:36,
888
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gasyncqueue.h:34,
889
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib.h:34,
890
+ from ../libsoup/soup-types.h:9,
891
+ from test-utils.h:5,
892
+ from test-utils.c:5:
893
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:137: warning: function declaration isn't a prototype
894
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h: In function `_g_win32_get_system_data_dirs':
895
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:148: warning: function declaration isn't a prototype
896
+ test-utils.c: In function `soup_test_session_abort_unref':
897
+ test-utils.c:249: warning: dereferencing type-punned pointer will break strict-aliasing rules
898
+ test-utils.c:257: warning: dereferencing type-punned pointer will break strict-aliasing rules
899
+ test-utils.c: In function `test_server_shutdown':
900
+ test-utils.c:333: warning: dereferencing type-punned pointer will break strict-aliasing rules
901
+ test-utils.c:347: warning: dereferencing type-punned pointer will break strict-aliasing rules
902
+ mv -f .deps/test-utils.Tpo .deps/test-utils.Po
903
+ /bin/sh ../libtool --tag=CC --mode=link gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -L/devel/dist/win32/proxy-libintl-20080918/lib -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o chunk-test.exe chunk-test.o test-utils.o ../libsoup/libsoup-2.4.la -Lc:/devel/dist/win32/glib-2.20.4-1/lib -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl
904
+ libtool-cache: not cached, running libtool...
905
+ libtool-cache: libtool output: gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o .libs/chunk-test.exe chunk-test.o test-utils.o -L/devel/dist/win32/proxy-libintl-20080918/lib ../libsoup/.libs/libsoup-2.4.dll.a -Lc:/devel/dist/win32/glib-2.20.4-1/lib -Lc:/devel/dist/win32/libxml2-2.7.3-1/lib -lxml2 -lws2_32 -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl -mthreads -Lc:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/lib
906
+ Info: resolving __SOUP_METHOD_GET by linking to __imp___SOUP_METHOD_GET (auto-import)
907
+ Info: resolving __SOUP_METHOD_PUT by linking to __imp___SOUP_METHOD_PUT (auto-import)
908
+ c:\opt\mingw\bin\..\lib\gcc\mingw32\3.4.5\..\..\..\..\mingw32\bin\ld.exe: warning: auto-importing has been activated without --enable-auto-import specified on the command line.
909
+ This should work unless it involves constant data structures referencing symbols from auto-imported DLLs.
910
+ ./.libs/lt-chunk-test.c: In function `lt_error_core':
911
+ ./.libs/lt-chunk-test.c:752: warning: function might be possible candidate for `printf' format attribute
912
+ gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -I.. -DSRCDIR=\""."\" -DLIBSOUP_DISABLE_DEPRECATED -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT context-test.o -MD -MP -MF .deps/context-test.Tpo -c -o context-test.o context-test.c
913
+ In file included from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gthread.h:36,
914
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gasyncqueue.h:34,
915
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib.h:34,
916
+ from context-test.c:16:
917
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:137: warning: function declaration isn't a prototype
918
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h: In function `_g_win32_get_system_data_dirs':
919
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:148: warning: function declaration isn't a prototype
920
+ mv -f .deps/context-test.Tpo .deps/context-test.Po
921
+ /bin/sh ../libtool --tag=CC --mode=link gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -L/devel/dist/win32/proxy-libintl-20080918/lib -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o context-test.exe context-test.o test-utils.o ../libsoup/libsoup-2.4.la -Lc:/devel/dist/win32/glib-2.20.4-1/lib -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl
922
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o .libs/context-test.exe context-test.o test-utils.o -L/devel/dist/win32/proxy-libintl-20080918/lib ../libsoup/.libs/libsoup-2.4.dll.a -Lc:/devel/dist/win32/glib-2.20.4-1/lib -Lc:/devel/dist/win32/libxml2-2.7.3-1/lib -lxml2 -lws2_32 -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl -mthreads -Lc:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/lib
923
+
924
+ Info: resolving __SOUP_METHOD_GET by linking to __imp___SOUP_METHOD_GET (auto-import)
925
+ c:\opt\mingw\bin\..\lib\gcc\mingw32\3.4.5\..\..\..\..\mingw32\bin\ld.exe: warning: auto-importing has been activated without --enable-auto-import specified on the command line.
926
+ This should work unless it involves constant data structures referencing symbols from auto-imported DLLs.
927
+ gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -I.. -DSRCDIR=\""."\" -DLIBSOUP_DISABLE_DEPRECATED -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT continue-test.o -MD -MP -MF .deps/continue-test.Tpo -c -o continue-test.o continue-test.c
928
+ In file included from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gthread.h:36,
929
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gasyncqueue.h:34,
930
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib.h:34,
931
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/gobject/gtype.h:26,
932
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/gobject/gboxed.h:26,
933
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib-object.h:25,
934
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/gio/gioenums.h:30,
935
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/gio/giotypes.h:30,
936
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/gio/gio.h:28,
937
+ from ../libsoup/soup-address.h:11,
938
+ from ../libsoup/soup.h:13,
939
+ from continue-test.c:11:
940
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:137: warning: function declaration isn't a prototype
941
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h: In function `_g_win32_get_system_data_dirs':
942
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:148: warning: function declaration isn't a prototype
943
+ continue-test.c: In function `do_message':
944
+ continue-test.c:70: warning: 'actual_status' might be used uninitialized in this function
945
+ mv -f .deps/continue-test.Tpo .deps/continue-test.Po
946
+ /bin/sh ../libtool --tag=CC --mode=link gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -L/devel/dist/win32/proxy-libintl-20080918/lib -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o continue-test.exe continue-test.o test-utils.o ../libsoup/libsoup-2.4.la -Lc:/devel/dist/win32/glib-2.20.4-1/lib -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl
947
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o .libs/continue-test.exe continue-test.o test-utils.o -L/devel/dist/win32/proxy-libintl-20080918/lib ../libsoup/.libs/libsoup-2.4.dll.a -Lc:/devel/dist/win32/glib-2.20.4-1/lib -Lc:/devel/dist/win32/libxml2-2.7.3-1/lib -lxml2 -lws2_32 -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl -mthreads -Lc:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/lib
948
+
949
+ Info: resolving __SOUP_METHOD_POST by linking to __imp___SOUP_METHOD_POST (auto-import)
950
+ c:\opt\mingw\bin\..\lib\gcc\mingw32\3.4.5\..\..\..\..\mingw32\bin\ld.exe: warning: auto-importing has been activated without --enable-auto-import specified on the command line.
951
+ This should work unless it involves constant data structures referencing symbols from auto-imported DLLs.
952
+ gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -I.. -DSRCDIR=\""."\" -DLIBSOUP_DISABLE_DEPRECATED -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT date.o -MD -MP -MF .deps/date.Tpo -c -o date.o date.c
953
+ In file included from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gthread.h:36,
954
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gasyncqueue.h:34,
955
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib.h:34,
956
+ from ../libsoup/soup-types.h:9,
957
+ from ../libsoup/soup-date.h:11,
958
+ from date.c:9:
959
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:137: warning: function declaration isn't a prototype
960
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h: In function `_g_win32_get_system_data_dirs':
961
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:148: warning: function declaration isn't a prototype
962
+ date.c: In function `main':
963
+ date.c:32: warning: 'strdate2' might be used uninitialized in this function
964
+ mv -f .deps/date.Tpo .deps/date.Po
965
+ /bin/sh ../libtool --tag=CC --mode=link gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -L/devel/dist/win32/proxy-libintl-20080918/lib -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o date.exe date.o test-utils.o ../libsoup/libsoup-2.4.la -Lc:/devel/dist/win32/glib-2.20.4-1/lib -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl
966
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o .libs/date.exe date.o test-utils.o -L/devel/dist/win32/proxy-libintl-20080918/lib ../libsoup/.libs/libsoup-2.4.dll.a -Lc:/devel/dist/win32/glib-2.20.4-1/lib -Lc:/devel/dist/win32/libxml2-2.7.3-1/lib -lxml2 -lws2_32 -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl -mthreads -Lc:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/lib
967
+
968
+ gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -I.. -DSRCDIR=\""."\" -DLIBSOUP_DISABLE_DEPRECATED -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT dns.o -MD -MP -MF .deps/dns.Tpo -c -o dns.o dns.c
969
+ In file included from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gthread.h:36,
970
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gasyncqueue.h:34,
971
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib.h:34,
972
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/gobject/gtype.h:26,
973
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/gobject/gboxed.h:26,
974
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib-object.h:25,
975
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/gio/gioenums.h:30,
976
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/gio/giotypes.h:30,
977
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/gio/gio.h:28,
978
+ from ../libsoup/soup-address.h:11,
979
+ from dns.c:6:
980
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:137: warning: function declaration isn't a prototype
981
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h: In function `_g_win32_get_system_data_dirs':
982
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:148: warning: function declaration isn't a prototype
983
+ mv -f .deps/dns.Tpo .deps/dns.Po
984
+ /bin/sh ../libtool --tag=CC --mode=link gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -L/devel/dist/win32/proxy-libintl-20080918/lib -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o dns.exe dns.o ../libsoup/libsoup-2.4.la -Lc:/devel/dist/win32/glib-2.20.4-1/lib -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl
985
+ libtool-cache: not cached, running libtool...
986
+ libtool-cache: libtool output: gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o .libs/dns.exe dns.o -L/devel/dist/win32/proxy-libintl-20080918/lib ../libsoup/.libs/libsoup-2.4.dll.a -Lc:/devel/dist/win32/glib-2.20.4-1/lib -Lc:/devel/dist/win32/libxml2-2.7.3-1/lib -lxml2 -lws2_32 -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl -mthreads -Lc:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/lib
987
+ ./.libs/lt-dns.c: In function `lt_error_core':
988
+ ./.libs/lt-dns.c:752: warning: function might be possible candidate for `printf' format attribute
989
+ gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -I.. -DSRCDIR=\""."\" -DLIBSOUP_DISABLE_DEPRECATED -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT forms-test.o -MD -MP -MF .deps/forms-test.Tpo -c -o forms-test.o forms-test.c
990
+ In file included from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gthread.h:36,
991
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gasyncqueue.h:34,
992
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib.h:34,
993
+ from forms-test.c:19:
994
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:137: warning: function declaration isn't a prototype
995
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h: In function `_g_win32_get_system_data_dirs':
996
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:148: warning: function declaration isn't a prototype
997
+ mv -f .deps/forms-test.Tpo .deps/forms-test.Po
998
+ /bin/sh ../libtool --tag=CC --mode=link gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -L/devel/dist/win32/proxy-libintl-20080918/lib -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o forms-test.exe forms-test.o test-utils.o ../libsoup/libsoup-2.4.la -Lc:/devel/dist/win32/glib-2.20.4-1/lib -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl
999
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o .libs/forms-test.exe forms-test.o test-utils.o -L/devel/dist/win32/proxy-libintl-20080918/lib ../libsoup/.libs/libsoup-2.4.dll.a -Lc:/devel/dist/win32/glib-2.20.4-1/lib -Lc:/devel/dist/win32/libxml2-2.7.3-1/lib -lxml2 -lws2_32 -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl -mthreads -Lc:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/lib
1000
+
1001
+ Info: resolving __SOUP_METHOD_GET by linking to __imp___SOUP_METHOD_GET (auto-import)
1002
+ Info: resolving __SOUP_METHOD_HEAD by linking to __imp___SOUP_METHOD_HEAD (auto-import)
1003
+ Info: resolving __SOUP_METHOD_POST by linking to __imp___SOUP_METHOD_POST (auto-import)
1004
+ c:\opt\mingw\bin\..\lib\gcc\mingw32\3.4.5\..\..\..\..\mingw32\bin\ld.exe: warning: auto-importing has been activated without --enable-auto-import specified on the command line.
1005
+ This should work unless it involves constant data structures referencing symbols from auto-imported DLLs.
1006
+ gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -I.. -DSRCDIR=\""."\" -DLIBSOUP_DISABLE_DEPRECATED -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT get.o -MD -MP -MF .deps/get.Tpo -c -o get.o get.c
1007
+ In file included from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gthread.h:36,
1008
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gasyncqueue.h:34,
1009
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib.h:34,
1010
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/gobject/gtype.h:26,
1011
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/gobject/gboxed.h:26,
1012
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib-object.h:25,
1013
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/gio/gioenums.h:30,
1014
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/gio/giotypes.h:30,
1015
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/gio/gio.h:28,
1016
+ from ../libsoup/soup-address.h:11,
1017
+ from ../libsoup/soup.h:13,
1018
+ from get.c:22:
1019
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:137: warning: function declaration isn't a prototype
1020
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h: In function `_g_win32_get_system_data_dirs':
1021
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:148: warning: function declaration isn't a prototype
1022
+ mv -f .deps/get.Tpo .deps/get.Po
1023
+ /bin/sh ../libtool --tag=CC --mode=link gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -L/devel/dist/win32/proxy-libintl-20080918/lib -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o get.exe get.o ../libsoup/libsoup-2.4.la -Lc:/devel/dist/win32/glib-2.20.4-1/lib -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl
1024
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o .libs/get.exe get.o -L/devel/dist/win32/proxy-libintl-20080918/lib ../libsoup/.libs/libsoup-2.4.dll.a -Lc:/devel/dist/win32/glib-2.20.4-1/lib -Lc:/devel/dist/win32/libxml2-2.7.3-1/lib -lxml2 -lws2_32 -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl -mthreads -Lc:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/lib
1025
+
1026
+ Info: resolving __SOUP_METHOD_GET by linking to __imp___SOUP_METHOD_GET (auto-import)
1027
+ Info: resolving __SOUP_METHOD_HEAD by linking to __imp___SOUP_METHOD_HEAD (auto-import)
1028
+ c:\opt\mingw\bin\..\lib\gcc\mingw32\3.4.5\..\..\..\..\mingw32\bin\ld.exe: warning: auto-importing has been activated without --enable-auto-import specified on the command line.
1029
+ This should work unless it involves constant data structures referencing symbols from auto-imported DLLs.
1030
+ gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -I.. -DSRCDIR=\""."\" -DLIBSOUP_DISABLE_DEPRECATED -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT getbug.o -MD -MP -MF .deps/getbug.Tpo -c -o getbug.o getbug.c
1031
+ In file included from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gthread.h:36,
1032
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gasyncqueue.h:34,
1033
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib.h:34,
1034
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/gobject/gtype.h:26,
1035
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/gobject/gboxed.h:26,
1036
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib-object.h:25,
1037
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/gio/gioenums.h:30,
1038
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/gio/giotypes.h:30,
1039
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/gio/gio.h:28,
1040
+ from ../libsoup/soup-address.h:11,
1041
+ from ../libsoup/soup.h:13,
1042
+ from getbug.c:15:
1043
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:137: warning: function declaration isn't a prototype
1044
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h: In function `_g_win32_get_system_data_dirs':
1045
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:148: warning: function declaration isn't a prototype
1046
+ getbug.c: In function `main':
1047
+ getbug.c:96: warning: 'bug' might be used uninitialized in this function
1048
+ mv -f .deps/getbug.Tpo .deps/getbug.Po
1049
+ /bin/sh ../libtool --tag=CC --mode=link gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -L/devel/dist/win32/proxy-libintl-20080918/lib -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o getbug.exe getbug.o ../libsoup/libsoup-2.4.la -Lc:/devel/dist/win32/glib-2.20.4-1/lib -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl
1050
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o .libs/getbug.exe getbug.o -L/devel/dist/win32/proxy-libintl-20080918/lib ../libsoup/.libs/libsoup-2.4.dll.a -Lc:/devel/dist/win32/glib-2.20.4-1/lib -Lc:/devel/dist/win32/libxml2-2.7.3-1/lib -lxml2 -lws2_32 -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl -mthreads -Lc:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/lib
1051
+
1052
+ gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -I.. -DSRCDIR=\""."\" -DLIBSOUP_DISABLE_DEPRECATED -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT header-parsing.o -MD -MP -MF .deps/header-parsing.Tpo -c -o header-parsing.o header-parsing.c
1053
+ In file included from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gthread.h:36,
1054
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gasyncqueue.h:34,
1055
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib.h:34,
1056
+ from ../libsoup/soup-types.h:9,
1057
+ from ../libsoup/soup-message.h:9,
1058
+ from header-parsing.c:7:
1059
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:137: warning: function declaration isn't a prototype
1060
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h: In function `_g_win32_get_system_data_dirs':
1061
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:148: warning: function declaration isn't a prototype
1062
+ mv -f .deps/header-parsing.Tpo .deps/header-parsing.Po
1063
+ /bin/sh ../libtool --tag=CC --mode=link gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -L/devel/dist/win32/proxy-libintl-20080918/lib -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o header-parsing.exe header-parsing.o test-utils.o ../libsoup/libsoup-2.4.la -Lc:/devel/dist/win32/glib-2.20.4-1/lib -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl
1064
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o .libs/header-parsing.exe header-parsing.o test-utils.o -L/devel/dist/win32/proxy-libintl-20080918/lib ../libsoup/.libs/libsoup-2.4.dll.a -Lc:/devel/dist/win32/glib-2.20.4-1/lib -Lc:/devel/dist/win32/libxml2-2.7.3-1/lib -lxml2 -lws2_32 -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl -mthreads -Lc:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/lib
1065
+
1066
+ gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -I.. -DSRCDIR=\""."\" -DLIBSOUP_DISABLE_DEPRECATED -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT misc-test.o -MD -MP -MF .deps/misc-test.Tpo -c -o misc-test.o misc-test.c
1067
+ In file included from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gthread.h:36,
1068
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gasyncqueue.h:34,
1069
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib.h:34,
1070
+ from misc-test.c:16:
1071
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:137: warning: function declaration isn't a prototype
1072
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h: In function `_g_win32_get_system_data_dirs':
1073
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:148: warning: function declaration isn't a prototype
1074
+ misc-test.c: In function `do_callback_unref_test':
1075
+ misc-test.c:164: warning: dereferencing type-punned pointer will break strict-aliasing rules
1076
+ misc-test.c:169: warning: dereferencing type-punned pointer will break strict-aliasing rules
1077
+ misc-test.c:171: warning: dereferencing type-punned pointer will break strict-aliasing rules
1078
+ misc-test.c:181: warning: dereferencing type-punned pointer will break strict-aliasing rules
1079
+ misc-test.c:187: warning: dereferencing type-punned pointer will break strict-aliasing rules
1080
+ misc-test.c:193: warning: dereferencing type-punned pointer will break strict-aliasing rules
1081
+ mv -f .deps/misc-test.Tpo .deps/misc-test.Po
1082
+ /bin/sh ../libtool --tag=CC --mode=link gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -L/devel/dist/win32/proxy-libintl-20080918/lib -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o misc-test.exe misc-test.o test-utils.o ../libsoup/libsoup-2.4.la -Lc:/devel/dist/win32/glib-2.20.4-1/lib -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl
1083
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o .libs/misc-test.exe misc-test.o test-utils.o -L/devel/dist/win32/proxy-libintl-20080918/lib ../libsoup/.libs/libsoup-2.4.dll.a -Lc:/devel/dist/win32/glib-2.20.4-1/lib -Lc:/devel/dist/win32/libxml2-2.7.3-1/lib -lxml2 -lws2_32 -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl -mthreads -Lc:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/lib
1084
+
1085
+ Info: resolving __SOUP_METHOD_GET by linking to __imp___SOUP_METHOD_GET (auto-import)
1086
+ c:\opt\mingw\bin\..\lib\gcc\mingw32\3.4.5\..\..\..\..\mingw32\bin\ld.exe: warning: auto-importing has been activated without --enable-auto-import specified on the command line.
1087
+ This should work unless it involves constant data structures referencing symbols from auto-imported DLLs.
1088
+ gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -I.. -DSRCDIR=\""."\" -DLIBSOUP_DISABLE_DEPRECATED -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT ntlm-test.o -MD -MP -MF .deps/ntlm-test.Tpo -c -o ntlm-test.o ntlm-test.c
1089
+ In file included from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gthread.h:36,
1090
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gasyncqueue.h:34,
1091
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib.h:34,
1092
+ from ntlm-test.c:22:
1093
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:137: warning: function declaration isn't a prototype
1094
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h: In function `_g_win32_get_system_data_dirs':
1095
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:148: warning: function declaration isn't a prototype
1096
+ mv -f .deps/ntlm-test.Tpo .deps/ntlm-test.Po
1097
+ /bin/sh ../libtool --tag=CC --mode=link gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -L/devel/dist/win32/proxy-libintl-20080918/lib -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o ntlm-test.exe ntlm-test.o test-utils.o ../libsoup/libsoup-2.4.la -Lc:/devel/dist/win32/glib-2.20.4-1/lib -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl
1098
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o .libs/ntlm-test.exe ntlm-test.o test-utils.o -L/devel/dist/win32/proxy-libintl-20080918/lib ../libsoup/.libs/libsoup-2.4.dll.a -Lc:/devel/dist/win32/glib-2.20.4-1/lib -Lc:/devel/dist/win32/libxml2-2.7.3-1/lib -lxml2 -lws2_32 -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl -mthreads -Lc:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/lib
1099
+
1100
+ Info: resolving __SOUP_METHOD_GET by linking to __imp___SOUP_METHOD_GET (auto-import)
1101
+ c:\opt\mingw\bin\..\lib\gcc\mingw32\3.4.5\..\..\..\..\mingw32\bin\ld.exe: warning: auto-importing has been activated without --enable-auto-import specified on the command line.
1102
+ This should work unless it involves constant data structures referencing symbols from auto-imported DLLs.
1103
+ gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -I.. -DSRCDIR=\""."\" -DLIBSOUP_DISABLE_DEPRECATED -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT redirect-test.o -MD -MP -MF .deps/redirect-test.Tpo -c -o redirect-test.o redirect-test.c
1104
+ In file included from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gthread.h:36,
1105
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gasyncqueue.h:34,
1106
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib.h:34,
1107
+ from redirect-test.c:12:
1108
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:137: warning: function declaration isn't a prototype
1109
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h: In function `_g_win32_get_system_data_dirs':
1110
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:148: warning: function declaration isn't a prototype
1111
+ mv -f .deps/redirect-test.Tpo .deps/redirect-test.Po
1112
+ /bin/sh ../libtool --tag=CC --mode=link gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -L/devel/dist/win32/proxy-libintl-20080918/lib -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o redirect-test.exe redirect-test.o test-utils.o ../libsoup/libsoup-2.4.la -Lc:/devel/dist/win32/glib-2.20.4-1/lib -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl
1113
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o .libs/redirect-test.exe redirect-test.o test-utils.o -L/devel/dist/win32/proxy-libintl-20080918/lib ../libsoup/.libs/libsoup-2.4.dll.a -Lc:/devel/dist/win32/glib-2.20.4-1/lib -Lc:/devel/dist/win32/libxml2-2.7.3-1/lib -lxml2 -lws2_32 -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl -mthreads -Lc:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/lib
1114
+
1115
+ Info: resolving __SOUP_METHOD_POST by linking to __imp___SOUP_METHOD_POST (auto-import)
1116
+ Info: resolving __SOUP_METHOD_GET by linking to __imp___SOUP_METHOD_GET (auto-import)
1117
+ Info: resolving __SOUP_METHOD_HEAD by linking to __imp___SOUP_METHOD_HEAD (auto-import)
1118
+ c:\opt\mingw\bin\..\lib\gcc\mingw32\3.4.5\..\..\..\..\mingw32\bin\ld.exe: warning: auto-importing has been activated without --enable-auto-import specified on the command line.
1119
+ This should work unless it involves constant data structures referencing symbols from auto-imported DLLs.
1120
+ gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -I.. -DSRCDIR=\""."\" -DLIBSOUP_DISABLE_DEPRECATED -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT simple-httpd.o -MD -MP -MF .deps/simple-httpd.Tpo -c -o simple-httpd.o simple-httpd.c
1121
+ In file included from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gthread.h:36,
1122
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gasyncqueue.h:34,
1123
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib.h:34,
1124
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/gobject/gtype.h:26,
1125
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/gobject/gboxed.h:26,
1126
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib-object.h:25,
1127
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/gio/gioenums.h:30,
1128
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/gio/giotypes.h:30,
1129
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/gio/gio.h:28,
1130
+ from ../libsoup/soup-address.h:11,
1131
+ from ../libsoup/soup.h:13,
1132
+ from simple-httpd.c:23:
1133
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:137: warning: function declaration isn't a prototype
1134
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h: In function `_g_win32_get_system_data_dirs':
1135
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:148: warning: function declaration isn't a prototype
1136
+ mv -f .deps/simple-httpd.Tpo .deps/simple-httpd.Po
1137
+ /bin/sh ../libtool --tag=CC --mode=link gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -L/devel/dist/win32/proxy-libintl-20080918/lib -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o simple-httpd.exe simple-httpd.o ../libsoup/libsoup-2.4.la -Lc:/devel/dist/win32/glib-2.20.4-1/lib -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl
1138
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o .libs/simple-httpd.exe simple-httpd.o -L/devel/dist/win32/proxy-libintl-20080918/lib ../libsoup/.libs/libsoup-2.4.dll.a -Lc:/devel/dist/win32/glib-2.20.4-1/lib -Lc:/devel/dist/win32/libxml2-2.7.3-1/lib -lxml2 -lws2_32 -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl -mthreads -Lc:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/lib
1139
+
1140
+ Info: resolving __SOUP_METHOD_GET by linking to __imp___SOUP_METHOD_GET (auto-import)
1141
+ Info: resolving __SOUP_METHOD_HEAD by linking to __imp___SOUP_METHOD_HEAD (auto-import)
1142
+ Info: resolving __SOUP_METHOD_PUT by linking to __imp___SOUP_METHOD_PUT (auto-import)
1143
+ c:\opt\mingw\bin\..\lib\gcc\mingw32\3.4.5\..\..\..\..\mingw32\bin\ld.exe: warning: auto-importing has been activated without --enable-auto-import specified on the command line.
1144
+ This should work unless it involves constant data structures referencing symbols from auto-imported DLLs.
1145
+ gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -I.. -DSRCDIR=\""."\" -DLIBSOUP_DISABLE_DEPRECATED -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT simple-proxy.o -MD -MP -MF .deps/simple-proxy.Tpo -c -o simple-proxy.o simple-proxy.c
1146
+ In file included from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gthread.h:36,
1147
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gasyncqueue.h:34,
1148
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib.h:34,
1149
+ from simple-proxy.c:16:
1150
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:137: warning: function declaration isn't a prototype
1151
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h: In function `_g_win32_get_system_data_dirs':
1152
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:148: warning: function declaration isn't a prototype
1153
+ mv -f .deps/simple-proxy.Tpo .deps/simple-proxy.Po
1154
+ /bin/sh ../libtool --tag=CC --mode=link gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -L/devel/dist/win32/proxy-libintl-20080918/lib -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o simple-proxy.exe simple-proxy.o ../libsoup/libsoup-2.4.la -Lc:/devel/dist/win32/glib-2.20.4-1/lib -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl
1155
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o .libs/simple-proxy.exe simple-proxy.o -L/devel/dist/win32/proxy-libintl-20080918/lib ../libsoup/.libs/libsoup-2.4.dll.a -Lc:/devel/dist/win32/glib-2.20.4-1/lib -Lc:/devel/dist/win32/libxml2-2.7.3-1/lib -lxml2 -lws2_32 -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl -mthreads -Lc:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/lib
1156
+
1157
+ Info: resolving __SOUP_METHOD_CONNECT by linking to __imp___SOUP_METHOD_CONNECT (auto-import)
1158
+ c:\opt\mingw\bin\..\lib\gcc\mingw32\3.4.5\..\..\..\..\mingw32\bin\ld.exe: warning: auto-importing has been activated without --enable-auto-import specified on the command line.
1159
+ This should work unless it involves constant data structures referencing symbols from auto-imported DLLs.
1160
+ gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -I.. -DSRCDIR=\""."\" -DLIBSOUP_DISABLE_DEPRECATED -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT streaming-test.o -MD -MP -MF .deps/streaming-test.Tpo -c -o streaming-test.o streaming-test.c
1161
+ In file included from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gthread.h:36,
1162
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gasyncqueue.h:34,
1163
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib.h:34,
1164
+ from streaming-test.c:12:
1165
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:137: warning: function declaration isn't a prototype
1166
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h: In function `_g_win32_get_system_data_dirs':
1167
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:148: warning: function declaration isn't a prototype
1168
+ mv -f .deps/streaming-test.Tpo .deps/streaming-test.Po
1169
+ /bin/sh ../libtool --tag=CC --mode=link gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -L/devel/dist/win32/proxy-libintl-20080918/lib -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o streaming-test.exe streaming-test.o test-utils.o ../libsoup/libsoup-2.4.la -Lc:/devel/dist/win32/glib-2.20.4-1/lib -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl
1170
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o .libs/streaming-test.exe streaming-test.o test-utils.o -L/devel/dist/win32/proxy-libintl-20080918/lib ../libsoup/.libs/libsoup-2.4.dll.a -Lc:/devel/dist/win32/glib-2.20.4-1/lib -Lc:/devel/dist/win32/libxml2-2.7.3-1/lib -lxml2 -lws2_32 -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl -mthreads -Lc:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/lib
1171
+
1172
+ gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -I.. -DSRCDIR=\""."\" -DLIBSOUP_DISABLE_DEPRECATED -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT timeout-test.o -MD -MP -MF .deps/timeout-test.Tpo -c -o timeout-test.o timeout-test.c
1173
+ In file included from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gthread.h:36,
1174
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gasyncqueue.h:34,
1175
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib.h:34,
1176
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/gobject/gtype.h:26,
1177
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/gobject/gboxed.h:26,
1178
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib-object.h:25,
1179
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/gio/gioenums.h:30,
1180
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/gio/giotypes.h:30,
1181
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/gio/gio.h:28,
1182
+ from ../libsoup/soup-address.h:11,
1183
+ from ../libsoup/soup.h:13,
1184
+ from timeout-test.c:11:
1185
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:137: warning: function declaration isn't a prototype
1186
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h: In function `_g_win32_get_system_data_dirs':
1187
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:148: warning: function declaration isn't a prototype
1188
+ mv -f .deps/timeout-test.Tpo .deps/timeout-test.Po
1189
+ /bin/sh ../libtool --tag=CC --mode=link gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -L/devel/dist/win32/proxy-libintl-20080918/lib -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o timeout-test.exe timeout-test.o test-utils.o ../libsoup/libsoup-2.4.la -Lc:/devel/dist/win32/glib-2.20.4-1/lib -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl
1190
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o .libs/timeout-test.exe timeout-test.o test-utils.o -L/devel/dist/win32/proxy-libintl-20080918/lib ../libsoup/.libs/libsoup-2.4.dll.a -Lc:/devel/dist/win32/glib-2.20.4-1/lib -Lc:/devel/dist/win32/libxml2-2.7.3-1/lib -lxml2 -lws2_32 -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl -mthreads -Lc:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/lib
1191
+
1192
+ gcc -mtune=pentium3 -mthreads -mms-bitfields -DHAVE_CONFIG_H -I. -I.. -I.. -DSRCDIR=\""."\" -DLIBSOUP_DISABLE_DEPRECATED -Ic:/devel/dist/win32/libxml2-2.7.3-1/include/libxml2 -mms-bitfields -Ic:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0 -Ic:/devel/dist/win32/glib-2.20.4-1/lib/glib-2.0/include -DG_DISABLE_SINGLE_INCLUDES -I/devel/dist/win32/proxy-libintl-20080918/include -I/devel/dist/win32/win-iconv-tml-20090213/include -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -MT uri-parsing.o -MD -MP -MF .deps/uri-parsing.Tpo -c -o uri-parsing.o uri-parsing.c
1193
+ In file included from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gthread.h:36,
1194
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gasyncqueue.h:34,
1195
+ from c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib.h:34,
1196
+ from ../libsoup/soup-types.h:9,
1197
+ from ../libsoup/soup-uri.h:11,
1198
+ from uri-parsing.c:9:
1199
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:137: warning: function declaration isn't a prototype
1200
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h: In function `_g_win32_get_system_data_dirs':
1201
+ c:/devel/dist/win32/glib-2.20.4-1/include/glib-2.0/glib/gutils.h:148: warning: function declaration isn't a prototype
1202
+ mv -f .deps/uri-parsing.Tpo .deps/uri-parsing.Po
1203
+ /bin/sh ../libtool --tag=CC --mode=link gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -L/devel/dist/win32/proxy-libintl-20080918/lib -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o uri-parsing.exe uri-parsing.o test-utils.o ../libsoup/libsoup-2.4.la -Lc:/devel/dist/win32/glib-2.20.4-1/lib -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl
1204
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o .libs/uri-parsing.exe uri-parsing.o test-utils.o -L/devel/dist/win32/proxy-libintl-20080918/lib ../libsoup/.libs/libsoup-2.4.dll.a -Lc:/devel/dist/win32/glib-2.20.4-1/lib -Lc:/devel/dist/win32/libxml2-2.7.3-1/lib -lxml2 -lws2_32 -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl -mthreads -Lc:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/lib
1205
+
1206
+ make[2]: Entering directory `/devel/src/gnome/libsoup/2.26.3-1_win32/tests'
1207
+ make[2]: Nothing to be done for `install-exec-am'.
1208
+ make[2]: Nothing to be done for `install-data-am'.
1209
+ make[2]: Leaving directory `/devel/src/gnome/libsoup/2.26.3-1_win32/tests'
1210
+ make[1]: Leaving directory `/devel/src/gnome/libsoup/2.26.3-1_win32/tests'
1211
+ Making install in docs
1212
+ make[1]: Entering directory `/devel/src/gnome/libsoup/2.26.3-1_win32/docs'
1213
+ Making install in reference
1214
+ make[2]: Entering directory `/devel/src/gnome/libsoup/2.26.3-1_win32/docs/reference'
1215
+ make[3]: Entering directory `/devel/src/gnome/libsoup/2.26.3-1_win32/docs/reference'
1216
+ make[3]: Nothing to be done for `install-exec-am'.
1217
+ installfiles=`echo ./html/*`; \
1218
+ if test "$installfiles" = './html/*'; \
1219
+ then echo '-- Nothing to install' ; \
1220
+ else \
1221
+ if test -n ""; then \
1222
+ installdir="c:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/share/gtk-doc/html/libsoup-2.4-"; \
1223
+ else \
1224
+ installdir="c:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/share/gtk-doc/html/libsoup-2.4"; \
1225
+ fi; \
1226
+ /bin/sh /devel/src/gnome/libsoup/2.26.3-1_win32/install-sh -d ${installdir} ; \
1227
+ for i in $installfiles; do \
1228
+ echo '-- Installing '$i ; \
1229
+ /opt/local/bin/install -c -m 644 $i ${installdir}; \
1230
+ done; \
1231
+ if test -n ""; then \
1232
+ mv -f ${installdir}/libsoup-2.4.devhelp2 \
1233
+ ${installdir}/libsoup-2.4-.devhelp2; \
1234
+ mv -f ${installdir}/libsoup-2.4.devhelp \
1235
+ ${installdir}/libsoup-2.4-.devhelp; \
1236
+ fi; \
1237
+ ! which gtkdoc-rebase >/dev/null 2>&1 || \
1238
+ gtkdoc-rebase --relative --dest-dir= --html-dir=${installdir} ; \
1239
+ fi
1240
+ -- Installing ./html/SoupAddress.html
1241
+ -- Installing ./html/SoupAuth.html
1242
+ -- Installing ./html/SoupAuthDomain.html
1243
+ -- Installing ./html/SoupAuthDomainBasic.html
1244
+ -- Installing ./html/SoupAuthDomainDigest.html
1245
+ -- Installing ./html/SoupCookieJar.html
1246
+ -- Installing ./html/SoupCookieJarSqlite.html
1247
+ -- Installing ./html/SoupCookieJarText.html
1248
+ -- Installing ./html/SoupLogger.html
1249
+ -- Installing ./html/SoupMessage.html
1250
+ -- Installing ./html/SoupProxyResolver.html
1251
+ -- Installing ./html/SoupServer.html
1252
+ -- Installing ./html/SoupSession.html
1253
+ -- Installing ./html/SoupSessionAsync.html
1254
+ -- Installing ./html/SoupSessionFeature.html
1255
+ -- Installing ./html/SoupSessionSync.html
1256
+ -- Installing ./html/SoupSocket.html
1257
+ -- Installing ./html/ch01.html
1258
+ -- Installing ./html/ch02.html
1259
+ -- Installing ./html/ch03.html
1260
+ -- Installing ./html/ch04.html
1261
+ -- Installing ./html/ch05.html
1262
+ -- Installing ./html/home.png
1263
+ -- Installing ./html/index.html
1264
+ -- Installing ./html/index.sgml
1265
+ -- Installing ./html/ix01.html
1266
+ -- Installing ./html/left.png
1267
+ -- Installing ./html/libsoup-2.4.devhelp
1268
+ -- Installing ./html/libsoup-2.4.devhelp2
1269
+ -- Installing ./html/libsoup-24-GValue-Support.html
1270
+ -- Installing ./html/libsoup-24-HTML-Form-Support.html
1271
+ -- Installing ./html/libsoup-24-Soup-Miscellaneous-Utilities.html
1272
+ -- Installing ./html/libsoup-24-SoupCookie.html
1273
+ -- Installing ./html/libsoup-24-SoupMessageBody.html
1274
+ -- Installing ./html/libsoup-24-SoupMessageHeaders.html
1275
+ -- Installing ./html/libsoup-24-SoupMultipart.html
1276
+ -- Installing ./html/libsoup-24-SoupURI.html
1277
+ -- Installing ./html/libsoup-24-XMLRPC-Support.html
1278
+ -- Installing ./html/libsoup-24-soup-gnome-features.html
1279
+ -- Installing ./html/libsoup-24-soup-method.html
1280
+ -- Installing ./html/libsoup-24-soup-status.html
1281
+ -- Installing ./html/libsoup-build-howto.html
1282
+ -- Installing ./html/libsoup-client-howto.html
1283
+ -- Installing ./html/libsoup-porting-2.2-2.4.html
1284
+ -- Installing ./html/libsoup-server-howto.html
1285
+ -- Installing ./html/right.png
1286
+ -- Installing ./html/style.css
1287
+ -- Installing ./html/up.png
1288
+ make[3]: Leaving directory `/devel/src/gnome/libsoup/2.26.3-1_win32/docs/reference'
1289
+ make[2]: Leaving directory `/devel/src/gnome/libsoup/2.26.3-1_win32/docs/reference'
1290
+ make[2]: Entering directory `/devel/src/gnome/libsoup/2.26.3-1_win32/docs'
1291
+ make[3]: Entering directory `/devel/src/gnome/libsoup/2.26.3-1_win32/docs'
1292
+ make[3]: Nothing to be done for `install-exec-am'.
1293
+ make[3]: Nothing to be done for `install-data-am'.
1294
+ make[3]: Leaving directory `/devel/src/gnome/libsoup/2.26.3-1_win32/docs'
1295
+ make[2]: Leaving directory `/devel/src/gnome/libsoup/2.26.3-1_win32/docs'
1296
+ make[1]: Leaving directory `/devel/src/gnome/libsoup/2.26.3-1_win32/docs'
1297
+ make[1]: Entering directory `/devel/src/gnome/libsoup/2.26.3-1_win32'
1298
+ make[2]: Entering directory `/devel/src/gnome/libsoup/2.26.3-1_win32'
1299
+ make[2]: Nothing to be done for `install-exec-am'.
1300
+ test -z "c:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/lib/pkgconfig" || /bin/mkdir -p "c:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/lib/pkgconfig"
1301
+ /opt/local/bin/install -c -m 644 'libsoup-2.4.pc' 'c:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/lib/pkgconfig/libsoup-2.4.pc'
1302
+ make[2]: Leaving directory `/devel/src/gnome/libsoup/2.26.3-1_win32'
1303
+ make[1]: Leaving directory `/devel/src/gnome/libsoup/2.26.3-1_win32'
1304
+ ++ PATH='/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/bin:/devel/dist/win32/libxml2-2.7.3-1/bin:/devel/dist/win32/glib-2.20.4-1/bin:/opt/misc/bin:/opt/gnu/bin:/opt/gnuwin32/bin:/opt/freetype/bin:/opt/pthread/bin:/opt/mingw/bin:/opt/svn/bin:/opt/local/bin:/c/WINDOWS/Microsoft.NET/Framework/v2.0.50727:/opt/xemacs-21.4/XEmacs-21.4.19/i586-pc-win32:/opt/sysinternals/bin:/bin:/c/WINDOWS/system32:/c/WINDOWS:/c/Program Files/Novell/GroupWise:/c/WINDOWS/system32/WindowsPowerShell/v1.0:/c/Program Files/QuickTime/QTSystem/'
1305
+ ++ make check
1306
+ Making check in libsoup
1307
+ make[1]: Entering directory `/devel/src/gnome/libsoup/2.26.3-1_win32/libsoup'
1308
+ make check-am
1309
+ make[2]: Entering directory `/devel/src/gnome/libsoup/2.26.3-1_win32/libsoup'
1310
+ make[2]: Nothing to be done for `check-am'.
1311
+ make[2]: Leaving directory `/devel/src/gnome/libsoup/2.26.3-1_win32/libsoup'
1312
+ make[1]: Leaving directory `/devel/src/gnome/libsoup/2.26.3-1_win32/libsoup'
1313
+ Making check in tests
1314
+ make[1]: Entering directory `/devel/src/gnome/libsoup/2.26.3-1_win32/tests'
1315
+ /bin/sh ../libtool --tag=CC --mode=link gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -L/devel/dist/win32/proxy-libintl-20080918/lib -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o context-test.exe context-test.o test-utils.o ../libsoup/libsoup-2.4.la -Lc:/devel/dist/win32/glib-2.20.4-1/lib -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl
1316
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o .libs/context-test.exe context-test.o test-utils.o -L/devel/dist/win32/proxy-libintl-20080918/lib ../libsoup/.libs/libsoup-2.4.dll.a -Lc:/devel/dist/win32/glib-2.20.4-1/lib -Lc:/devel/dist/win32/libxml2-2.7.3-1/lib -lxml2 -lws2_32 -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl -mthreads -Lc:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/lib
1317
+
1318
+ Info: resolving __SOUP_METHOD_GET by linking to __imp___SOUP_METHOD_GET (auto-import)
1319
+ c:\opt\mingw\bin\..\lib\gcc\mingw32\3.4.5\..\..\..\..\mingw32\bin\ld.exe: warning: auto-importing has been activated without --enable-auto-import specified on the command line.
1320
+ This should work unless it involves constant data structures referencing symbols from auto-imported DLLs.
1321
+ /bin/sh ../libtool --tag=CC --mode=link gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -L/devel/dist/win32/proxy-libintl-20080918/lib -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o continue-test.exe continue-test.o test-utils.o ../libsoup/libsoup-2.4.la -Lc:/devel/dist/win32/glib-2.20.4-1/lib -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl
1322
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o .libs/continue-test.exe continue-test.o test-utils.o -L/devel/dist/win32/proxy-libintl-20080918/lib ../libsoup/.libs/libsoup-2.4.dll.a -Lc:/devel/dist/win32/glib-2.20.4-1/lib -Lc:/devel/dist/win32/libxml2-2.7.3-1/lib -lxml2 -lws2_32 -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl -mthreads -Lc:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/lib
1323
+
1324
+ Info: resolving __SOUP_METHOD_POST by linking to __imp___SOUP_METHOD_POST (auto-import)
1325
+ c:\opt\mingw\bin\..\lib\gcc\mingw32\3.4.5\..\..\..\..\mingw32\bin\ld.exe: warning: auto-importing has been activated without --enable-auto-import specified on the command line.
1326
+ This should work unless it involves constant data structures referencing symbols from auto-imported DLLs.
1327
+ /bin/sh ../libtool --tag=CC --mode=link gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -L/devel/dist/win32/proxy-libintl-20080918/lib -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o date.exe date.o test-utils.o ../libsoup/libsoup-2.4.la -Lc:/devel/dist/win32/glib-2.20.4-1/lib -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl
1328
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o .libs/date.exe date.o test-utils.o -L/devel/dist/win32/proxy-libintl-20080918/lib ../libsoup/.libs/libsoup-2.4.dll.a -Lc:/devel/dist/win32/glib-2.20.4-1/lib -Lc:/devel/dist/win32/libxml2-2.7.3-1/lib -lxml2 -lws2_32 -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl -mthreads -Lc:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/lib
1329
+
1330
+ /bin/sh ../libtool --tag=CC --mode=link gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -L/devel/dist/win32/proxy-libintl-20080918/lib -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o forms-test.exe forms-test.o test-utils.o ../libsoup/libsoup-2.4.la -Lc:/devel/dist/win32/glib-2.20.4-1/lib -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl
1331
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o .libs/forms-test.exe forms-test.o test-utils.o -L/devel/dist/win32/proxy-libintl-20080918/lib ../libsoup/.libs/libsoup-2.4.dll.a -Lc:/devel/dist/win32/glib-2.20.4-1/lib -Lc:/devel/dist/win32/libxml2-2.7.3-1/lib -lxml2 -lws2_32 -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl -mthreads -Lc:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/lib
1332
+
1333
+ Info: resolving __SOUP_METHOD_GET by linking to __imp___SOUP_METHOD_GET (auto-import)
1334
+ Info: resolving __SOUP_METHOD_HEAD by linking to __imp___SOUP_METHOD_HEAD (auto-import)
1335
+ Info: resolving __SOUP_METHOD_POST by linking to __imp___SOUP_METHOD_POST (auto-import)
1336
+ c:\opt\mingw\bin\..\lib\gcc\mingw32\3.4.5\..\..\..\..\mingw32\bin\ld.exe: warning: auto-importing has been activated without --enable-auto-import specified on the command line.
1337
+ This should work unless it involves constant data structures referencing symbols from auto-imported DLLs.
1338
+ /bin/sh ../libtool --tag=CC --mode=link gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -L/devel/dist/win32/proxy-libintl-20080918/lib -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o get.exe get.o ../libsoup/libsoup-2.4.la -Lc:/devel/dist/win32/glib-2.20.4-1/lib -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl
1339
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o .libs/get.exe get.o -L/devel/dist/win32/proxy-libintl-20080918/lib ../libsoup/.libs/libsoup-2.4.dll.a -Lc:/devel/dist/win32/glib-2.20.4-1/lib -Lc:/devel/dist/win32/libxml2-2.7.3-1/lib -lxml2 -lws2_32 -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl -mthreads -Lc:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/lib
1340
+
1341
+ Info: resolving __SOUP_METHOD_GET by linking to __imp___SOUP_METHOD_GET (auto-import)
1342
+ Info: resolving __SOUP_METHOD_HEAD by linking to __imp___SOUP_METHOD_HEAD (auto-import)
1343
+ c:\opt\mingw\bin\..\lib\gcc\mingw32\3.4.5\..\..\..\..\mingw32\bin\ld.exe: warning: auto-importing has been activated without --enable-auto-import specified on the command line.
1344
+ This should work unless it involves constant data structures referencing symbols from auto-imported DLLs.
1345
+ /bin/sh ../libtool --tag=CC --mode=link gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -L/devel/dist/win32/proxy-libintl-20080918/lib -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o getbug.exe getbug.o ../libsoup/libsoup-2.4.la -Lc:/devel/dist/win32/glib-2.20.4-1/lib -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl
1346
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o .libs/getbug.exe getbug.o -L/devel/dist/win32/proxy-libintl-20080918/lib ../libsoup/.libs/libsoup-2.4.dll.a -Lc:/devel/dist/win32/glib-2.20.4-1/lib -Lc:/devel/dist/win32/libxml2-2.7.3-1/lib -lxml2 -lws2_32 -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl -mthreads -Lc:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/lib
1347
+
1348
+ /bin/sh ../libtool --tag=CC --mode=link gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -L/devel/dist/win32/proxy-libintl-20080918/lib -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o header-parsing.exe header-parsing.o test-utils.o ../libsoup/libsoup-2.4.la -Lc:/devel/dist/win32/glib-2.20.4-1/lib -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl
1349
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o .libs/header-parsing.exe header-parsing.o test-utils.o -L/devel/dist/win32/proxy-libintl-20080918/lib ../libsoup/.libs/libsoup-2.4.dll.a -Lc:/devel/dist/win32/glib-2.20.4-1/lib -Lc:/devel/dist/win32/libxml2-2.7.3-1/lib -lxml2 -lws2_32 -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl -mthreads -Lc:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/lib
1350
+
1351
+ /bin/sh ../libtool --tag=CC --mode=link gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -L/devel/dist/win32/proxy-libintl-20080918/lib -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o misc-test.exe misc-test.o test-utils.o ../libsoup/libsoup-2.4.la -Lc:/devel/dist/win32/glib-2.20.4-1/lib -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl
1352
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o .libs/misc-test.exe misc-test.o test-utils.o -L/devel/dist/win32/proxy-libintl-20080918/lib ../libsoup/.libs/libsoup-2.4.dll.a -Lc:/devel/dist/win32/glib-2.20.4-1/lib -Lc:/devel/dist/win32/libxml2-2.7.3-1/lib -lxml2 -lws2_32 -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl -mthreads -Lc:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/lib
1353
+
1354
+ Info: resolving __SOUP_METHOD_GET by linking to __imp___SOUP_METHOD_GET (auto-import)
1355
+ c:\opt\mingw\bin\..\lib\gcc\mingw32\3.4.5\..\..\..\..\mingw32\bin\ld.exe: warning: auto-importing has been activated without --enable-auto-import specified on the command line.
1356
+ This should work unless it involves constant data structures referencing symbols from auto-imported DLLs.
1357
+ /bin/sh ../libtool --tag=CC --mode=link gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -L/devel/dist/win32/proxy-libintl-20080918/lib -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o ntlm-test.exe ntlm-test.o test-utils.o ../libsoup/libsoup-2.4.la -Lc:/devel/dist/win32/glib-2.20.4-1/lib -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl
1358
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o .libs/ntlm-test.exe ntlm-test.o test-utils.o -L/devel/dist/win32/proxy-libintl-20080918/lib ../libsoup/.libs/libsoup-2.4.dll.a -Lc:/devel/dist/win32/glib-2.20.4-1/lib -Lc:/devel/dist/win32/libxml2-2.7.3-1/lib -lxml2 -lws2_32 -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl -mthreads -Lc:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/lib
1359
+
1360
+ Info: resolving __SOUP_METHOD_GET by linking to __imp___SOUP_METHOD_GET (auto-import)
1361
+ c:\opt\mingw\bin\..\lib\gcc\mingw32\3.4.5\..\..\..\..\mingw32\bin\ld.exe: warning: auto-importing has been activated without --enable-auto-import specified on the command line.
1362
+ This should work unless it involves constant data structures referencing symbols from auto-imported DLLs.
1363
+ /bin/sh ../libtool --tag=CC --mode=link gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -L/devel/dist/win32/proxy-libintl-20080918/lib -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o redirect-test.exe redirect-test.o test-utils.o ../libsoup/libsoup-2.4.la -Lc:/devel/dist/win32/glib-2.20.4-1/lib -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl
1364
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o .libs/redirect-test.exe redirect-test.o test-utils.o -L/devel/dist/win32/proxy-libintl-20080918/lib ../libsoup/.libs/libsoup-2.4.dll.a -Lc:/devel/dist/win32/glib-2.20.4-1/lib -Lc:/devel/dist/win32/libxml2-2.7.3-1/lib -lxml2 -lws2_32 -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl -mthreads -Lc:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/lib
1365
+
1366
+ Info: resolving __SOUP_METHOD_POST by linking to __imp___SOUP_METHOD_POST (auto-import)
1367
+ Info: resolving __SOUP_METHOD_GET by linking to __imp___SOUP_METHOD_GET (auto-import)
1368
+ Info: resolving __SOUP_METHOD_HEAD by linking to __imp___SOUP_METHOD_HEAD (auto-import)
1369
+ c:\opt\mingw\bin\..\lib\gcc\mingw32\3.4.5\..\..\..\..\mingw32\bin\ld.exe: warning: auto-importing has been activated without --enable-auto-import specified on the command line.
1370
+ This should work unless it involves constant data structures referencing symbols from auto-imported DLLs.
1371
+ /bin/sh ../libtool --tag=CC --mode=link gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -L/devel/dist/win32/proxy-libintl-20080918/lib -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o simple-httpd.exe simple-httpd.o ../libsoup/libsoup-2.4.la -Lc:/devel/dist/win32/glib-2.20.4-1/lib -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl
1372
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o .libs/simple-httpd.exe simple-httpd.o -L/devel/dist/win32/proxy-libintl-20080918/lib ../libsoup/.libs/libsoup-2.4.dll.a -Lc:/devel/dist/win32/glib-2.20.4-1/lib -Lc:/devel/dist/win32/libxml2-2.7.3-1/lib -lxml2 -lws2_32 -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl -mthreads -Lc:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/lib
1373
+
1374
+ Info: resolving __SOUP_METHOD_GET by linking to __imp___SOUP_METHOD_GET (auto-import)
1375
+ Info: resolving __SOUP_METHOD_HEAD by linking to __imp___SOUP_METHOD_HEAD (auto-import)
1376
+ Info: resolving __SOUP_METHOD_PUT by linking to __imp___SOUP_METHOD_PUT (auto-import)
1377
+ c:\opt\mingw\bin\..\lib\gcc\mingw32\3.4.5\..\..\..\..\mingw32\bin\ld.exe: warning: auto-importing has been activated without --enable-auto-import specified on the command line.
1378
+ This should work unless it involves constant data structures referencing symbols from auto-imported DLLs.
1379
+ /bin/sh ../libtool --tag=CC --mode=link gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -L/devel/dist/win32/proxy-libintl-20080918/lib -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o simple-proxy.exe simple-proxy.o ../libsoup/libsoup-2.4.la -Lc:/devel/dist/win32/glib-2.20.4-1/lib -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl
1380
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o .libs/simple-proxy.exe simple-proxy.o -L/devel/dist/win32/proxy-libintl-20080918/lib ../libsoup/.libs/libsoup-2.4.dll.a -Lc:/devel/dist/win32/glib-2.20.4-1/lib -Lc:/devel/dist/win32/libxml2-2.7.3-1/lib -lxml2 -lws2_32 -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl -mthreads -Lc:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/lib
1381
+
1382
+ Info: resolving __SOUP_METHOD_CONNECT by linking to __imp___SOUP_METHOD_CONNECT (auto-import)
1383
+ c:\opt\mingw\bin\..\lib\gcc\mingw32\3.4.5\..\..\..\..\mingw32\bin\ld.exe: warning: auto-importing has been activated without --enable-auto-import specified on the command line.
1384
+ This should work unless it involves constant data structures referencing symbols from auto-imported DLLs.
1385
+ /bin/sh ../libtool --tag=CC --mode=link gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -L/devel/dist/win32/proxy-libintl-20080918/lib -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o streaming-test.exe streaming-test.o test-utils.o ../libsoup/libsoup-2.4.la -Lc:/devel/dist/win32/glib-2.20.4-1/lib -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl
1386
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o .libs/streaming-test.exe streaming-test.o test-utils.o -L/devel/dist/win32/proxy-libintl-20080918/lib ../libsoup/.libs/libsoup-2.4.dll.a -Lc:/devel/dist/win32/glib-2.20.4-1/lib -Lc:/devel/dist/win32/libxml2-2.7.3-1/lib -lxml2 -lws2_32 -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl -mthreads -Lc:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/lib
1387
+
1388
+ /bin/sh ../libtool --tag=CC --mode=link gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -L/devel/dist/win32/proxy-libintl-20080918/lib -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o timeout-test.exe timeout-test.o test-utils.o ../libsoup/libsoup-2.4.la -Lc:/devel/dist/win32/glib-2.20.4-1/lib -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl
1389
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o .libs/timeout-test.exe timeout-test.o test-utils.o -L/devel/dist/win32/proxy-libintl-20080918/lib ../libsoup/.libs/libsoup-2.4.dll.a -Lc:/devel/dist/win32/glib-2.20.4-1/lib -Lc:/devel/dist/win32/libxml2-2.7.3-1/lib -lxml2 -lws2_32 -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl -mthreads -Lc:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/lib
1390
+
1391
+ /bin/sh ../libtool --tag=CC --mode=link gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -L/devel/dist/win32/proxy-libintl-20080918/lib -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o uri-parsing.exe uri-parsing.o test-utils.o ../libsoup/libsoup-2.4.la -Lc:/devel/dist/win32/glib-2.20.4-1/lib -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl
1392
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o .libs/uri-parsing.exe uri-parsing.o test-utils.o -L/devel/dist/win32/proxy-libintl-20080918/lib ../libsoup/.libs/libsoup-2.4.dll.a -Lc:/devel/dist/win32/glib-2.20.4-1/lib -Lc:/devel/dist/win32/libxml2-2.7.3-1/lib -lxml2 -lws2_32 -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl -mthreads -Lc:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/lib
1393
+
1394
+ make check-TESTS check-local
1395
+ make[2]: Entering directory `/devel/src/gnome/libsoup/2.26.3-1_win32/tests'
1396
+ /bin/sh ../libtool --tag=CC --mode=link gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -L/devel/dist/win32/proxy-libintl-20080918/lib -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o context-test.exe context-test.o test-utils.o ../libsoup/libsoup-2.4.la -Lc:/devel/dist/win32/glib-2.20.4-1/lib -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl
1397
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o .libs/context-test.exe context-test.o test-utils.o -L/devel/dist/win32/proxy-libintl-20080918/lib ../libsoup/.libs/libsoup-2.4.dll.a -Lc:/devel/dist/win32/glib-2.20.4-1/lib -Lc:/devel/dist/win32/libxml2-2.7.3-1/lib -lxml2 -lws2_32 -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl -mthreads -Lc:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/lib
1398
+
1399
+ Info: resolving __SOUP_METHOD_GET by linking to __imp___SOUP_METHOD_GET (auto-import)
1400
+ c:\opt\mingw\bin\..\lib\gcc\mingw32\3.4.5\..\..\..\..\mingw32\bin\ld.exe: warning: auto-importing has been activated without --enable-auto-import specified on the command line.
1401
+ This should work unless it involves constant data structures referencing symbols from auto-imported DLLs.
1402
+ /bin/sh ../libtool --tag=CC --mode=link gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -L/devel/dist/win32/proxy-libintl-20080918/lib -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o continue-test.exe continue-test.o test-utils.o ../libsoup/libsoup-2.4.la -Lc:/devel/dist/win32/glib-2.20.4-1/lib -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl
1403
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o .libs/continue-test.exe continue-test.o test-utils.o -L/devel/dist/win32/proxy-libintl-20080918/lib ../libsoup/.libs/libsoup-2.4.dll.a -Lc:/devel/dist/win32/glib-2.20.4-1/lib -Lc:/devel/dist/win32/libxml2-2.7.3-1/lib -lxml2 -lws2_32 -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl -mthreads -Lc:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/lib
1404
+
1405
+ Info: resolving __SOUP_METHOD_POST by linking to __imp___SOUP_METHOD_POST (auto-import)
1406
+ c:\opt\mingw\bin\..\lib\gcc\mingw32\3.4.5\..\..\..\..\mingw32\bin\ld.exe: warning: auto-importing has been activated without --enable-auto-import specified on the command line.
1407
+ This should work unless it involves constant data structures referencing symbols from auto-imported DLLs.
1408
+ /bin/sh ../libtool --tag=CC --mode=link gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -L/devel/dist/win32/proxy-libintl-20080918/lib -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o date.exe date.o test-utils.o ../libsoup/libsoup-2.4.la -Lc:/devel/dist/win32/glib-2.20.4-1/lib -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl
1409
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o .libs/date.exe date.o test-utils.o -L/devel/dist/win32/proxy-libintl-20080918/lib ../libsoup/.libs/libsoup-2.4.dll.a -Lc:/devel/dist/win32/glib-2.20.4-1/lib -Lc:/devel/dist/win32/libxml2-2.7.3-1/lib -lxml2 -lws2_32 -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl -mthreads -Lc:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/lib
1410
+
1411
+ /bin/sh ../libtool --tag=CC --mode=link gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -L/devel/dist/win32/proxy-libintl-20080918/lib -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o header-parsing.exe header-parsing.o test-utils.o ../libsoup/libsoup-2.4.la -Lc:/devel/dist/win32/glib-2.20.4-1/lib -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl
1412
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o .libs/header-parsing.exe header-parsing.o test-utils.o -L/devel/dist/win32/proxy-libintl-20080918/lib ../libsoup/.libs/libsoup-2.4.dll.a -Lc:/devel/dist/win32/glib-2.20.4-1/lib -Lc:/devel/dist/win32/libxml2-2.7.3-1/lib -lxml2 -lws2_32 -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl -mthreads -Lc:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/lib
1413
+
1414
+ /bin/sh ../libtool --tag=CC --mode=link gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -L/devel/dist/win32/proxy-libintl-20080918/lib -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o misc-test.exe misc-test.o test-utils.o ../libsoup/libsoup-2.4.la -Lc:/devel/dist/win32/glib-2.20.4-1/lib -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl
1415
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o .libs/misc-test.exe misc-test.o test-utils.o -L/devel/dist/win32/proxy-libintl-20080918/lib ../libsoup/.libs/libsoup-2.4.dll.a -Lc:/devel/dist/win32/glib-2.20.4-1/lib -Lc:/devel/dist/win32/libxml2-2.7.3-1/lib -lxml2 -lws2_32 -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl -mthreads -Lc:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/lib
1416
+
1417
+ Info: resolving __SOUP_METHOD_GET by linking to __imp___SOUP_METHOD_GET (auto-import)
1418
+ c:\opt\mingw\bin\..\lib\gcc\mingw32\3.4.5\..\..\..\..\mingw32\bin\ld.exe: warning: auto-importing has been activated without --enable-auto-import specified on the command line.
1419
+ This should work unless it involves constant data structures referencing symbols from auto-imported DLLs.
1420
+ /bin/sh ../libtool --tag=CC --mode=link gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -L/devel/dist/win32/proxy-libintl-20080918/lib -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o ntlm-test.exe ntlm-test.o test-utils.o ../libsoup/libsoup-2.4.la -Lc:/devel/dist/win32/glib-2.20.4-1/lib -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl
1421
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o .libs/ntlm-test.exe ntlm-test.o test-utils.o -L/devel/dist/win32/proxy-libintl-20080918/lib ../libsoup/.libs/libsoup-2.4.dll.a -Lc:/devel/dist/win32/glib-2.20.4-1/lib -Lc:/devel/dist/win32/libxml2-2.7.3-1/lib -lxml2 -lws2_32 -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl -mthreads -Lc:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/lib
1422
+
1423
+ Info: resolving __SOUP_METHOD_GET by linking to __imp___SOUP_METHOD_GET (auto-import)
1424
+ c:\opt\mingw\bin\..\lib\gcc\mingw32\3.4.5\..\..\..\..\mingw32\bin\ld.exe: warning: auto-importing has been activated without --enable-auto-import specified on the command line.
1425
+ This should work unless it involves constant data structures referencing symbols from auto-imported DLLs.
1426
+ /bin/sh ../libtool --tag=CC --mode=link gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -L/devel/dist/win32/proxy-libintl-20080918/lib -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o redirect-test.exe redirect-test.o test-utils.o ../libsoup/libsoup-2.4.la -Lc:/devel/dist/win32/glib-2.20.4-1/lib -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl
1427
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o .libs/redirect-test.exe redirect-test.o test-utils.o -L/devel/dist/win32/proxy-libintl-20080918/lib ../libsoup/.libs/libsoup-2.4.dll.a -Lc:/devel/dist/win32/glib-2.20.4-1/lib -Lc:/devel/dist/win32/libxml2-2.7.3-1/lib -lxml2 -lws2_32 -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl -mthreads -Lc:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/lib
1428
+
1429
+ Info: resolving __SOUP_METHOD_POST by linking to __imp___SOUP_METHOD_POST (auto-import)
1430
+ Info: resolving __SOUP_METHOD_GET by linking to __imp___SOUP_METHOD_GET (auto-import)
1431
+ Info: resolving __SOUP_METHOD_HEAD by linking to __imp___SOUP_METHOD_HEAD (auto-import)
1432
+ c:\opt\mingw\bin\..\lib\gcc\mingw32\3.4.5\..\..\..\..\mingw32\bin\ld.exe: warning: auto-importing has been activated without --enable-auto-import specified on the command line.
1433
+ This should work unless it involves constant data structures referencing symbols from auto-imported DLLs.
1434
+ /bin/sh ../libtool --tag=CC --mode=link gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -L/devel/dist/win32/proxy-libintl-20080918/lib -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o streaming-test.exe streaming-test.o test-utils.o ../libsoup/libsoup-2.4.la -Lc:/devel/dist/win32/glib-2.20.4-1/lib -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl
1435
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o .libs/streaming-test.exe streaming-test.o test-utils.o -L/devel/dist/win32/proxy-libintl-20080918/lib ../libsoup/.libs/libsoup-2.4.dll.a -Lc:/devel/dist/win32/glib-2.20.4-1/lib -Lc:/devel/dist/win32/libxml2-2.7.3-1/lib -lxml2 -lws2_32 -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl -mthreads -Lc:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/lib
1436
+
1437
+ /bin/sh ../libtool --tag=CC --mode=link gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -L/devel/dist/win32/proxy-libintl-20080918/lib -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o timeout-test.exe timeout-test.o test-utils.o ../libsoup/libsoup-2.4.la -Lc:/devel/dist/win32/glib-2.20.4-1/lib -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl
1438
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o .libs/timeout-test.exe timeout-test.o test-utils.o -L/devel/dist/win32/proxy-libintl-20080918/lib ../libsoup/.libs/libsoup-2.4.dll.a -Lc:/devel/dist/win32/glib-2.20.4-1/lib -Lc:/devel/dist/win32/libxml2-2.7.3-1/lib -lxml2 -lws2_32 -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl -mthreads -Lc:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/lib
1439
+
1440
+ /bin/sh ../libtool --tag=CC --mode=link gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -L/devel/dist/win32/proxy-libintl-20080918/lib -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o uri-parsing.exe uri-parsing.o test-utils.o ../libsoup/libsoup-2.4.la -Lc:/devel/dist/win32/glib-2.20.4-1/lib -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl
1441
+ libtool-cache: executing cached command: gcc -mtune=pentium3 -mthreads -mms-bitfields -O2 -g -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wdeclaration-after-statement -Wformat=2 -Winit-self -Waggregate-return -Wmissing-format-attribute -Wundef -Wl,--exclude-libs=libintl.a -Wl,--enable-auto-image-base -o .libs/uri-parsing.exe uri-parsing.o test-utils.o -L/devel/dist/win32/proxy-libintl-20080918/lib ../libsoup/.libs/libsoup-2.4.dll.a -Lc:/devel/dist/win32/glib-2.20.4-1/lib -Lc:/devel/dist/win32/libxml2-2.7.3-1/lib -lxml2 -lws2_32 -lgthread-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl -mthreads -Lc:/devel/target/4ee61536bf9d7ac3cf2c01bf072757dc/lib
1442
+
1443
+ chunk-test.exe: OK
1444
+ PASS: chunk-test.exe
1445
+ /bin/sh: line 8: ./context-test.exe: No such file or directory
1446
+ FAIL: context-test.exe
1447
+ /bin/sh: line 8: ./continue-test.exe: No such file or directory
1448
+ FAIL: continue-test.exe
1449
+ /bin/sh: line 8: ./date.exe: No such file or directory
1450
+ FAIL: date.exe
1451
+ /bin/sh: line 8: ./header-parsing.exe: No such file or directory
1452
+ FAIL: header-parsing.exe
1453
+ /bin/sh: line 8: ./misc-test.exe: No such file or directory
1454
+ FAIL: misc-test.exe
1455
+ /bin/sh: line 8: ./ntlm-test.exe: No such file or directory
1456
+ FAIL: ntlm-test.exe
1457
+ /bin/sh: line 8: ./redirect-test.exe: No such file or directory
1458
+ FAIL: redirect-test.exe
1459
+ /bin/sh: line 8: ./streaming-test.exe: No such file or directory
1460
+ FAIL: streaming-test.exe
1461
+ /bin/sh: line 8: ./timeout-test.exe: No such file or directory
1462
+ FAIL: timeout-test.exe
1463
+ /bin/sh: line 8: ./uri-parsing.exe: No such file or directory
1464
+ FAIL: uri-parsing.exe
1465
+ =====================
1466
+ 10 of 11 tests failed
1467
+ =====================
1468
+ make[2]: *** [check-TESTS] Error 1
1469
+ make[2]: Leaving directory `/devel/src/gnome/libsoup/2.26.3-1_win32/tests'
1470
+ make[1]: *** [check-am] Error 2
1471
+ make[1]: Leaving directory `/devel/src/gnome/libsoup/2.26.3-1_win32/tests'
1472
+ make: *** [check-recursive] Error 1
1473
+ ++ true
1474
+ ++ ./libsoup-zip
1475
+ rm: cannot lstat `/tmp/libsoup-2.26.3.zip': No such file or directory
1476
+ adding: bin/libsoup-2.4-1.dll (224 bytes security) (deflated 71%)
1477
+ rm: cannot lstat `/tmp/libsoup-dev-2.26.3.zip': No such file or directory
1478
+ adding: include/libsoup-2.4/ (280 bytes security) (stored 0%)
1479
+ adding: include/libsoup-2.4/libsoup/ (280 bytes security) (stored 0%)
1480
+ adding: include/libsoup-2.4/libsoup/soup-address.h (224 bytes security) (deflated 71%)
1481
+ adding: include/libsoup-2.4/libsoup/soup-auth-domain-basic.h (224 bytes security) (deflated 67%)
1482
+ adding: include/libsoup-2.4/libsoup/soup-auth-domain-digest.h (224 bytes security) (deflated 68%)
1483
+ adding: include/libsoup-2.4/libsoup/soup-auth-domain.h (224 bytes security) (deflated 74%)
1484
+ adding: include/libsoup-2.4/libsoup/soup-auth.h (224 bytes security) (deflated 71%)
1485
+ adding: include/libsoup-2.4/libsoup/soup-cookie-jar-text.h (224 bytes security) (deflated 64%)
1486
+ adding: include/libsoup-2.4/libsoup/soup-cookie-jar.h (224 bytes security) (deflated 68%)
1487
+ adding: include/libsoup-2.4/libsoup/soup-cookie.h (224 bytes security) (deflated 74%)
1488
+ adding: include/libsoup-2.4/libsoup/soup-date.h (224 bytes security) (deflated 64%)
1489
+ adding: include/libsoup-2.4/libsoup/soup-enum-types.h (224 bytes security) (deflated 74%)
1490
+ adding: include/libsoup-2.4/libsoup/soup-form.h (224 bytes security) (deflated 66%)
1491
+ adding: include/libsoup-2.4/libsoup/soup-headers.h (224 bytes security) (deflated 71%)
1492
+ adding: include/libsoup-2.4/libsoup/soup-logger.h (224 bytes security) (deflated 70%)
1493
+ adding: include/libsoup-2.4/libsoup/soup-message-body.h (224 bytes security) (deflated 72%)
1494
+ adding: include/libsoup-2.4/libsoup/soup-message-headers.h (224 bytes security) (deflated 79%)
1495
+ adding: include/libsoup-2.4/libsoup/soup-message.h (224 bytes security) (deflated 75%)
1496
+ adding: include/libsoup-2.4/libsoup/soup-method.h (224 bytes security) (deflated 70%)
1497
+ adding: include/libsoup-2.4/libsoup/soup-misc.h (224 bytes security) (deflated 61%)
1498
+ adding: include/libsoup-2.4/libsoup/soup-multipart.h (224 bytes security) (deflated 71%)
1499
+ adding: include/libsoup-2.4/libsoup/soup-portability.h (224 bytes security) (deflated 43%)
1500
+ adding: include/libsoup-2.4/libsoup/soup-proxy-resolver.h (224 bytes security) (deflated 68%)
1501
+ adding: include/libsoup-2.4/libsoup/soup-proxy-uri-resolver.h (224 bytes security) (deflated 71%)
1502
+ adding: include/libsoup-2.4/libsoup/soup-server.h (224 bytes security) (deflated 73%)
1503
+ adding: include/libsoup-2.4/libsoup/soup-session-async.h (224 bytes security) (deflated 64%)
1504
+ adding: include/libsoup-2.4/libsoup/soup-session-feature.h (224 bytes security) (deflated 72%)
1505
+ adding: include/libsoup-2.4/libsoup/soup-session-sync.h (224 bytes security) (deflated 64%)
1506
+ adding: include/libsoup-2.4/libsoup/soup-session.h (224 bytes security) (deflated 75%)
1507
+ adding: include/libsoup-2.4/libsoup/soup-socket.h (224 bytes security) (deflated 74%)
1508
+ adding: include/libsoup-2.4/libsoup/soup-status.h (224 bytes security) (deflated 70%)
1509
+ adding: include/libsoup-2.4/libsoup/soup-types.h (224 bytes security) (deflated 64%)
1510
+ adding: include/libsoup-2.4/libsoup/soup-uri.h (224 bytes security) (deflated 71%)
1511
+ adding: include/libsoup-2.4/libsoup/soup-value-utils.h (224 bytes security) (deflated 73%)
1512
+ adding: include/libsoup-2.4/libsoup/soup-xmlrpc.h (224 bytes security) (deflated 67%)
1513
+ adding: include/libsoup-2.4/libsoup/soup.h (224 bytes security) (deflated 70%)
1514
+ adding: lib/libsoup-2.4.dll.a (224 bytes security) (deflated 93%)
1515
+ adding: lib/pkgconfig/libsoup-2.4.pc (224 bytes security) (deflated 33%)
1516
+ zip warning: name not matched: share/gtk-doc/html/libsoup
1517
+ ++ mv /tmp/libsoup-2.26.3.zip /tmp/libsoup_2.26.3-1_win32.zip
1518
+ ++ mv /tmp/libsoup-dev-2.26.3.zip /tmp/libsoup-dev_2.26.3-1_win32.zip