<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://permalink.gmane.org/gmane.comp.emulators.virtualbox.devel">
    <title>gmane.comp.emulators.virtualbox.devel</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.virtualbox.devel</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.virtualbox.devel/5211"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.virtualbox.devel/5210"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.virtualbox.devel/5209"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.virtualbox.devel/5208"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.virtualbox.devel/5207"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.virtualbox.devel/5206"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.virtualbox.devel/5205"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.virtualbox.devel/5204"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.virtualbox.devel/5203"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.virtualbox.devel/5202"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.virtualbox.devel/5201"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.virtualbox.devel/5200"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.virtualbox.devel/5199"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.virtualbox.devel/5198"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.virtualbox.devel/5197"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.virtualbox.devel/5196"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.virtualbox.devel/5195"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.virtualbox.devel/5194"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.virtualbox.devel/5193"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.virtualbox.devel/5192"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.virtualbox.devel/5211">
    <title>Re: [Patch] Build windows guest with WDK and VCExpress</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.virtualbox.devel/5211</link>
    <description>&lt;pre&gt;FYI, The patch will most likely break shared folders in W2K guest.

Vitali.

Howard Su wrote:


&lt;/pre&gt;</description>
    <dc:creator>Vitali Pelenjow</dc:creator>
    <dc:date>2012-05-15T12:46:31</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.virtualbox.devel/5210">
    <title>Re: [Patch] Build windows guest with WDK and VCExpress</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.virtualbox.devel/5210</link>
    <description>&lt;pre&gt;After I upgrade to 4.1.14, i need following change to get it build.

diff --git
a/external/VirtualBox/src/VBox/Additions/WINNT/Mouse/NT4/Makefile.kmk
b/external/VirtualBox/src/VBox/Additions/WINNT/Mouse/NT4/Makefile.kmk
index d8e6f0b..123727f 100644
--- a/external/VirtualBox/src/VBox/Additions/WINNT/Mouse/NT4/Makefile.kmk
+++ b/external/VirtualBox/src/VBox/Additions/WINNT/Mouse/NT4/Makefile.kmk
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -29,9 +29,10 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; VBoxMouseNT_SOURCES     = \
        VBoxPS2NT.cpp \
        VBoxPS2NT.rc
 VBoxMouseNT_LIBS        = \
-       $(PATH_SDK_W2K3DDK_LIB)/exsup.lib \
-       $(PATH_SDK_W2K3DDK_LIB)/ntoskrnl.lib \
-       $(PATH_SDK_W2K3DDK_LIB)/hal.lib \
+       exsup.lib \
+       ntoskrnl.lib \
+       hal.lib \
+       bufferoverflowK.lib \
        $(VBOX_LIB_VBGL_R0) \
        $(VBOX_LIB_IPRT_GUEST_R0_NT4)
 VBoxMouseNT_CLEAN       = \
diff --git
a/external/VirtualBox/src/VBox/Additions/WINNT/Mouse/NT4/VBoxPS2NT.cpp
b/external/VirtualBox/src/VBox/Additions/WINNT/Mouse/NT4/VBoxPS2NT.cpp
index 1b14593..14abb97 100644
&lt;/pre&gt;</description>
    <dc:creator>Howard Su</dc:creator>
    <dc:date>2012-05-15T12:28:00</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.virtualbox.devel/5209">
    <title>Re: vbox-svn: VMM is broken: black screen on VM boot</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.virtualbox.devel/5209</link>
    <description>&lt;pre&gt;
Try public r41256. Should be fixed.

https://www.virtualbox.org/changeset?reponame=vbox&amp;amp;new=41256%40trunk%2Fsrc%2FVBox%2FDevices%2FGraphics%2FDevVGA.cpp&amp;amp;old=40472%40trunk%2Fsrc%2FVBox%2FDevices%2FGraphics%2FDevVGA.cpp

Regards,
Ram.

&lt;/pre&gt;</description>
    <dc:creator>Ramshankar</dc:creator>
    <dc:date>2012-05-15T09:13:19</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.virtualbox.devel/5208">
    <title>Re: vbox-svn: VMM is broken: black screen on VM boot</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.virtualbox.devel/5208</link>
    <description>&lt;pre&gt;
Well, the bug is *sometimes* reproducible, not 100%.

&lt;/pre&gt;</description>
    <dc:creator>Alexey Eromenko</dc:creator>
    <dc:date>2012-05-15T07:28:51</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.virtualbox.devel/5207">
    <title>Re: vbox-svn: VMM is broken: black screen on VM boot</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.virtualbox.devel/5207</link>
    <description>&lt;pre&gt;
Just tested this revision, it works fine here (Debian/Squeeze guest).
But you might want to update to the latest revision and try again.

Kind regards,

Frank
&lt;/pre&gt;</description>
    <dc:creator>Frank Mehnert</dc:creator>
    <dc:date>2012-05-15T07:21:11</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.virtualbox.devel/5206">
    <title>Re: vbox-dev Digest, Vol 67, Issue 8</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.virtualbox.devel/5206</link>
    <description>&lt;pre&gt;
No.
.vmc was never supported.

&lt;/pre&gt;</description>
    <dc:creator>Alexey Eromenko</dc:creator>
    <dc:date>2012-05-15T06:29:07</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.virtualbox.devel/5205">
    <title>vbox-svn: VMM is broken: black screen on VM boot</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.virtualbox.devel/5205</link>
    <description>&lt;pre&gt;Trying to boot Linux guests: no go.
The GRUB doesn't show up.
Stage 1 works, says "GRUB is loading", but stage 1.5 shows black screen.

Host: Debian 6.0 x64, Intel Core i7 2600K, VBox-OSE SVN r41254 (4.2 alpha).
Guests: Debian 6.0 and 7.0.

Tried both VT-x = on and VT-x = off, no effect.
Sometimes it does boot, but more often than not: black screen.

================
Debian-64-7-wheezy-2012-05-15-00-35-52.log
vbox log attached.

&lt;/pre&gt;</description>
    <dc:creator>Alexey Eromenko</dc:creator>
    <dc:date>2012-05-14T21:43:11</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.virtualbox.devel/5204">
    <title>Re: USB in SVN not working</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.virtualbox.devel/5204</link>
    <description>&lt;pre&gt;Yes, remove the

  &amp;lt;ShowLicense/&amp;gt;

statement from VNC/ExtPack.xml.

Kind regards,

Frank

On Monday 14 May 2012 18:16:57 Perry Halbert wrote:

&lt;/pre&gt;</description>
    <dc:creator>Frank Mehnert</dc:creator>
    <dc:date>2012-05-14T21:39:36</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.virtualbox.devel/5203">
    <title>Re: USB in SVN not working</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.virtualbox.devel/5203</link>
    <description>&lt;pre&gt;While we are at it.  Is there a way to remove the license agreement for 
the self compiled VNC package since this is open source?



On 05/14/2012 06:57 AM, Frank Mehnert wrote:
&lt;/pre&gt;</description>
    <dc:creator>Perry Halbert</dc:creator>
    <dc:date>2012-05-14T16:16:57</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.virtualbox.devel/5202">
    <title>Re: Fuduntu distribution patch</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.virtualbox.devel/5202</link>
    <description>&lt;pre&gt;Actually we are using the operating system values from the OVF/OVA 
standard.  I think we are still missing a few and I seem to recall that 
we have one or two additions ones (OS X Server 64bit?)

Regards,

Michael
&lt;/pre&gt;</description>
    <dc:creator>Michael Thayer</dc:creator>
    <dc:date>2012-05-14T13:25:05</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.virtualbox.devel/5201">
    <title>Re: Fuduntu distribution patch</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.virtualbox.devel/5201</link>
    <description>&lt;pre&gt;
Yeah quite long ago, but they wanted to "clean" the OS list up before...
Indeed it doesn't seem very scalable.

François.

&lt;/pre&gt;</description>
    <dc:creator>François Revol</dc:creator>
    <dc:date>2012-05-14T13:07:12</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.virtualbox.devel/5200">
    <title>Re: Fuduntu distribution patch</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.virtualbox.devel/5200</link>
    <description>&lt;pre&gt;
*DOH* Was that in a previous patch sent to the list?

&lt;/pre&gt;</description>
    <dc:creator>Andrew Wyatt</dc:creator>
    <dc:date>2012-05-14T12:07:51</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.virtualbox.devel/5199">
    <title>Re: Fuduntu distribution patch</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.virtualbox.devel/5199</link>
    <description>&lt;pre&gt;That's a good question, the only thing I gleaned from the Wiki was that 
these sorts of contributions were welcomed. :D

&lt;/pre&gt;</description>
    <dc:creator>Andrew Wyatt</dc:creator>
    <dc:date>2012-05-14T12:07:05</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.virtualbox.devel/5198">
    <title>Re: USB in SVN not working</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.virtualbox.devel/5198</link>
    <description>&lt;pre&gt;Hi Perry,

I've checked this issue again and now I can reproduce it. No idea
what I've tested before, sorry for that!

This is indeed a recent regression and will be fixed ASAP, I will
let you know.

Thanks for your heads-up,

Frank

On Friday 11 May 2012 16:38:24 Perry Halbert wrote:

&lt;/pre&gt;</description>
    <dc:creator>Frank Mehnert</dc:creator>
    <dc:date>2012-05-14T11:57:56</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.virtualbox.devel/5197">
    <title>Re: Fuduntu distribution patch</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.virtualbox.devel/5197</link>
    <description>&lt;pre&gt;Quite nice to see patches to support new OSes out there :)

What's the general policy ? (considering there are like 400+ distributions...)

&lt;/pre&gt;</description>
    <dc:creator>Alexey Eromenko</dc:creator>
    <dc:date>2012-05-13T20:58:40</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.virtualbox.devel/5196">
    <title>Re: Fuduntu distribution patch</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.virtualbox.devel/5196</link>
    <description>&lt;pre&gt;
Hey, those values are already reserved for Haiku! :DDD

François.

&lt;/pre&gt;</description>
    <dc:creator>François Revol</dc:creator>
    <dc:date>2012-05-13T19:38:31</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.virtualbox.devel/5195">
    <title>Fuduntu patch - with a link this time</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.virtualbox.devel/5195</link>
    <description>&lt;pre&gt;The Wiki said send it to the list, guess that's not the best idea since 
it looks like it trimmed it.

Here is a URL instead. :)

http://www.fuduntu.org/patches/vbox/

Thanks!
-Andrew
&lt;/pre&gt;</description>
    <dc:creator>Andrew Wyatt</dc:creator>
    <dc:date>2012-05-13T15:19:52</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.virtualbox.devel/5194">
    <title>Fuduntu distribution patch</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.virtualbox.devel/5194</link>
    <description>&lt;pre&gt;Hi everyone, I wanted to submit a patch that I worked up today that adds 
Fuduntu to the list of menu choices.  For the moment it is basically a 
copy of Fedora with our logo but that could change in the future as we 
diverge. :)

The attached icons and patch can be re-used under the terms of the MIT 
license:

Copyright (c) 2012 Andrew Wyatt, Fuduntu

Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the "Software"), to deal in the Software without
restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following
conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMI&lt;/pre&gt;</description>
    <dc:creator>Andrew Wyatt</dc:creator>
    <dc:date>2012-05-13T15:10:44</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.virtualbox.devel/5193">
    <title>Error while starting Virtual Box:NS_ERROR_FACTORY_NOT_REGISTERED</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.virtualbox.devel/5193</link>
    <description>&lt;pre&gt;So I had to move the frontend outside the vbox installation directory along
with relevant .so files that it complained about when trying to run it.

When I tried to start it, I get the following error:

Code NS_ERROR_FACTORY_NOT_REGISTERED (0x80040154) - Class not registered
(extended info not available)
Most likely, the VirtualBox COM server is not running or failed to start.

This fails in the following line: createLocalObject(CLSID_VirtualBox).

Everything works fine when the frontend is run from the bin directory
inside the virtual box location (built from sources).

Any idea what I am missing ? A search on the internet and the archives
didn't bring up anything.

Thanks
&lt;/pre&gt;</description>
    <dc:creator>Jaikumar G</dc:creator>
    <dc:date>2012-05-11T22:39:19</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.virtualbox.devel/5192">
    <title>What's the license used by rdpweb in SDK?</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.virtualbox.devel/5192</link>
    <description>&lt;pre&gt;Hi All,
      I am looking at integrating VRDP web client into our project, which is licensed under Apache, but not sure what's the license used by rdpweb. 
      The SDK says:
      " The sample code files shipped with the SDK are generally licensed liberally to make it easy for anyone to use this code for their own application code." And "When in doubt, please refer to the individual source code files shipped with this SDK."
      But I don't find license info under sdk/rdpweb/sample or inside files under sdk/rdpweb/sample. 
      Could anybody tell me which license used by rdpweb, specifically for files:
        sdk/rdpweb/sample/RDPClientUI.swf | webclient.js |webclient3.html?
     Thanks!

&lt;/pre&gt;</description>
    <dc:creator>Edison Su</dc:creator>
    <dc:date>2012-05-11T22:38:09</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.virtualbox.devel/5191">
    <title>Re: USB in SVN not working</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.virtualbox.devel/5191</link>
    <description>&lt;pre&gt;This started happening sometime after ExtPack VNC was enabled in the 
build but not right away.  It worked as it should for a while with VNC 
and with USB.  See pipermail link below.  Could this be a reason for the 
issue now?

https://www.virtualbox.org/pipermail/vbox-dev/2012-March/005001.html

It should be noted that there are no build errors as such except the 
normal errors about hard links.




On 05/10/2012 06:36 PM, Perry Halbert wrote:
&lt;/pre&gt;</description>
    <dc:creator>Perry Halbert</dc:creator>
    <dc:date>2012-05-11T14:38:24</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.comp.emulators.virtualbox.devel">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.comp.emulators.virtualbox.devel</link>
  </textinput>
</rdf:RDF>

