From: Dan F. <dfa...@us...> - 2008-11-26 08:34:10
|
Update of /cvsroot/libexif/exif In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv18393 Modified Files: NEWS configure.ac Log Message: Fixed alignment of tables in locales with multibyte character encoding (bug #2034873) Index: NEWS =================================================================== RCS file: /cvsroot/libexif/exif/NEWS,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -d -r1.20 -r1.21 --- NEWS 25 Nov 2008 18:52:05 -0000 1.20 +++ NEWS 26 Nov 2008 08:34:03 -0000 1.21 @@ -1,5 +1,7 @@ exif-0.6.x: * Updated translations: id, nl, pl, sk, sv, zh_CN + * Fixed alignment of tables in locales with multibyte character encoding + (bug #2034873) exif-0.6.17 (2008-11-06): * Fixed the output of -s and -t when iconv is configured Index: configure.ac =================================================================== RCS file: /cvsroot/libexif/exif/configure.ac,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -d -r1.23 -r1.24 --- configure.ac 6 Nov 2008 08:50:23 -0000 1.23 +++ configure.ac 26 Nov 2008 08:34:03 -0000 1.24 @@ -62,6 +62,7 @@ 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]) ]) +AC_CHECK_FUNCS(mblen) # --------------------------------------------------------------------------- # libraries needed |