summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVíctor Paesa <wzrlpy@arsystel.com>2008-02-15 19:31:19 +0000
committerVitor Sessak <vitor1001@gmail.com>2008-02-15 19:31:19 +0000
commitbb9cb87ca0695367c860018ae9c7aa076857a5b8 (patch)
treea984fc7f77837b8caf23b06d1a039afaa8eb615a
parent9f4a53d1f803717ce1e9542c9a2a9e1932613bf8 (diff)
Fix Cygwin compilation.
Patch by Víctor Paesa. Commited in SoC by Vitor Sessak on 2007-11-10 20:00:16 Originally committed as revision 11950 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--libavfilter/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/Makefile b/libavfilter/Makefile
index 012c4a05f8..0043c1c9f2 100644
--- a/libavfilter/Makefile
+++ b/libavfilter/Makefile
@@ -21,7 +21,7 @@ OBJS-yes = vf_crop.o \
HEADERS = avfilter.h
-EXTRALIBS := -L$(BUILD_ROOT)/libavutil -lavutil$(BUILDSUF) $(EXTRALIBS)
+EXTRALIBS := -L$(BUILD_ROOT)/libavutil -lavutil$(BUILDSUF) -L$(BUILD_ROOT)/libswscale -lswscale$(BUILDSUF) -L$(BUILD_ROOT)/libavcodec -lavcodec$(BUILDSUF) $(EXTRALIBS)
NAME=avfilter
LIBVERSION=$(LAVFILTERVERSION)