[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [54659] trunk/blender: patch [#34320] Cross compiling with mingw-w64 on ubuntu

Campbell Barton ideasman42 at gmail.com
Tue Feb 19 13:05:39 CET 2013


Revision: 54659
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=54659
Author:   campbellbarton
Date:     2013-02-19 12:05:38 +0000 (Tue, 19 Feb 2013)
Log Message:
-----------
patch [#34320] Cross compiling with mingw-w64 on ubuntu
from Martijn Berger (juicyfruit)

applying since this is only corrects header case which is ignored on windows anyway.

Modified Paths:
--------------
    trunk/blender/intern/cycles/util/util_dynlib.cpp
    trunk/blender/intern/ghost/intern/GHOST_DropTargetWin32.cpp
    trunk/blender/intern/utfconv/utf_winfunc.c
    trunk/blender/source/blender/windowmanager/intern/wm_init_exit.c
    trunk/blender/source/creator/creator.c

Modified: trunk/blender/intern/cycles/util/util_dynlib.cpp
===================================================================
--- trunk/blender/intern/cycles/util/util_dynlib.cpp	2013-02-19 10:31:29 UTC (rev 54658)
+++ trunk/blender/intern/cycles/util/util_dynlib.cpp	2013-02-19 12:05:38 UTC (rev 54659)
@@ -22,7 +22,7 @@
 
 #ifdef _WIN32
 
-#include <Windows.h>
+#include <windows.h>
 
 CCL_NAMESPACE_BEGIN
 

Modified: trunk/blender/intern/ghost/intern/GHOST_DropTargetWin32.cpp
===================================================================
--- trunk/blender/intern/ghost/intern/GHOST_DropTargetWin32.cpp	2013-02-19 10:31:29 UTC (rev 54658)
+++ trunk/blender/intern/ghost/intern/GHOST_DropTargetWin32.cpp	2013-02-19 12:05:38 UTC (rev 54659)
@@ -32,7 +32,7 @@
  
 #include "GHOST_Debug.h"
 #include "GHOST_DropTargetWin32.h"
-#include <ShellApi.h>
+#include <shellapi.h>
 
 #include "utf_winfunc.h"
 #include "utfconv.h"

Modified: trunk/blender/intern/utfconv/utf_winfunc.c
===================================================================
--- trunk/blender/intern/utfconv/utf_winfunc.c	2013-02-19 10:31:29 UTC (rev 54658)
+++ trunk/blender/intern/utfconv/utf_winfunc.c	2013-02-19 12:05:38 UTC (rev 54659)
@@ -29,7 +29,7 @@
 
 #include "utf_winfunc.h"
 #include <io.h>
-#include <Windows.h>
+#include <windows.h>
 #include <wchar.h>
 
 

Modified: trunk/blender/source/blender/windowmanager/intern/wm_init_exit.c
===================================================================
--- trunk/blender/source/blender/windowmanager/intern/wm_init_exit.c	2013-02-19 10:31:29 UTC (rev 54658)
+++ trunk/blender/source/blender/windowmanager/intern/wm_init_exit.c	2013-02-19 12:05:38 UTC (rev 54659)
@@ -33,7 +33,7 @@
 #include <string.h>
 
 #ifdef WIN32
-#  include <Windows.h>
+#  include <windows.h>
 #endif
 
 #include "MEM_guardedalloc.h"

Modified: trunk/blender/source/creator/creator.c
===================================================================
--- trunk/blender/source/creator/creator.c	2013-02-19 10:31:29 UTC (rev 54658)
+++ trunk/blender/source/creator/creator.c	2013-02-19 12:05:38 UTC (rev 54659)
@@ -48,7 +48,7 @@
 #endif
 
 #ifdef WIN32
-#  include <Windows.h>
+#  include <windows.h>
 #  include "utfconv.h"
 #endif
 




More information about the Bf-blender-cvs mailing list