From f35304a5d2da36b17306c6d75383013a9aad271c Mon Sep 17 00:00:00 2001 From: Justin Maggard Date: Mon, 29 Aug 2022 22:22:50 -0700 Subject: [PATCH] build: Fix libexif test --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 92bca0d..b632bcb 100644 --- a/configure.ac +++ b/configure.ac @@ -404,7 +404,7 @@ for dir in "" /usr/local $SEARCH_DIR; do AC_CHECK_LIB([exif], [exif_data_new_from_file], [LIBEXIF_LIBS="-lexif"], [unset ac_cv_lib_exif_exif_data_new_from_file; LDFLAGS="$LDFLAGS_SAVE"; continue]) break done -test x"$ac_cv_lib_jpeg_jpeg_set_defaults" = x"yes" || AC_MSG_ERROR([Could not find libexif]) +test x"$ac_cv_lib_exif_exif_data_new_from_file" = x"yes" || AC_MSG_ERROR([Could not find libexif]) AC_SUBST(LIBEXIF_LIBS) LDFLAGS_SAVE="$LDFLAGS"