Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJürgen Herrmann <shadowrom@me.com>2013-06-18 22:42:29 +0400
committerJürgen Herrmann <shadowrom@me.com>2013-06-18 22:42:29 +0400
commitf2abb213d2d9574d59b769459d71eb4bd9687aba (patch)
treeb28de4914a1cad092bfa40a614f5817879c4989a /source/blender/blenlib
parent447e9a4cd5d385e8724b7f92c952d66bd35a2c34 (diff)
Compile fix for r57554 missing include "BLI_string.h" in BLI_path_util.h
Diffstat (limited to 'source/blender/blenlib')
-rw-r--r--source/blender/blenlib/BLI_path_util.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/blender/blenlib/BLI_path_util.h b/source/blender/blenlib/BLI_path_util.h
index a36627bd903..6e6731b5117 100644
--- a/source/blender/blenlib/BLI_path_util.h
+++ b/source/blender/blenlib/BLI_path_util.h
@@ -31,6 +31,8 @@
* \ingroup bli
*/
+#include "BLI_string.h"
+
#ifdef __cplusplus
extern "C" {
#endif
@@ -162,7 +164,7 @@ void BLI_path_rel(char *file, const char *relfile);
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