- Fix for compiling without international support

- Enable international support for win64 msvc by default
This commit is contained in:
Sergey Sharybin 2011-09-20 14:07:40 +00:00
parent f0aac81466
commit 07ed73caee
3 changed files with 8 additions and 1 deletions

@ -96,7 +96,7 @@ BF_ZLIB_INC = '${BF_ZLIB}/include'
BF_ZLIB_LIB = 'libz'
BF_ZLIB_LIBPATH = '${BF_ZLIB}/lib'
WITH_BF_INTERNATIONAL = False
WITH_BF_INTERNATIONAL = True
BF_GETTEXT = LIBDIR + '/gettext'
BF_GETTEXT_INC = '${BF_GETTEXT}/include'

@ -402,7 +402,10 @@ void WM_exit_ext(bContext *C, const short do_python)
free_posebuf();
BLF_exit();
#ifdef INTERNATIONAL
BLF_free_unifont();
#endif
ANIM_keyingset_infos_exit();

@ -998,7 +998,11 @@ int main(int argc, char** argv)
// Cleanup
RNA_exit();
BLF_exit();
#ifdef INTERNATIONAL
BLF_free_unifont();
#endif
IMB_exit();
free_nodesystem();