[SCM] exiv2 packaging branch, master, updated. debian/0.25-3.1-3734-gdcbc29a
Maximiliano Curia
maxy at moszumanska.debian.org
Thu Jul 13 17:38:51 UTC 2017
Gitweb-URL: http://git.debian.org/?p=pkg-kde/kde-extras/exiv2.git;a=commitdiff;h=3b49c42
The following commit has been merged in the master branch:
commit 3b49c42510187d8fcfb65625127196a353a11f1a
Author: Andreas Huggel <ahuggel at gmx.net>
Date: Tue Oct 2 17:20:26 2007 +0000
Added feature configuration summary.
---
README | 2 +-
config/configure.ac | 62 +++++++++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 63 insertions(+), 1 deletion(-)
diff --git a/README b/README
index b735f22..cdaa26d 100644
--- a/README
+++ b/README
@@ -54,7 +54,7 @@ Feature Package Configure options
-------------------------- -------- ----------------------------
PNG image support zlib --without-zlib
--with-zlib=DIR
-National language support gettext --disable-nls
+Native language support gettext --disable-nls
Converting Windows XP tags libiconv --disable-printucs2
--with-libiconv-prefix[=DIR]
XMP support expat --disable-xmp
diff --git a/config/configure.ac b/config/configure.ac
index 8e1ddb5..dbd9a1d 100644
--- a/config/configure.ac
+++ b/config/configure.ac
@@ -195,3 +195,65 @@ AC_CONFIG_FILES([./config/exiv2.pc])
AC_CONFIG_FILES([./po/Makefile.in])
AC_CONFIG_FILES([./src/doxygen.hpp])
AC_OUTPUT
+
+# ---------------------------------------------------------------------------
+# Configuration summary.
+# ---------------------------------------------------------------------------
+
+echo ""
+echo "-- Exiv2 feature configuration summary ---------------------------"
+
+case "$enable_shared" in
+yes) echo "-- Build a shared library......... YES" ;;
+*) echo "-- Build a shared library......... NO" ;;
+esac
+
+case "x$HAVE_LIBZ" in
+x1) echo "-- PNG image support.............. YES" ;;
+*) echo "-- PNG image support.............. NO"
+ echo ""
+ echo "zlib is required for PNG support. Make sure the zlib header files"
+ echo "are installed and use --with-zlib=DIR if it is in a non-standard"
+ echo "location. You can get zlib from http://www.zlib.net/"
+ echo "" ;;
+esac
+
+case "$USE_NLS" in
+yes) echo "-- Native language support........ YES" ;;
+*) echo "-- Native language support........ NO"
+ echo ""
+ echo "gettext is required for native language support. Make sure the"
+ echo "gettext header files are installed. You can get gettext from"
+ echo "http://www.gnu.org/software/gettext/"
+ echo "" ;;
+esac
+
+case "$USE_PRINTUCS2" in
+yes) echo "-- Conversion of Windows XP tags.. YES" ;;
+*) echo "-- Conversion of Windows XP tags.. NO"
+ echo ""
+ echo "libiconv is required for the conversion of Windows XP tags."
+ echo "Make sure that the libiconv header files are installed and use"
+ echo "--with-libiconv-prefix=DIR if it is in a non-standard location."
+ echo "You can get libiconv from http://www.gnu.org/software/libiconv/"
+ echo "" ;;
+esac
+
+case "$USE_LENSDATA" in
+yes) echo "-- Nikon lens database............ YES" ;;
+*) echo "-- Nikon lens database............ NO" ;;
+esac
+
+case "$USE_XMP_TOOLKIT" in
+yes) echo "-- XMP metadata support........... YES" ;;
+*) echo "-- XMP metadata support........... NO"
+ echo ""
+ echo "Expat is required for XMP support. Make sure the Expat header"
+ echo "files are installed and use --with-expat=DIR if it is in a"
+ echo "non-standard location. You can get Expat from"
+ echo "http://expat.sourceforge.net/"
+ echo "" ;;
+esac
+
+echo "------------------------------------------------------------------"
+echo ""
--
exiv2 packaging
More information about the pkg-kde-commits
mailing list