From b509cb0be5389b3a383ad296bad8215f4a8ea3fb Mon Sep 17 00:00:00 2001 From: Thomas Goyne Date: Sat, 16 Jul 2011 03:52:30 +0000 Subject: [PATCH] s/WITH_/HAVE_ in src/Makefile so that libass and ffms are actually used when present Originally committed to SVN as r5482. --- aegisub/src/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aegisub/src/Makefile b/aegisub/src/Makefile index 1b5890b7e..86b055700 100644 --- a/aegisub/src/Makefile +++ b/aegisub/src/Makefile @@ -55,7 +55,7 @@ endif ####################### # AUDIO / VIDEO SUPPORT ####################### -ifeq (yes, $(WITH_FFMS)) +ifeq (yes, $(HAVE_FFMS)) SRC_OPT += audio_provider_ffmpegsource.cpp video_provider_ffmpegsource.cpp ffmpegsource_common.cpp audio_provider_ffmpegsource.o video_provider_ffmpegsource.o ffmpegsource_common.o: \ CXXFLAGS += $(CFLAGS_FFMS) @@ -68,7 +68,7 @@ endif ########### # SUBTITLES ########### -ifeq (yes, $(WITH_LIBASS)) +ifeq (yes, $(HAVE_LIBASS)) SRC_OPT += subtitles_provider_libass.cpp subtitles_provider_libass.o: CXXFLAGS += $(CFLAGS_LIBASS) LDFLAGS += $(LDFLAGS_LIBASS)