1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-07-28 19:39:52 +02:00

regex fixes for future POSIX and --without-included-regex.

This commit is contained in:
Paul Eggert
2006-03-17 07:35:25 +00:00
parent d01c74cabd
commit 7202bc0610
2 changed files with 17 additions and 0 deletions
+6
View File
@@ -1,3 +1,9 @@
2006-03-16 Paul Eggert <eggert@cs.ucla.edu>
* regex.h (regoff_t) [defined _REGEX_LARGE_OFFSETS]:
Typedef to long int, not to off_, as POSIX will likely change
in that direction.
2006-03-12 Jim Meyering <jim@meyering.net>
* fts-cycle.c (leave_dir): If cycle-check's saved dev-ino pair matches
+11
View File
@@ -1,3 +1,14 @@
2006-03-16 Paul Eggert <eggert@cs.ucla.edu>
* regex.m4 (gl_REGEX): Don't check for off_t, since the code
no longer needs it. Instead, check that regoff_t is as least
as wide as ptrdiff_t.
Don't define _REGEX_WIDE_OFFSETS unless using the included regex,
so that our regex.h stays compatible with the installed regex.
This is helpful for installers who configure --without-included-regex.
Problem reported by Emanuele Giaquinta.
2006-03-12 Jim Meyering <jim@meyering.net>
* chdir-safer.m4 (gl_CHDIR_SAFER): Add same-inode.h to the list.