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:
authorChris Want <cwant@ualberta.ca>2003-05-11 04:27:23 +0400
committerChris Want <cwant@ualberta.ca>2003-05-11 04:27:23 +0400
commitfbca17dfa7f22655a9d1781d0d1684fcf54281d8 (patch)
tree15a4fbede45e6b4467cdc850a79019c5574f6ca1 /source/Makefile
parentb3c48c4d2ca2f8871fcd2612f8614bfd18cf3c40 (diff)
FTGL support for irix (I would like to say international and truetype
text object support, but I can't test too much until Monday).
Diffstat (limited to 'source/Makefile')
-rw-r--r--source/Makefile8
1 files changed, 6 insertions, 2 deletions
diff --git a/source/Makefile b/source/Makefile
index e12c4baac4d..3bcd2f4aa2a 100644
--- a/source/Makefile
+++ b/source/Makefile
@@ -140,7 +140,9 @@ PYPLAYERLIB ?= $(PYLIB)
ifeq ($(OS), windows)
COMLIB += $(NAN_FREETYPE)/lib/freetype214ST.lib
else
- COMLIB += $(NAN_FREETYPE)/lib/libfreetype.a
+ ifneq ($(OS), irix)
+ COMLIB += $(NAN_FREETYPE)/lib/libfreetype.a
+ endif
endif
endif
ifeq ($(INTERNATIONAL), true)
@@ -159,7 +161,9 @@ ifeq ($(INTERNATIONAL), true)
endif
else
COMLIB += $(NAN_FTGL)/lib/libftgl.a
- COMLIB += $(NAN_FREETYPE)/lib/libfreetype.a
+ ifneq ($(OS), irix)
+ COMLIB += $(NAN_FREETYPE)/lib/libfreetype.a
+ endif
endif
ifeq ($(OS), darwin)
COMLIB += $(NAN_GETTEXT)/lib/libintl.a