applied patch from Tim Mooney which fixes configure output if libexif is

2007-08-24  Michael Natterer  <mitch@gimp.org>

	* configure.in: applied patch from Tim Mooney which fixes
	configure output if libexif is not found. Fixes bug #469708.


svn path=/trunk/; revision=23356
This commit is contained in:
Michael Natterer 2007-08-23 23:01:59 +00:00 committed by Michael Natterer
parent 94f2404a43
commit 70e204d49d
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2007-08-24 Michael Natterer <mitch@gimp.org>
* configure.in: applied patch from Tim Mooney which fixes
configure output if libexif is not found. Fixes bug #469708.
2007-08-23 Øyvind Kolås <pippin@gimp.org> 2007-08-23 Øyvind Kolås <pippin@gimp.org>
* app/display/gimpdisplayshell-render.c: added a static global * app/display/gimpdisplayshell-render.c: added a static global

View file

@ -1106,7 +1106,8 @@ if test x$with_libexif != xno && test -z "$LIBEXIF" && test -n "$LIBJPEG"; then
have_libexif=yes have_libexif=yes
PKG_CHECK_MODULES(EXIF, libexif >= exif_required_version, PKG_CHECK_MODULES(EXIF, libexif >= exif_required_version,
AC_DEFINE(HAVE_EXIF, 1, [Define to 1 if libexif is available]), AC_DEFINE(HAVE_EXIF, 1, [Define to 1 if libexif is available]),
have_libexif="no (libexif not found)") have_libexif="no (libexif not found or too old)"
AC_MSG_RESULT([$have_libexif]))
fi fi
AC_SUBST(EXIF_CFLAGS) AC_SUBST(EXIF_CFLAGS)