[SCM] libav/experimental: Move required libs after the object file for the shared lib compilation. Fixes Cygwin build as reported by Victor Paesa.

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 15:50:36 UTC 2013


The following commit has been merged in the experimental branch:
commit 529dd3c9ea61daff3efd090a2c5b2af9b1726df5
Author: Diego Biurrun <diego at biurrun.de>
Date:   Thu Sep 7 23:04:26 2006 +0000

    Move required libs after the object file for the shared lib compilation.
    Fixes Cygwin build as reported by Victor Paesa.
    
    Originally committed as revision 6192 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/vhook/Makefile b/vhook/Makefile
index 25fdcf3..60ff0be 100644
--- a/vhook/Makefile
+++ b/vhook/Makefile
@@ -35,7 +35,7 @@ uninstall:
 	-rmdir "$(shlibdir)/vhook/"
 
 %$(SLIBSUF): %.o
-	$(CC) $(LDFLAGS_$@) $(LDFLAGS) -g -o $@ $(VHOOKSHFLAGS) $<
+	$(CC) $(LDFLAGS) -g -o $@ $(VHOOKSHFLAGS) $< $(LDFLAGS_$@)
 
 clean:
 	rm -f *.o *.d *~ *.a *.lib *.so *.dylib *.dll

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list