From f2abb213d2d9574d59b769459d71eb4bd9687aba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Herrmann?= Date: Tue, 18 Jun 2013 18:42:29 +0000 Subject: [PATCH] Compile fix for r57554 missing include "BLI_string.h" in BLI_path_util.h --- source/blender/blenlib/BLI_path_util.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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