Build font_load_ft.c only if FREETYPE is in config.mak, noticed by Jan Knutar.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18892 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2006-07-03 23:13:25 +00:00
parent a205e9444c
commit 6ce30bb91e
1 changed files with 4 additions and 1 deletions

View File

@ -43,7 +43,6 @@ SRCS_MENCODER = mencoder.c \
divx4_vbr.c \
libvo/aclib.c \
libvo/font_load.c \
libvo/font_load_ft.c \
libvo/osd.c \
libvo/sub.c \
parser-mecmd.c \
@ -61,6 +60,10 @@ ifeq ($(UNRARLIB),yes)
SRCS_COMMON += unrarlib.c
endif
ifeq ($(FREETYPE),yes)
SRCS_MENCODER += font_load_ft.c
endif
OBJS_MENCODER = $(SRCS_MENCODER:.c=.o)
OBJS_MPLAYER = $(SRCS_MPLAYER:.c=.o)