Author: jimtabor
Date: Mon Oct 14 06:28:17 2013
New Revision: 60660
URL:
http://svn.reactos.org/svn/reactos?rev=60660&view=rev
Log:
- Fix build and fix gcc 4.8.x build issues.
Modified:
trunk/reactos/dll/opengl/mesa/main/CMakeLists.txt
trunk/reactos/dll/opengl/mesa/swrast/CMakeLists.txt
Modified: trunk/reactos/dll/opengl/mesa/main/CMakeLists.txt
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/opengl/mesa/main/CMake…
==============================================================================
--- trunk/reactos/dll/opengl/mesa/main/CMakeLists.txt [iso-8859-1] (original)
+++ trunk/reactos/dll/opengl/mesa/main/CMakeLists.txt [iso-8859-1] Mon Oct 14 06:28:17
2013
@@ -75,5 +75,6 @@
)
add_library(mesa_main STATIC ${SOURCE})
-
-allow_warnings(mesa_main)
+if(NOT MSVC)
+ allow_warnings(mesa_main)
+endif()
Modified: trunk/reactos/dll/opengl/mesa/swrast/CMakeLists.txt
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/opengl/mesa/swrast/CMa…
==============================================================================
--- trunk/reactos/dll/opengl/mesa/swrast/CMakeLists.txt [iso-8859-1] (original)
+++ trunk/reactos/dll/opengl/mesa/swrast/CMakeLists.txt [iso-8859-1] Mon Oct 14 06:28:17
2013
@@ -28,5 +28,6 @@
)
add_library(mesa_swrast STATIC ${SOURCE})
-
-allow_warnings(mesa_swrast)
+if(NOT MSVC)
+ allow_warnings(mesa_swrast)
+endif()