summaryrefslogtreecommitdiff
path: root/makefiles
diff options
context:
space:
mode:
authorAndreas Baumann <abaumann@yahoo.com>2009-03-11 21:40:15 +0100
committerAndreas Baumann <abaumann@yahoo.com>2009-03-11 21:40:15 +0100
commitae14911777246a2de56182c927faf893133f5135 (patch)
treead7d644e8e81c22541cc41b8b17a0f6d3712fbfc /makefiles
parent3157e745d2be4f9ff7be1f878610a35bf87179ac (diff)
downloadwolfbones-ae14911777246a2de56182c927faf893133f5135.tar.gz
wolfbones-ae14911777246a2de56182c927faf893133f5135.tar.bz2
added ENABLE_NLS flag in platform.mk
Diffstat (limited to 'makefiles')
-rw-r--r--makefiles/gmake/platform.mk9
1 files changed, 6 insertions, 3 deletions
diff --git a/makefiles/gmake/platform.mk b/makefiles/gmake/platform.mk
index 06f0847..4f643c1 100644
--- a/makefiles/gmake/platform.mk
+++ b/makefiles/gmake/platform.mk
@@ -55,8 +55,11 @@ else
LIBS_DL =
endif
-# gettext/libintl
-#################
+# i18n, gettext/libintl
+#######################
+
+# enable or disable internationalization code
+ENABLE_NLS = 1
# the GNU internationalization support is sometimes in separate libarries
ifeq "$(PLATFORM)" "LINUX"
@@ -102,4 +105,4 @@ PLATFORM_COMPILE_FLAGS = \
-D$(PLATFORM) \
-DOS_MAJOR_VERSION=$(OS_MAJOR_VERSION) \
-DOS_MINOR_VERSION=$(OS_MINOR_VERSION) \
- $(INCLUDE_FLAGS_LT)
+ $(INCLUDE_FLAGS_LT) -DENABLE_NLS=$(ENABLE_NLS)