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:
authorCampbell Barton <ideasman42@gmail.com>2009-09-24 11:03:18 +0400
committerCampbell Barton <ideasman42@gmail.com>2009-09-24 11:03:18 +0400
commitb94ed5d7e469c6c3ea421919138da8c04a3f01e3 (patch)
treef431fba46204e332d5627c65ab8c25e5cbe9ce33 /source/blender/blenfont/Makefile
parent20998fdcfa6e7dd74adc0f38af6135fdddbefdc0 (diff)
- cmake/make/scons didnt define INTERNATIONAL when buidling blenfont
- BLF_lang_init used confusing IFDEF's, unlikely this was well tested. Split this into 3 functions for Apple/Win32/Unix, Unix uses BLI_gethome_folder(), cant test others, ideally they should use BLI_gethome_folder too but needs testing. Possibly each os cant be made to use BLI_gethome_folder and the separate func's can be removed (please test). - units, hectometers were displayed wrong.
Diffstat (limited to 'source/blender/blenfont/Makefile')
-rw-r--r--source/blender/blenfont/Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/blenfont/Makefile b/source/blender/blenfont/Makefile
index 70dd2e5052b..be62c87cbf4 100644
--- a/source/blender/blenfont/Makefile
+++ b/source/blender/blenfont/Makefile
@@ -28,3 +28,7 @@ SOURCEDIR = source/blender/blenfont
DIRS = intern
include nan_subdirs.mk
+
+ifeq ($(INTERNATIONAL), true)
+ CPPFLAGS += -DINTERNATIONAL
+endif