summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-08-21 23:19:11 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-08-21 23:19:11 +0000
commite8f5c06e76c47113cee16fc2a1fede24e5c3facf (patch)
tree3a3a54ec82505899d2a6aca0134066f82809e9b4 /libvo
parent6e2e1a80e7713a9e1da2bf50ee5661c6d69d48a3 (diff)
downloadmpv-e8f5c06e76c47113cee16fc2a1fede24e5c3facf.tar.bz2
mpv-e8f5c06e76c47113cee16fc2a1fede24e5c3facf.tar.xz
support for disabling/enabling bitmap font support from configure
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19491 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo')
-rw-r--r--libvo/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/libvo/Makefile b/libvo/Makefile
index fdbd713390..76216a97a4 100644
--- a/libvo/Makefile
+++ b/libvo/Makefile
@@ -5,7 +5,6 @@ LIBNAME = libvo.a
SRCS=aclib.c \
aspect.c \
- font_load.c \
geometry.c \
osd.c \
spuenc.c \
@@ -24,6 +23,10 @@ endif
OBJS_TEMP=$(basename $(SRCS))
OBJS=$(OBJS_TEMP:%=%.o)
+ifeq ($(BITMAP_FONT),yes)
+SRCS += font_load.c
+endif
+
ifeq ($(FREETYPE),yes)
SRCS += font_load_ft.c
endif