Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/LAVFilters.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHendrik Leppkes <h.leppkes@gmail.com>2015-04-19 21:48:52 +0300
committerHendrik Leppkes <h.leppkes@gmail.com>2015-04-19 21:48:52 +0300
commitb6a5339a3350d99402d90f937f22aa00578b0b98 (patch)
tree07eac61210f5d613f1974db5cd98091b2d03a533 /build_ffmpeg.sh
parent8ed30d3061e6b0f57e384c48e7f65359093fcb13 (diff)
Fix build for people with missing 64-bit pkg-config
Diffstat (limited to 'build_ffmpeg.sh')
-rw-r--r--build_ffmpeg.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/build_ffmpeg.sh b/build_ffmpeg.sh
index 3da56956..f919e110 100644
--- a/build_ffmpeg.sh
+++ b/build_ffmpeg.sh
@@ -102,7 +102,7 @@ configure() (
EXTRA_CFLAGS="-D_WIN32_WINNT=0x0502 -DWINVER=0x0502 -I../thirdparty/include"
EXTRA_LDFLAGS=""
if [ "${arch}" == "x86_64" ]; then
- OPTIONS="${OPTIONS} --enable-cross-compile --cross-prefix=${cross_prefix} --target-os=mingw32"
+ OPTIONS="${OPTIONS} --enable-cross-compile --cross-prefix=${cross_prefix} --target-os=mingw32 --pkg-config=pkg-config"
EXTRA_LDFLAGS="${EXTRA_LDFLAGS} -L../thirdparty/lib64"
else
OPTIONS="${OPTIONS} --cpu=i686"