Avoid compilation error on mingw.
[gnulib.git] / ChangeLog
index e4c9bf6..e7a2459 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,119 @@
+2009-04-20  Bruno Haible  <bruno@clisp.org>
+
+       Avoid compilation error on mingw.
+       * modules/localename-tests (Depends-on): Add locale.
+
+2009-04-19  Bruno Haible  <bruno@clisp.org>
+
+       Support for building a shared library on Windows platforms.
+       * tests/uninorm/test-nfc.c (n): Don't define if WOE32DLL.
+       (main): Test the presence of UNINORM_NFC here.
+       * tests/uninorm/test-nfd.c (n): Don't define if WOE32DLL.
+       (main): Test the presence of UNINORM_NFD here.
+       * tests/uninorm/test-nfkc.c (n): Don't define if WOE32DLL.
+       (main): Test the presence of UNINORM_NFKC here.
+       * tests/uninorm/test-nfkd.c (n): Don't define if WOE32DLL.
+       (main): Test the presence of UNINORM_NFKD here.
+
+2009-04-19  Bruno Haible  <bruno@clisp.org>
+
+       Avoid a compiler warning.
+       * tests/uninorm/test-u32-normalize-big.c (read_normalization_test_file):
+       Change type of variable 'sequence'.
+
+2009-04-19  Bruno Haible  <bruno@clisp.org>
+
+       * modules/configmake (Makefile.am): When the contents of configmake.h
+       does not change, arrange to preserve its modification time.
+
+2009-04-17  Simon Josefsson  <simon@josefsson.org>
+
+       * top/maint.mk (PO_DOMAIN): New variable, allows overriding of
+       gettext domain.
+
+2009-04-16  Jim Meyering  <meyering@redhat.com>
+
+       useless-if-before-free: improve conversion code
+       * build-aux/useless-if-before-free: Adjust code-in-comment to match
+       "...!= 0" as well as "...!= NULL".  emacs has one of the former.
+
+2009-04-14  Bruno Haible  <bruno@clisp.org>
+
+       * modules/fcntl (Depends-on): Add extensions.
+       * m4/fcntl_h.m4 (gl_FCNTL_H): Add a comment.
+
+2009-04-12  Ben Pfaff  <blp@gnu.org>
+
+       Make fcntl module detect O_NOATIME, O_NOFOLLOW on GNU/Linux.
+       * m4/fcntl_h.m4 (gl_FCNTL_H): Require AC_USE_SYSTEM_EXTENSIONS.
+
+2009-03-20  Ben Pfaff  <blp@gnu.org>
+
+       Make rename replace existing destinations on Windows.
+       * m4/rename.m4: Add test for Mingw.
+       * lib/rename.c: Add rename replacement that uses MoveFileEx with
+       MOVEFILE_REPLACE_EXISTING to replace existing destination files.
+       * doc/posix-functions/rename.texi: Document.
+
+2009-04-10  Bruno Haible  <bruno@clisp.org>
+
+       New include file "iconveh.h".
+       * lib/iconveh.h: New file, extracted from lib/striconveh.h.
+       * lib/striconveh.h: Include it.
+       (enum iconv_ilseq_handler): Remove definition.
+       * lib/striconveha.h: Include <stddef.h> and iconveh.h instead of
+       striconveh.h.
+       * lib/striconveha.c: Include striconveh.h.
+       * lib/uniconv.h: Include iconveh.h instead of striconveh.h.
+       * modules/striconveh (Files): Add lib/iconveh.h.
+       * modules/uniconv/base (Files): Add lib/iconveh.h. Remove
+       lib/striconveh.h.
+
+2009-04-10  Bruno Haible  <bruno@clisp.org>
+
+       * lib/uniconv.h: Update comment.
+
+2009-04-10  Bruno Haible  <bruno@clisp.org>
+
+       * lib/unistr/u8-mbtouc-aux.c: Inside libunistring, define the function
+       always.
+       * lib/unistr/u8-mbtouc-unsafe-aux.c: Likewise.
+       * lib/unistr/u16-mbtouc-aux.c: Likewise.
+       * lib/unistr/u16-mbtouc-unsafe-aux.c: Likewise.
+       * lib/unistr/u8-mbtouc.c: Inside libunistring, include
+       "unistring-notinline.h", so that the function gets defined always.
+       * lib/unistr/u8-mbtouc-unsafe.c: Likewise.
+       * lib/unistr/u8-uctomb.c: Likewise.
+       * lib/unistr/u16-mbtouc.c: Likewise.
+       * lib/unistr/u16-mbtouc-unsafe.c: Likewise.
+       * lib/unistr/u16-uctomb.c: Likewise.
+       * lib/unistr/u32-mbtouc.c: Likewise.
+       * lib/unistr/u32-mbtouc-unsafe.c: Likewise.
+       * lib/unistr/u32-uctomb.c: Likewise.
+
+2009-04-10  Bruno Haible  <bruno@clisp.org>
+
+       Mark 'utime' obsolete.
+       * modules/utime (Status, Notice): New sections.
+       Suggested by Jim Meyering.
+
+       Fix cross-compile guess for utime test.
+       * m4/utime.m4 (AC_FUNC_UTIME_NULL): Add definition from newest unstable
+       autoconf.
+       * doc/posix-functions/utime.texi: Give more precisions.
+       Reported by Jan <ipif@ymail.com>.
+
+2009-04-09  Kamil Dudka  <kdudka@redhat.com>
+
+       filevercmp: correct today's change
+       * lib/filevercmp.c: Also handle coreutils' test inputs.
+       * tests/test-filevercmp.c: Add inputs from one of coreutils' test scripts.
+
+       Fix regression in 'filevercmp' module. Thanks Sven Joachim
+       for reporting it.
+       * lib/filevercmp.c: Special handle for "", "." and "..".
+       * tests/test-filevercmp.c: Enlarge the set suite.
+
 2009-04-07  Jim Meyering  <meyering@redhat.com>
 
        useless-if-before-free: show how to remove braced useless free, too