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.
This commit is contained in:
2003-05-10 16:35:28 +00:00
parent 1ecddea462
commit b3c48c4d2c
6 changed files with 67 additions and 12 deletions

View File

@@ -58,8 +58,6 @@ CPPFLAGS += -I../../bpython/include
CPPFLAGS += -I../../avi
CPPFLAGS += -I$(NAN_GUARDEDALLOC)/include
CPPFLAGS += -I$(NAN_FREETYPE)/include/freetype2
# we still refer to /include a bit...
CPPFLAGS += -I../../include
@@ -74,3 +72,8 @@ CPPFLAGS += -I$(NAN_IKSOLVER)/include
# path to our own external headerfiles
CPPFLAGS += -I..
ifdef WITH_FREETYPE2
CPPFLAGS += -DWITH_FREETYPE2
CPPFLAGS += -I$(NAN_FREETYPE)/include
CPPFLAGS += -I$(NAN_FREETYPE)/include/freetype2
endif