[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [57555] trunk/blender/source/blender/ blenlib/BLI_path_util.h: Compile fix for r57554 missing include "BLI_string .h" in BLI_path_util.h

Juergen Herrmann shadowrom at me.com
Tue Jun 18 20:42:30 CEST 2013


Revision: 57555
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=57555
Author:   shadowrom
Date:     2013-06-18 18:42:29 +0000 (Tue, 18 Jun 2013)
Log Message:
-----------
Compile fix for r57554 missing include "BLI_string.h" in BLI_path_util.h

Revision Links:
--------------
    http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=57554

Modified Paths:
--------------
    trunk/blender/source/blender/blenlib/BLI_path_util.h

Modified: trunk/blender/source/blender/blenlib/BLI_path_util.h
===================================================================
--- trunk/blender/source/blender/blenlib/BLI_path_util.h	2013-06-18 18:11:52 UTC (rev 57554)
+++ trunk/blender/source/blender/blenlib/BLI_path_util.h	2013-06-18 18:42:29 UTC (rev 57555)
@@ -31,6 +31,8 @@
  *  \ingroup bli
  */
 
+#include "BLI_string.h"
+
 #ifdef __cplusplus
 extern "C" {
 #endif
@@ -162,7 +164,7 @@
 bool BLI_path_is_rel(const char *path);
 
 /* path string comparisons: case-insensitive for Windows, case-sensitive otherwise */
-#ifdef WIN32
+#if defined(WIN32)
 #  define BLI_path_cmp BLI_strcasecmp
 #  define BLI_path_ncmp BLI_strncasecmp
 #else




More information about the Bf-blender-cvs mailing list