build: Fix configure error on some platforms

Fixes libid3tag and libavformat detection errors.
This commit is contained in:
Justin Maggard 2022-02-09 18:32:19 -08:00
parent b4e55102af
commit 8d8d04785b

View File

@ -414,7 +414,10 @@ for dir in "" /usr/local $SEARCH_DIR; do
AC_CHECK_LIB([id3tag -lz], [id3_file_open], [LIBID3TAG_LIBS="-lid3tag -lz"], [unset ac_cv_lib_id3tag_id3_file_open; LDFLAGS="$LDFLAGS_SAVE"; continue]) AC_CHECK_LIB([id3tag -lz], [id3_file_open], [LIBID3TAG_LIBS="-lid3tag -lz"], [unset ac_cv_lib_id3tag_id3_file_open; LDFLAGS="$LDFLAGS_SAVE"; continue])
break break
done done
test x"$ac_cv_lib_id3tag__lz___id3_file_open" = x"yes" || AC_MSG_ERROR([Could not find libid3tag]) if test x"$ac_cv_lib_id3tag__lz___id3_file_open" != x"yes" &&
test x"$ac_cv_lib_id3tag__lz_id3_file_open" != x"yes"; then
AC_MSG_ERROR([Could not find libid3tag])
fi
AC_SUBST(LIBID3TAG_LIBS) AC_SUBST(LIBID3TAG_LIBS)
LDFLAGS_SAVE="$LDFLAGS" LDFLAGS_SAVE="$LDFLAGS"
@ -441,7 +444,8 @@ for dir in "" /usr/local $SEARCH_DIR; do
break break
done done
if test x"$ac_cv_lib_avformat__lavcodec__lavutil__lz___av_open_input_file" != x"yes" && if test x"$ac_cv_lib_avformat__lavcodec__lavutil__lz___av_open_input_file" != x"yes" &&
test x"$ac_cv_lib_avformat__lavcodec__lavutil__lz___avformat_open_input" != x"yes"; then test x"$ac_cv_lib_avformat__lavcodec__lavutil__lz___avformat_open_input" != x"yes" &&
test x"$ac_cv_lib_avformat__lavcodec__lavutil__lz_avformat_open_input" != x"yes"; then
AC_MSG_ERROR([Could not find libavformat - part of ffmpeg]) AC_MSG_ERROR([Could not find libavformat - part of ffmpeg])
fi fi
AC_SUBST(LIBAVFORMAT_LIBS) AC_SUBST(LIBAVFORMAT_LIBS)