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:
authorSimon Clitherow <aphex@nildram.co.uk>2003-05-11 22:17:00 +0400
committerSimon Clitherow <aphex@nildram.co.uk>2003-05-11 22:17:00 +0400
commit92b017f3cea22dce6fea3187a0f6fb07befc795c (patch)
tree3c1bef1b51825f177884bd5f0dcfef5d0cca5a37 /source/Makefile
parent2552f05b3148fc0b682691f681fd2bed10350559 (diff)
cygwin build now links with freetype2ST.lib
Diffstat (limited to 'source/Makefile')
-rw-r--r--source/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/Makefile b/source/Makefile
index 3bcd2f4aa2a..f67c1cfedaf 100644
--- a/source/Makefile
+++ b/source/Makefile
@@ -138,7 +138,7 @@ PYPLAYERLIB ?= $(PYLIB)
endif
ifeq ($(WITH_FREETYPE2), true)
ifeq ($(OS), windows)
- COMLIB += $(NAN_FREETYPE)/lib/freetype214ST.lib
+ COMLIB += $(NAN_FREETYPE)/lib/freetype2ST.lib
else
ifneq ($(OS), irix)
COMLIB += $(NAN_FREETYPE)/lib/libfreetype.a
@@ -156,7 +156,7 @@ ifeq ($(INTERNATIONAL), true)
else
COMLIB += $(NAN_GETTEXT)/lib/gnu_gettext.lib
COMLIB += $(NAN_FTGL)/lib/ftgl_static_ST.lib
- COMLIB += $(NAN_FREETYPE)/lib/freetype214ST.lib
+ COMLIB += $(NAN_FREETYPE)/lib/freetype2ST.lib
COMLIB += $(NAN_ICONV)/lib/iconv.lib
endif
else