Author: peterw
Date: Sun Nov 11 04:10:39 2007
New Revision: 30345
URL: http://svn.reactos.org/svn/reactos?rev=30345&view=rev
Log:
- Switch to using SYSTEMDRIVE\RosBE instead of PROGRAMFILES to avoid a problem in windres.
Modified:
trunk/tools/RosBE/RosBE-Windows/RosBE.nsi
trunk/tools/RosBE/RosBE-Windows/RosSourceDir.ini
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 Sun Nov 11 04:10:39 2007
@@ -10,7 +10,6 @@
;;
Name "${PRODUCT_NAME} ${PRODUCT_VERSION}"
OutFile "RosBE-${PRODUCT_VERSION}.exe"
-InstallDir "$PROGRAMFILES\RosBE"
InstallDirRegKey HKCU "${PRODUCT_DIR_REGKEY}" ""
ShowInstDetails show
ShowUnInstDetails show
@@ -42,6 +41,9 @@
;; Read our custom page ini, remove previous version.
;;
Function .onInit
+ var /global SYSTEMDRIVE
+ StrCpy $SYSTEMDRIVE $WINDIR 2
+ StrCpy $INSTDIR "$SYSTEMDRIVE\RosBE"
Call UninstallPrevious
!insertmacro INSTALLOPTIONS_EXTRACT "RosSourceDir.ini"
FunctionEnd
Modified: trunk/tools/RosBE/RosBE-Windows/RosSourceDir.ini
URL: http://svn.reactos.org/svn/reactos/trunk/tools/RosBE/RosBE-Windows/RosSourc…
==============================================================================
--- trunk/tools/RosBE/RosBE-Windows/RosSourceDir.ini (original)
+++ trunk/tools/RosBE/RosBE-Windows/RosSourceDir.ini Sun Nov 11 04:10:39 2007
@@ -19,7 +19,7 @@
[Field 3]
Type=Label
-Text=Select the directory where the ReactOS sources are located or will be checked out to later. This directory is required for the RosBE to work correctly. If you accept the default here then you must modify the shortcut (The 'Start in:' field) in the start menu later to point to the ReactOS source directory.
+Text=Select the directory where the ReactOS sources are located or will be checked out to later.
Left=0
Right=-1
Top=6
Author: greatlrd
Date: Sun Nov 11 01:22:28 2007
New Revision: 30341
URL: http://svn.reactos.org/svn/reactos?rev=30341&view=rev
Log:
Bugfix Mesa 6.1
The ICD interface does not export all functions, as it should, This change was spoken with Alesky about.
it letting us getting closer getting quake3 working in ReactOS/Windows with mesa
Waring
we can not update to mesa 7.0x for the ICD are broken in mesa 7.0x. I
Need investigate why or some with more opengl experiences should do that
Modified:
trunk/reactos/dll/3rdparty/mesa32/src/glapi/glapi.c
Modified: trunk/reactos/dll/3rdparty/mesa32/src/glapi/glapi.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/3rdparty/mesa32/src/gl…
==============================================================================
--- trunk/reactos/dll/3rdparty/mesa32/src/glapi/glapi.c (original)
+++ trunk/reactos/dll/3rdparty/mesa32/src/glapi/glapi.c Sun Nov 11 01:22:28 2007
@@ -877,6 +877,12 @@
struct _glapi_function * entry;
GLuint i;
+/*
+ * ReactOS fix, the ICDs interface should export all wgl, gl and few other
+ * functions, some ICDs interface even export mgl functions
+ * so limit it to only gl is wrong
+ *
+
#ifdef MANGLE
if (funcName[0] != 'm' || funcName[1] != 'g' || funcName[2] != 'l')
return NULL;
@@ -884,7 +890,7 @@
if (funcName[0] != 'g' || funcName[1] != 'l')
return NULL;
#endif
-
+*/
/* search extension functions first */
for (i = 0; i < NumExtEntryPoints; i++) {
if (strcmp(ExtEntryTable[i].name, funcName) == 0) {