Author: cfinck
Date: Mon Jun 29 17:06:36 2009
New Revision: 41683
URL: http://svn.reactos.org/svn/reactos?rev=41683&view=rev
Log:
Use target "mingw32" and omit the -march flag, so that the default CPU settings suitable for all i386+ machines are used again.
Fixes our Pentium I incompatibilities for real. Will be changed again, when the host/target issues are eventually solved.
See issue #4635 for more details.
Modified:
trunk/tools/RosBE/RosBE-Windows/buildtoolchain.sh
Modified: trunk/tools/RosBE/RosBE-Windows/buildtoolchain.sh
URL: http://svn.reactos.org/svn/reactos/trunk/tools/RosBE/RosBE-Windows/buildtoo…
==============================================================================
--- trunk/tools/RosBE/RosBE-Windows/buildtoolchain.sh [iso-8859-1] (original)
+++ trunk/tools/RosBE/RosBE-Windows/buildtoolchain.sh [iso-8859-1] Mon Jun 29 17:06:36 2009
@@ -17,13 +17,13 @@
#
# Constants
#
-CFLAGS="-march=pentium3 -O2"
+CFLAGS="-O2"
CXXFLAGS="$CFLAGS"
INSTALLDIR="/c/buildtoolchain/mingw"
LDFLAGS="-s"
MINGWDIR="/mingw"
NEEDED_TOOLS="bison flex gcc g++ grep make makeinfo"
-TARGET="i586-pc-mingw32"
+TARGET="mingw32"
TEMPDIR="/c/buildtoolchain"
WIN32_INSTALLDIR="c:/buildtoolchain/mingw"
Author: dreimer
Date: Mon Jun 29 13:52:25 2009
New Revision: 41681
URL: http://svn.reactos.org/svn/reactos?rev=41681&view=rev
Log:
Forgot something in the changelog
Modified:
trunk/tools/RosBE/RosBE-Windows/Root/ChangeLog.txt
Modified: trunk/tools/RosBE/RosBE-Windows/Root/ChangeLog.txt
URL: http://svn.reactos.org/svn/reactos/trunk/tools/RosBE/RosBE-Windows/Root/Cha…
==============================================================================
--- trunk/tools/RosBE/RosBE-Windows/Root/ChangeLog.txt [iso-8859-1] (original)
+++ trunk/tools/RosBE/RosBE-Windows/Root/ChangeLog.txt [iso-8859-1] Mon Jun 29 13:52:25 2009
@@ -7,6 +7,9 @@
- Fixed "ssvn create" not working due to the fact that RosBE creates a log folder and then tries to verify a
empty folder. Thx for gabriel_it and kjk_hyperion for mentioning. (Daniel Reimer)
- Updated: NSIS to 2.45 (Daniel Reimer)
+- Added a while like loop to the batch scripts where needed and used in PS. This allows us to use update.cmd for
+ more than 10 updates and made the show logs feature of ssvn working in Batch too (Daniel Reimer, Victor Martinez)
+- Fixed Update.cmd by removing a missed prerelease hack. (Daniel Reimer)
*** May 26th, 2009 - RosBE 1.4.3 Released
Author: jimtabor
Date: Mon Jun 29 10:07:15 2009
New Revision: 41680
URL: http://svn.reactos.org/svn/reactos?rev=41680&view=rev
Log:
- Fix build: use gpsi->dwInstalledEventHooks instead of gpsi->SrvEventActivity
Modified:
trunk/reactos/dll/win32/user32/windows/hook.c
Modified: trunk/reactos/dll/win32/user32/windows/hook.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/user32/windows/h…
==============================================================================
--- trunk/reactos/dll/win32/user32/windows/hook.c [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/user32/windows/hook.c [iso-8859-1] Mon Jun 29 10:07:15 2009
@@ -316,7 +316,7 @@
// "Servers call NotifyWinEvent to announce the event to the system after the
// event has occurred; they must never notify the system of an event before
// the event has occurred." msdn on NotifyWinEvent.
- if (g_psi->SrvEventActivity & GetMaskFromEvent(event)) // Check to see.
+ if (g_psi->dwInstalledEventHooks & GetMaskFromEvent(event)) // Check to see.
NtUserNotifyWinEvent(event, hwnd, idObject, idChild);
}
@@ -371,7 +371,7 @@
{
if ((PW32THREADINFO)NtCurrentTeb()->Win32ThreadInfo)
{
- return (g_psi->SrvEventActivity & GetMaskFromEvent(event)) != 0;
+ return (g_psi->dwInstalledEventHooks & GetMaskFromEvent(event)) != 0;
}
return FALSE;
}