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:
authorStefan Gartner <stefang@aon.at>2003-05-10 20:35:28 +0400
committerStefan Gartner <stefang@aon.at>2003-05-10 20:35:28 +0400
commitb3c48c4d2ca2f8871fcd2612f8614bfd18cf3c40 (patch)
treeef15f101bb1e3ccd1c560af380d7664043a5389b /source/nan_definitions.mk
parent1ecddea4624856ff694fdeee9c643b2df54c536f (diff)
enable truetype fonts for text objects when building with the original
Makefiles. Platform manages should check nan_definitions.mk and set INTERNATIONAL to true for their platforms.
Diffstat (limited to 'source/nan_definitions.mk')
-rw-r--r--source/nan_definitions.mk52
1 files changed, 50 insertions, 2 deletions
diff --git a/source/nan_definitions.mk b/source/nan_definitions.mk
index 9072f07c5b2..1b0da5f8ffe 100644
--- a/source/nan_definitions.mk
+++ b/source/nan_definitions.mk
@@ -114,6 +114,12 @@ all debug::
# Be paranoid regarding library creation (do not update archives)
export NAN_PARANOID ?= true
+ # l10n
+ #export INTERNATIONAL ?= true
+
+ # enable freetype2 support for text objects
+ #export WITH_FREETYPE2 ?= true
+
else
ifeq ($(OS),darwin)
@@ -156,6 +162,9 @@ all debug::
# enable l10n
export INTERNATIONAL ?= true
+ # enable freetype2 support for text objects
+ export WITH_FREETYPE2 ?= true
+
else
ifeq ($(OS),freebsd)
@@ -179,7 +188,6 @@ all debug::
export NAN_FREETYPE ?= $(LCGDIR)/freetype
export NAN_GETTEXT ?= $(LCGDIR)/gettext
-
# Uncomment the following line to use Mozilla inplace of netscape
# CPPFLAGS +=-DMOZ_NOT_NET
# Location of MOZILLA/Netscape header files...
@@ -192,6 +200,12 @@ all debug::
# Be paranoid regarding library creation (do not update archives)
export NAN_PARANOID ?= true
+ # enable l10n
+ export INTERNATIONAL ?= true
+
+ # enable freetype2 support for text objects
+ export WITH_FREETYPE2 ?= true
+
else
ifeq ($(OS),irix)
@@ -227,6 +241,12 @@ all debug::
# Be paranoid regarding library creation (do not update archives)
export NAN_PARANOID ?= true
+ # enable l10n
+ #export INTERNATIONAL ?= true
+
+ # enable freetype2 support for text objects
+ #export WITH_FREETYPE2 ?= true
+
else
ifeq ($(OS),linux)
@@ -262,9 +282,13 @@ all debug::
# Be paranoid regarding library creation (do not update archives)
export NAN_PARANOID ?= true
- #i10n
+ # l10n
#export INTERNATIONAL ?= true
+ # enable freetype2 support for text objects
+ #export WITH_FREETYPE2 ?= true
+
+
else
ifeq ($(OS),openbsd)
@@ -301,6 +325,12 @@ all debug::
# Be paranoid regarding library creation (do not update archives)
export NAN_PARANOID ?= true
+ # l10n
+ #export INTERNATIONAL ?= true
+
+ # enable freetype2 support for text objects
+ #export WITH_FREETYPE2 ?= true
+
else
ifeq ($(OS),solaris)
@@ -336,6 +366,12 @@ all debug::
# Be paranoid regarding library creation (do not update archives)
export NAN_PARANOID ?= true
+ # l10n
+ #export INTERNATIONAL ?= true
+
+ # enable freetype2 support for text objects
+ #export WITH_FREETYPE2 ?= true
+
else
ifeq ($(OS),windows)
@@ -372,6 +408,12 @@ all debug::
# Be paranoid regarding library creation (do not update archives)
export NAN_PARANOID ?= true
+ # l10n
+ #export INTERNATIONAL ?= true
+
+ # enable freetype2 support for text objects
+ #export WITH_FREETYPE2 ?= true
+
else # Platform not listed above
export NAN_PYTHON ?= $(LCGDIR)/python
@@ -404,6 +446,12 @@ all debug::
export NAN_BUILDINFO ?= true
# Be paranoid regarding library creation (do not update archives)
export NAN_PARANOID ?= true
+
+ # l10n
+ #export INTERNATIONAL ?= true
+
+ # enable freetype2 support for text objects
+ #export WITH_FREETYPE2 ?= true
endif
endif
endif