summarylogtreecommitdiffstats
path: root/ffmpeg-link.patch
diff options
context:
space:
mode:
authorFabioLolix2021-03-01 15:13:18 +0100
committerFabioLolix2021-03-01 15:13:18 +0100
commitec0a1a132c051f5079e2edff84327dabd2e949b9 (patch)
tree68139536c519e1e591eb730e6363ee3d85aa64d6 /ffmpeg-link.patch
parent280bc9f2217c050f43440f3552da7ef8f2cc1fa0 (diff)
downloadaur-cinelerra-cv.tar.gz
fix build and pkgver
Diffstat (limited to 'ffmpeg-link.patch')
-rw-r--r--ffmpeg-link.patch24
1 files changed, 0 insertions, 24 deletions
diff --git a/ffmpeg-link.patch b/ffmpeg-link.patch
deleted file mode 100644
index a18e35e60a9f..000000000000
--- a/ffmpeg-link.patch
+++ /dev/null
@@ -1,24 +0,0 @@
---- configure.ac
-+++ configure.ac
-@@ -497,7 +497,7 @@
- AC_ARG_WITH([external-ffmpeg], AC_HELP_STRING([--with-external-ffmpeg], [use external ffmpeg library]))
-
- if test "x$with_external_ffmpeg" = "xyes"; then
-- PKG_CHECK_MODULES([FFMPEG_TEMP], [libavcodec libpostproc])
-+ PKG_CHECK_MODULES([FFMPEG_TEMP], [libavcodec libpostproc libavutil])
- FFMPEG_FOLDER=""
- FFMPEG_EXTERNALTEXT="External ffmpeg"
-
-@@ -515,10 +515,10 @@
- AC_MSG_RESULT($enable_ffmpeg_swscale)
- if test x"$enable_ffmpeg_swscale" = xyes; then
- dnl AC_DEFINE(HAVE_SWSCALER)
-- PKG_CHECK_MODULES([FFMPEG], [libavcodec libpostproc libswscale])
-+ PKG_CHECK_MODULES([FFMPEG], [libavcodec libpostproc libswscale libavutil])
- FFMPEG_CFLAGS="$FFMPEG_CFLAGS -I/usr/include/libavcodec -I/usr/include/libswscale -DHAVE_SWSCALER"
- else
-- PKG_CHECK_MODULES([FFMPEG], [libavcodec libpostproc])
-+ PKG_CHECK_MODULES([FFMPEG], [libavcodec libpostproc libavutil])
- fi
- FFMPEG_EXTERNALTEXT="External ffmpeg"
- else