diff options
author | Luca Abeni <lucabe72@email.it> | 2006-08-16 20:09:47 +0000 |
---|---|---|
committer | Luca Abeni <lucabe72@email.it> | 2006-08-16 20:09:47 +0000 |
commit | 1246640aa244671e446a76ece7150f832160d433 (patch) | |
tree | 557711d32fdb361be7122bbe45ac021fdf49d237 /libswscale/Makefile | |
parent | a99073939fb03b142c34008719510f2128c8b936 (diff) | |
download | ffmpeg-1246640aa244671e446a76ece7150f832160d433.tar.gz |
Fix compilation as a win32 shared library (libavutil must be explicitly linked)
Originally committed as revision 19416 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
Diffstat (limited to 'libswscale/Makefile')
-rw-r--r-- | libswscale/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libswscale/Makefile b/libswscale/Makefile index 62aebc9a01..38a33e20a6 100644 --- a/libswscale/Makefile +++ b/libswscale/Makefile @@ -5,6 +5,7 @@ NAME=swscale ifeq ($(BUILD_SHARED),yes) LIBVERSION=$(SWSVERSION) LIBMAJOR=$(SWSMAJOR) +EXTRALIBS := -L../libavutil -lavutil$(BUILDSUF) $(EXTRALIBS) endif # NOTE: -I.. is needed to include config.h |