Skip to content

Commit 0896bee

Browse files
author
Markus Perl
committed
FFmpeg 8.0
1 parent 5a03e3b commit 0896bee

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

build-ffmpeg

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
# LICENSE: https://github.com/markus-perl/ffmpeg-build-script/blob/master/LICENSE
55

66
PROGNAME=$(basename "$0")
7-
FFMPEG_VERSION=7.1.1
8-
SCRIPT_VERSION=1.54
7+
FFMPEG_VERSION=8.0
8+
SCRIPT_VERSION=1.55
99
CWD=$(pwd)
1010
PACKAGES="$CWD/packages"
1111
WORKSPACE="$CWD/workspace"
@@ -382,8 +382,9 @@ fi
382382
if build "pkg-config" "0.29.2"; then
383383
download "https://pkgconfig.freedesktop.org/releases/pkg-config-$CURRENT_PACKAGE_VERSION.tar.gz"
384384
if [[ "$OSTYPE" == "darwin"* ]]; then
385-
export XXFLAGS +=" -Wno-int-conversion" # pkg-config 0.29.2 has a warning that is treated as an error
386-
export CFLAGS +=" -Wno-error=int-conversion"
385+
CFLAGS+=" -Wno-int-conversion" # pkg-config 0.29.2 has a warning that is treated as an error
386+
CFLAGS+=" -Wno-error=int-conversion"
387+
export CFLAGS
387388
fi
388389
execute ./configure --silent --prefix="${WORKSPACE}" --with-pc-path="${WORKSPACE}"/lib/pkgconfig --with-internal-glib
389390
execute make -j $MJOBS

0 commit comments

Comments
 (0)