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:
authorAntony Riakiotakis <kalast@gmail.com>2012-08-22 23:01:09 +0400
committerAntony Riakiotakis <kalast@gmail.com>2012-08-22 23:01:09 +0400
commit7683f87f273884ffc918377608526565c0eb693b (patch)
treedd8ebb8401cf1358abe5a1dcf586cd59cfbd3f94 /source/blender/imbuf/intern/dds/SConscript
parentb0dd030ba61fe81914d14e520f710684a2406900 (diff)
Fix compilation on MinGW after recent utf 16 fixes (possibly win32 too). gcc ostream does not support wchar_t, I hope it works as expected with unicode filenames.
Diffstat (limited to 'source/blender/imbuf/intern/dds/SConscript')
-rw-r--r--source/blender/imbuf/intern/dds/SConscript3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/imbuf/intern/dds/SConscript b/source/blender/imbuf/intern/dds/SConscript
index 918ae7b530b..4245f5001b9 100644
--- a/source/blender/imbuf/intern/dds/SConscript
+++ b/source/blender/imbuf/intern/dds/SConscript
@@ -11,7 +11,8 @@ incs = ['.',
'../../../blenkernel',
'../../../blenlib',
'intern/include',
- '#/intern/guardedalloc']
+ '#/intern/guardedalloc',
+ '#/intern/utfconv']
defs = ['WITH_DDS']