gegl-0.2.0-fix-without-exiv2.patch 823 B

12345678910111213141516171819202122232425262728293031
  1. From c0b4da18e199d1043738c034269f5dd6a4aa7d99 Mon Sep 17 00:00:00 2001
  2. From: Sebastian Pipping <sebastian@pipping.org>
  3. Date: Wed, 10 Jan 2018 22:39:05 +0100
  4. Subject: [PATCH] Fix ./configure --without-exiv2
  5. Variable names were in error
  6. Bug: https://bugs.gentoo.org/641872
  7. ---
  8. configure.ac | 4 ++--
  9. 1 file changed, 2 insertions(+), 2 deletions(-)
  10. diff --git a/configure.ac b/configure.ac
  11. index 30d306e..146b271 100644
  12. --- a/configure.ac
  13. +++ b/configure.ac
  14. @@ -977,8 +977,8 @@ AC_SUBST(LIBSPIRO)
  15. AC_ARG_WITH(exiv2, [ --without-exiv2 build without libexiv2 support])
  16. -have_libexiv2="no"
  17. -if test "x$with_libexiv2" != "xno"; then
  18. +have_exiv2="no"
  19. +if test "x$with_exiv2" != "xno"; then
  20. PKG_CHECK_MODULES(EXIV2, exiv2,
  21. have_exiv2="yes",
  22. have_exiv2="no (exiv2 library not found)")
  23. --
  24. 2.16.0.rc0