X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=ChangeLog;h=b7c3e0fc28c84da52dc92757b1961a5a67ae3c58;hb=751494621c1d38c012a170d5eb557637ae9179f2;hp=c4246aaf76afdfadfb6405ce8a7977b8581fcbfb;hpb=490acbe0bb253b84fc00f4ba07fb62e249eebcfb;p=gnulib.git diff --git a/ChangeLog b/ChangeLog index c4246aaf7..b7c3e0fc2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,52 @@ +2014-01-22 Paul Eggert + + qacl: check for fchmod + * m4/acl.m4 (gl_FUNC_ACL): Check for fchmod, since acl-internal.h + and qset-acl.c both use HAVE_FCHMOD. + +2014-01-20 Paul Eggert + + fdopen-tests: port to Tru64 + * tests/test-fdopen.c (main): Don't invoke fdopen on a file + descriptor that is not open, as POSIX doesn't specify the + resulting behavior and the test does not work on Tru64. + Problem reported by Steven M. Schweda in: + http://lists.gnu.org/archive/html/bug-gnulib/2014-01/msg00079.html + + stdalign: port to HP-UX compilers + * lib/stdalign.in.h (_Alignas): Use __attribute__ (__aligned__ (x)) + if __HP_cc or __HP_aCC are nonzero. + +2014-01-16 Paul Eggert + + strtoimax: port to platforms lacking 'long long' + VMS's pre-C99 compiler lacks 'long long', so 'configure' doesn't + check whether strtoll is declared, which causes the C file to + wrongly report an error. Problem reported by Steven M. Schweda in: + http://lists.gnu.org/archive/html/bug-diffutils/2014-01/msg00003.html + * lib/strtoimax.c (strtoull): + Declare only if HAVE_UNSIGNED_LONG_LONG_INT. + (strtoll): Declare only if HAVE_LONG_LONG_INT. + +2014-01-16 Daniel Albers (tiny change) + + relocatable-perl: fix texi syntax + * doc/relocatable-maint.texi: Escape braces. + +2014-01-09 Reuben Thomas + + relocatable-perl: like relocatable-script, but for Perl scripts + * build-aux/relocatable.pl.in: Add. + * doc/relocatable-maint.texi: Add documentation. + * modules/relocatable-perl: Add. + 2014-01-07 Paul Eggert + tests: fix export bug in previous patch + Problem reported by Jim Meyering. + * tests/init.sh (re_shell): New var, which is exported instead of + re_shell_. + tests: simplify porting to Solaris 10 /bin/sh Some test cases in 'grep' need a shell that groks '$('; export re_shell_ for their benefit. Problem reported for 'grep'