Update of /cvsroot/libexif/exif
In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv6219
Modified Files:
configure.ac NEWS
Log Message:
Fixed a double character encoding conversion problem with recent
GNU gettext because version >= 0.10.36 does the conversion of message
texts itself. The user must configure with --enable-gettext-iconv when
using a gettext that does NOT do the conversion itself.
Index: NEWS
===================================================================
RCS file: /cvsroot/libexif/exif/NEWS,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -p -d -r1.9 -r1.10
--- NEWS 23 Jan 2008 04:01:14 -0000 1.9
+++ NEWS 25 Jan 2008 03:34:03 -0000 1.10
@@ -1,9 +1,10 @@
exif-0.6.16.x:
* Fixed the output of -s and -t when iconv is configured
-
* Updated translations: pl
-
* Added translations: sv
+ * Fixed a double character encoding conversion problem with recent
+ GNU gettext because version >= 0.10.36 does the conversion of message
+ texts itself.
exif-0.6.16:
Index: configure.ac
===================================================================
RCS file: /cvsroot/libexif/exif/configure.ac,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -p -d -r1.13 -r1.14
--- configure.ac 23 Jan 2008 04:01:14 -0000 1.13
+++ configure.ac 25 Jan 2008 03:34:03 -0000 1.14
@@ -1,5 +1,5 @@
AC_PREREQ(2.59)
-AC_INIT([libexif command line interface], [0.6.15], [lib...@li...], [exif])
+AC_INIT([libexif command line interface], [0.6.15.1], [lib...@li...], [exif])
AC_CONFIG_SRCDIR([exif/main.c])
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_MACRO_DIR([auto-m4])
@@ -55,6 +55,13 @@ AC_CHECK_HEADERS([locale.h])
AC_CHECK_HEADER([iconv.h], [
AC_DEFINE(HAVE_ICONV,1,[whether iconv is available])])
+dnl Versions of GNU gettext >= 0.10.36 automatically convert messages into
+dnl the correct locale encoding, but with older versions and maybe non-GNU
+dnl versions the app needs to do that itself.
+AC_ARG_ENABLE(gettext-iconv,
+ [ --enable-gettext-iconv convert character encodings (only needed when gettext doesn't do it itself)],
+ [ AC_DEFINE(ENABLE_GETTEXT_ICONV,1,[whether to run iconv on gettext output]) ])
+
# ---------------------------------------------------------------------------
# libraries needed
|