Hi,
On 2012-08-26 11:17, jgardou(a)svn.reactos.org wrote:
> Log:
> [OPENGL32_WINETEST]
> - Sync with wine
speaking from previous experience, it'd be very nice if the commit
message would allow finding the correctly matched Wine version for this
easily (i.e. without tedious look-up of what was HEAD on whatever date
the commit was).
Thanks!
Best regards,
Thomas
Hi,
after having finished its 11405th build, the last official RBuild
builder has gone offline, forever.
The Linux CMake builder has now turned as being the official builder.
Thanks RBuild, you served us well :-).
Also, the other RBuild builder, the release builder has also gone
offline forever. Its hardware was not able to properly handle a ReactOS
build, and was hardly upgradable.
Daily release builds should replace it any time soon.
With my best regards,
--
Pierre Schweitzer <pierre(a)reactos.org>
Systems Administrator
ReactOS Foundation
Hi,
On 2012-08-21 15:38, jgardou(a)svn.reactos.org wrote:
> URL:http://svn.reactos.org/svn/reactos?rev=57124&view=rev
> Log:
> [WINED3D]
> - MSVC needs INFINITY and NAN from wine/port.h.
> It can't be included from a header
> Will be sent upstream
can you explain what's wrong with including it from a header?
I was under the impression we had fixed the infinity/nan stuff properly
on Wine's side by adding it all to port.h.
Thanks!
-Thomas
Hmmmmmmm....
I don't think that this is a good idea. We must call DC_vPrepareForBlit
to lock the surfaces, otherwise we run into race conditions.
And we should really also care for the mouse cursor, otherwise we might
make it unhappy.
Anyway, I don't care about this code, since I already rewrote it :D
Anyway, I think it's time to ASSERT device locks.
Am 22.08.2012 18:45, schrieb jgardou(a)svn.reactos.org:
> Author: jgardou
> Date: Wed Aug 22 16:45:49 2012
> New Revision: 57129
>
> URL: http://svn.reactos.org/svn/reactos?rev=57129&view=rev
> Log:
> [WIN32K]
> - Use the right surface for direct DCs in DIB transfer functions
> It could have changed with a display settings change
>
> Modified:
> trunk/reactos/win32ss/gdi/ntgdi/dibobj.c
>
> Modified: trunk/reactos/win32ss/gdi/ntgdi/dibobj.c
> URL: http://svn.reactos.org/svn/reactos/trunk/reactos/win32ss/gdi/ntgdi/dibobj.c…
> ==============================================================================
> --- trunk/reactos/win32ss/gdi/ntgdi/dibobj.c [iso-8859-1] (original)
> +++ trunk/reactos/win32ss/gdi/ntgdi/dibobj.c [iso-8859-1] Wed Aug 22 16:45:49 2012
> @@ -447,8 +447,16 @@
> DC_UnlockDc(pDC);
> goto Exit2;
> }
> -
> - pSurf = pDC->dclevel.pSurface;
> +
> + /*
> + * Select the right surface.
> + * NOTE: we don't call DC_vPrepareDCsForBlit, because we don't
> + * care about mouse, visible region or brushes in this API.
> + */
> + if(pDC->dctype == DCTYPE_DIRECT)
> + pSurf = pDC->ppdev->pSurface;
> + else
> + pSurf = pDC->dclevel.pSurface;
> if (!pSurf)
> {
> DC_UnlockDc(pDC);
> @@ -1113,7 +1121,15 @@
> goto cleanup;
> }
>
> - psurfDst = pdc->dclevel.pSurface;
> + /*
> + * Select the right surface.
> + * NOTE: we don't call DC_vPrepareDCsForBlit, because we don't
> + * care about mouse, visible region or brushes in this API.
> + */
> + if(pdc->dctype == DCTYPE_DIRECT)
> + psurfDst = pdc->ppdev->pSurface;
> + else
> + psurfDst = pdc->dclevel.pSurface;
> if (!psurfDst)
> {
> // CHECKME
>
>
>
For me it looks like _pwctype, __p__pwctype and __pwctype_func also
need to be fixed.
Am 20.08.2012 19:20, schrieb fireball(a)svn.reactos.org:
> Author: fireball
> Date: Mon Aug 20 17:20:48 2012
> New Revision: 57119
>
> URL: http://svn.reactos.org/svn/reactos?rev=57119&view=rev
> Log:
> [CRT]
> - Use wine's wctype table in CRT for iswctype() function. Previous implementation was returning incorrect information for non-Latin characters. Problem found and fixed by Sergey Shamanaev (seven_ro).
> - Move wctype.c from libwine to lib/sdk/crt instead of making yet another copy of it (currently there is one more in tools/unicode). Suggested by Amine Khaldi.
> See issue #5090 for more details.
>
> Added:
> trunk/reactos/lib/sdk/crt/string/wctype.c
> - copied unchanged from r57101, trunk/reactos/lib/3rdparty/libwine/wctype.c
> Removed:
> trunk/reactos/lib/3rdparty/libwine/wctype.c
> Modified:
> trunk/reactos/lib/3rdparty/libwine/CMakeLists.txt
> trunk/reactos/lib/sdk/crt/crt.cmake
> trunk/reactos/lib/sdk/crt/string/ctype.c
>
> [This mail would be too long, it was shortened to contain the URLs only.]
>
> Modified: trunk/reactos/lib/3rdparty/libwine/CMakeLists.txt
> URL: http://svn.reactos.org/svn/reactos/trunk/reactos/lib/3rdparty/libwine/CMake…
>
> Removed: trunk/reactos/lib/3rdparty/libwine/wctype.c
> URL: http://svn.reactos.org/svn/reactos/trunk/reactos/lib/3rdparty/libwine/wctyp…
>
> Modified: trunk/reactos/lib/sdk/crt/crt.cmake
> URL: http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/crt.cmake?rev=…
>
> Modified: trunk/reactos/lib/sdk/crt/string/ctype.c
> URL: http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/string/ctype.c…
>
>
>
Hi,
today, many of our services encountered a long downtime due to an air
conditioning issue in the datacenter their running hypervisor is located
(you can find more info there: http://hetzner-status.de/ - german).
A safety shutdown has been done to preserve our server hardware
integrity.
The other hypervisor and the other services being in other datacenters,
they were not concerned by the issue.
Services being concerned:
- Mail
- SVN
- git
- web
- build master
They are now fully back online and operational.
Sorry for the inconvenience.
With my best regards,
--
Pierre Schweitzer <pierre(a)reactos.org>
Systems Administrator
ReactOS Foundation
Dear All
Some time ago, due to lack of space on ROS servers, a large number of
old ISO files for prebuilt revisions had to be deleted. I was only able
to pull a limited number of them. Right now, while hunting a regression
in late rev 3xxxx, i`m heavily limited due to lack of ISOs. For a
long-term plan, i intend to add a legacy builder, containing all the
previous, rbuild-based Build environments, allowing me to build some
really old revs. Right now i need to ask for your assistance.
If you have any older, OFFICIAL Bootcd ISO files, of revision earlier
than 44000, please let me know, be it on irc or by forum PM. We need to
compare the revisions first, to avoid duplicates, then i`ll pull them
from you onto my server, which will effectively allow our Team to use
them if needed.
Thanks in advance.
--
With best regards
Caemyr