mirror of https://github.com/odrling/Aegisub
s/WITH_/HAVE_ in src/Makefile so that libass and ffms are actually used when present
Originally committed to SVN as r5482.
This commit is contained in:
parent
8ccc0acc9d
commit
b509cb0be5
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue