Author: peterw
Date: Sat Nov 10 06:38:19 2007
New Revision: 30315
URL: http://svn.reactos.org/svn/reactos?rev=30315&view=rev
Log:
- Update the readmes and changelog a bit.
Modified:
trunk/tools/RosBE/RosBE-Windows/Root/ChangeLog.txt
trunk/tools/RosBE/RosBE-Windows/Root/README.odt
trunk/tools/RosBE/RosBE-Windows/Root/README.txt
trunk/tools/RosBE/RosBE-Windows/RosBE.nsi
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 (original)
+++ trunk/tools/RosBE/RosBE-Windows/Root/ChangeLog.txt Sat Nov 10 06:38:19 2007
@@ -40,13 +40,21 @@
- Fix the Case where you enable Logging and want to keep the default Path for it. (Daniel Reimer)
- Added a small utility (chknewer) to check if one file is newer than another. This removes the dependency on test from Config.cmd and Build.cmd. (Peter Ward)
-- Added a small utility (chkslash) to check if a string contains a backslash '\', it's needed for the reladdr2line.cmd changes.
+- Added a small utility (chkslash) to check if a string contains a backslash '\', it's needed for the reladdr2line.cmd changes. (Peter Ward)
+- Modified reladdr2line.cmd so that you can now use 'raddr2line ntdll.dll 7c90e143' (Peter Ward)
+ instead of 'raddr2line output-i386\dll\ntdll\ntdll.dll 7c90e143'. You can
+ also use part of the file name ie. 'ntdll*' instead of 'ntdll.dll' and
+ it will match it. Searchs the current directory and all sub-directories.
+ (does not match directories of course)
+ (yes you can still specify the full path if you like)
+- Move GCC environment setup to rosbe-gcc-env.cmd to support 'chdefgcc', this (Peter Ward)
+ file can also be used outside of the RosBE to initialize and GCC/MinGW
+ in the current directory.
- Added the command 'chdefgcc' to allow easy switching of the current toolset. (Peter Ward)
- Added a minimal replacement for tee. (Peter Ward)
- Added ccache 2.4 to RosBE. (Daniel Reimer)
- Added the command "oldmode" to still use the HOST headers, not the target ones in SVN Tree. (Daniel Reimer)
- Readd chdefdir due to popular Demand. (Daniel Reimer)
-- Downgraded sed to prevent a EOL style destruction. (Daniel Reimer)
- Move Options cmd and srcdir.txt to Application Data Folder. (Peter Ward)
- Move Temp Files to Temp Folder. (Daniel Reimer)
Modified: trunk/tools/RosBE/RosBE-Windows/Root/README.odt
URL: http://svn.reactos.org/svn/reactos/trunk/tools/RosBE/RosBE-Windows/Root/REA…
==============================================================================
Binary files - no diff available.
Modified: trunk/tools/RosBE/RosBE-Windows/Root/README.txt
URL: http://svn.reactos.org/svn/reactos/trunk/tools/RosBE/RosBE-Windows/Root/REA…
==============================================================================
--- trunk/tools/RosBE/RosBE-Windows/Root/README.txt (original)
+++ trunk/tools/RosBE/RosBE-Windows/Root/README.txt Sat Nov 10 06:38:19 2007
@@ -17,7 +17,7 @@
mingw-runtime-3.13
w32api-3.10
mingw32-make-3.81-2
-nasm-0.99.05-win32
+nasm-0.99.06-win32
mingw-4.1.3-20071015-prerelease
patched with:
- GCC-v4.1-r129382-prerelease-w3seek.patch
Modified: trunk/tools/RosBE/RosBE-Windows/RosBE.nsi
URL: http://svn.reactos.org/svn/reactos/trunk/tools/RosBE/RosBE-Windows/RosBE.ns…
==============================================================================
--- trunk/tools/RosBE/RosBE-Windows/RosBE.nsi (original)
+++ trunk/tools/RosBE/RosBE-Windows/RosBE.nsi Sat Nov 10 06:38:19 2007
@@ -38,7 +38,7 @@
;; MUI begin.
;;
-;; Read our custom page ini, remove previous version and check if the user has administrative privileges.
+;; Read our custom page ini, remove previous version.
;;
Function .onInit
Call UninstallPrevious
Author: peterw
Date: Sat Nov 10 05:55:45 2007
New Revision: 30314
URL: http://svn.reactos.org/svn/reactos?rev=30314&view=rev
Log:
- Remove the admin checks, no reason for them anymore.
Modified:
trunk/tools/RosBE/RosBE-Windows/RosBE.nsi
Modified: trunk/tools/RosBE/RosBE-Windows/RosBE.nsi
URL: http://svn.reactos.org/svn/reactos/trunk/tools/RosBE/RosBE-Windows/RosBE.ns…
==============================================================================
--- trunk/tools/RosBE/RosBE-Windows/RosBE.nsi (original)
+++ trunk/tools/RosBE/RosBE-Windows/RosBE.nsi Sat Nov 10 05:55:45 2007
@@ -34,7 +34,6 @@
!include "MUI2.nsh"
!include "InstallOptions.nsh"
!include "RosSourceDir.nsh"
-!include "LogicLib.nsh"
;; MUI begin.
@@ -42,7 +41,6 @@
;; Read our custom page ini, remove previous version and check if the user has administrative privileges.
;;
Function .onInit
- Call CheckAdminOrCurrent
Call UninstallPrevious
!insertmacro INSTALLOPTIONS_EXTRACT "RosSourceDir.ini"
FunctionEnd
@@ -258,7 +256,6 @@
FunctionEnd
Function un.onInit
- Call un.CheckAdminOrCurrent
MessageBox MB_ICONQUESTION|MB_YESNO|MB_DEFBUTTON2 \
"Are you sure you want to completely remove ReactOS Build Environment and all of its components?" \
IDYES +2
@@ -336,25 +333,3 @@
UninstallPrevious_yes:
ExecWait '$R0 _?=$INSTDIR'
FunctionEnd
-
-Function CheckAdminOrCurrent
- userInfo::getAccountType
- pop $R0
- ${If} $R0 == "Admin"
- Return
- ${else}
- messageBox MB_OK|MB_ICONEXCLAMATION \
- "You do not have administrative privileges. You need to set a folder with writing rights to install your BE and Code to. NO Vista Support possible!"
- Return
- ${EndIf}
-FunctionEnd
-
-Function un.CheckAdminOrCurrent
- userInfo::getAccountType
- pop $R0
- ${If} $R0 == "Admin"
- Return
- ${else}
- Return
- ${EndIf}
-FunctionEnd