]> git.sesse.net Git - x264/commitdiff
configure: Don't check for libavcore
authorDiego Biurrun <diego@biurrun.de>
Wed, 7 May 2014 10:46:42 +0000 (12:46 +0200)
committerFiona Glaser <fiona@x264.com>
Sun, 20 Jul 2014 03:52:58 +0000 (20:52 -0700)
libavcore was a never-released bad idea with a short lifespan.

configure

index 5f6e5f18c2d66b418f660fb7d70798363eb7dcd5..4f2846e9356e892a39be4b14c7bd7a725d93800f 100755 (executable)
--- a/configure
+++ b/configure
@@ -870,7 +870,7 @@ if [ "$lavf" = "auto" ] ; then
     fi
     if [ -z "$LAVF_LIBS" -a -z "$LAVF_CFLAGS" ]; then
         LAVF_LIBS="-lavformat"
-        for lib in -lpostproc -lavcodec -lavcore -lswscale -lavutil -lm -lz -lbz2 $libpthread -lavifil32 -lws2_32; do
+        for lib in -lpostproc -lavcodec -lswscale -lavutil -lm -lz -lbz2 $libpthread -lavifil32 -lws2_32; do
             cc_check "" $lib && LAVF_LIBS="$LAVF_LIBS $lib"
         done
     fi