First whack at getting FREETYPE2 stuff added to the

old and autoconf makefiles.  My machine seems to have messed up libs
so I can't test it, its a start though :)

Kent
This commit is contained in:
2003-05-02 17:48:06 +00:00
parent 723b84c79c
commit 0aaa02e6b5
3 changed files with 10 additions and 1 deletions

View File

@@ -58,6 +58,8 @@ 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

View File

@@ -48,4 +48,6 @@ CPPFLAGS += -I../../makesdna
CPPFLAGS += -I..
# path to the guarded memory allocator
CPPFLAGS += -I$(NAN_GUARDEDALLOC)/include
# path to freetype font stuff
CPPFLAGS += -I$(NAN_FREETYPE)/include/freetype2
CPPFLAGS += -I../../include/

View File

@@ -37,6 +37,11 @@ ifdef NAN_DEBUG
LDFLAGS += $(NAN_DEBUG)
endif
ifdef WITH_FREETYPE2
LDFLAGS += -L$(NAN_FREETYPE)/lib -lfreetype
endif
DBG_LDFLAGS += -g
ifneq (x$(DEBUG_DIR), x)