On 11/12/2017 4:35 PM, Helmut K. C. Tessarek wrote: > I get the following error during configure: > > ERROR: x265 not found using pkg-config > > My last compile run (3 days ago) worked perfectly. Somebody must have > changed the configure script. > > Cheers, > K. C. >
Does this fix it for you? diff --git a/configure b/configure index 2f026c45bc..2a7b846a6d 100755 --- a/configure +++ b/configure @@ -1293,8 +1293,8 @@ test_pkg_config(){ check_pkg_config(){ log check_pkg_config "$@" name="$1" - test_pkg_config "$@" && - eval add_cflags \$${name}_cflags + test_pkg_config "$@" || return 1 + eval add_cflags \$${name}_cflags } check_exec(){ If not, you'll have to give me more info, like the config.log file, but for that open a trac ticket. _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel