summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2020-07-08 03:21:36 +0200
committerBruno Haible <bruno@clisp.org>2020-07-08 03:21:36 +0200
commit3f53c355dd2efa18317f53d24c8b19b8a278674f (patch)
tree599752efbf712f871df6594b280862d15aa58585
parent707090c9ed6a16bc4b152be300578761e34b2bed (diff)
downloadgnulib-3f53c355dd2efa18317f53d24c8b19b8a278674f.tar.gz
gnulib-3f53c355dd2efa18317f53d24c8b19b8a278674f.tar.bz2
doc: Remove support for some very old platforms.
* doc/posix-functions/memcmp.texi: Don't mention "older platforms". * doc/posix-functions/memcpy.texi: Likewise. * doc/posix-functions/memmove.texi: Likewise. * doc/posix-functions/memset.texi: Likewise. * doc/posix-functions/getcwd.texi: Likewise.
-rw-r--r--ChangeLog7
-rw-r--r--doc/posix-functions/getcwd.texi2
-rw-r--r--doc/posix-functions/memcmp.texi2
-rw-r--r--doc/posix-functions/memcpy.texi2
-rw-r--r--doc/posix-functions/memmove.texi2
-rw-r--r--doc/posix-functions/memset.texi2
6 files changed, 7 insertions, 10 deletions
diff --git a/ChangeLog b/ChangeLog
index a1642ef118..9cac500fdf 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,8 +1,15 @@
12020-07-07 Bruno Haible <bruno@clisp.org> 12020-07-07 Bruno Haible <bruno@clisp.org>
2 2
3 doc: Remove support for some very old platforms.
4 * doc/posix-functions/memcmp.texi: Don't mention "older platforms".
5 * doc/posix-functions/memcpy.texi: Likewise.
6 * doc/posix-functions/memmove.texi: Likewise.
7 * doc/posix-functions/memset.texi: Likewise.
8 * doc/posix-functions/getcwd.texi: Likewise.
9
3 memchr: Remove support for some very old platforms. 10 memchr: Remove support for some very old platforms.
4 * m4/memchr-obsolete.m4: Remove file. 11 * m4/memchr-obsolete.m4: Remove file.
5 * modules/memchr-obsolete: Remove file. 12 * modules/memchr-obsolete: Remove file.
6 * m4/memchr.m4 (gl_FUNC_MEMCHR): Assume module 'memchr-obsolete' is 13 * m4/memchr.m4 (gl_FUNC_MEMCHR): Assume module 'memchr-obsolete' is
7 absent. Don't define HAVE_MEMCHR. 14 absent. Don't define HAVE_MEMCHR.
8 * lib/string.in.h (memchr): Assume HAVE_MEMCHR is 1. 15 * lib/string.in.h (memchr): Assume HAVE_MEMCHR is 1.
diff --git a/doc/posix-functions/getcwd.texi b/doc/posix-functions/getcwd.texi
index 5ad8c9dcb3..35b23eb5e3 100644
--- a/doc/posix-functions/getcwd.texi
+++ b/doc/posix-functions/getcwd.texi
@@ -31,14 +31,12 @@ instead of the required @code{EINVAL}:
31mingw. 31mingw.
32@end itemize 32@end itemize
33 33
34Portability problems fixed by Gnulib module @code{getcwd}: 34Portability problems fixed by Gnulib module @code{getcwd}:
35@itemize 35@itemize
36@item 36@item
37This function is missing on some older platforms.
38@item
39This function does not handle long file names (greater than @code{PATH_MAX}) 37This function does not handle long file names (greater than @code{PATH_MAX})
40correctly on some platforms: 38correctly on some platforms:
41glibc on Linux 2.4.20, Mac OS X 10.5, FreeBSD 6.4, NetBSD 5.1, OpenBSD 4.9, AIX 7.1. 39glibc on Linux 2.4.20, Mac OS X 10.5, FreeBSD 6.4, NetBSD 5.1, OpenBSD 4.9, AIX 7.1.
42@end itemize 40@end itemize
43 41
44Portability problems not fixed by Gnulib: 42Portability problems not fixed by Gnulib:
diff --git a/doc/posix-functions/memcmp.texi b/doc/posix-functions/memcmp.texi
index 99fb8100b9..204208cb0b 100644
--- a/doc/posix-functions/memcmp.texi
+++ b/doc/posix-functions/memcmp.texi
@@ -6,14 +6,12 @@ POSIX specification:@* @url{https://pubs.opengroup.org/onlinepubs/9699919799/fun
6 6
7Gnulib module: memcmp 7Gnulib module: memcmp
8 8
9Portability problems fixed by Gnulib: 9Portability problems fixed by Gnulib:
10@itemize 10@itemize
11@item 11@item
12This function is missing on some older platforms.
13@item
14This function fails when comparing 16 bytes or more and with at least one 12This function fails when comparing 16 bytes or more and with at least one
15buffer not starting on a 4-byte boundary on some older platforms: 13buffer not starting on a 4-byte boundary on some older platforms:
16NeXTstep/x86. 14NeXTstep/x86.
17@end itemize 15@end itemize
18 16
19Portability problems not fixed by Gnulib: 17Portability problems not fixed by Gnulib:
diff --git a/doc/posix-functions/memcpy.texi b/doc/posix-functions/memcpy.texi
index 5200f69a2c..ac68a70834 100644
--- a/doc/posix-functions/memcpy.texi
+++ b/doc/posix-functions/memcpy.texi
@@ -6,14 +6,12 @@ POSIX specification:@* @url{https://pubs.opengroup.org/onlinepubs/9699919799/fun
6 6
7Gnulib module: memcpy 7Gnulib module: memcpy
8 8
9Portability problems fixed by Gnulib: 9Portability problems fixed by Gnulib:
10@itemize 10@itemize
11@item 11@item
12This function is missing on some older platforms.
13@item
14This function cannot be called from plain inline or extern inline functions 12This function cannot be called from plain inline or extern inline functions
15on some platforms: 13on some platforms:
16OS X 10.8. 14OS X 10.8.
17@end itemize 15@end itemize
18 16
19Portability problems not fixed by Gnulib: 17Portability problems not fixed by Gnulib:
diff --git a/doc/posix-functions/memmove.texi b/doc/posix-functions/memmove.texi
index 7da46c6ceb..bad1428286 100644
--- a/doc/posix-functions/memmove.texi
+++ b/doc/posix-functions/memmove.texi
@@ -6,14 +6,12 @@ POSIX specification:@* @url{https://pubs.opengroup.org/onlinepubs/9699919799/fun
6 6
7Gnulib module: memmove 7Gnulib module: memmove
8 8
9Portability problems fixed by Gnulib: 9Portability problems fixed by Gnulib:
10@itemize 10@itemize
11@item 11@item
12This function is missing on some older platforms.
13@item
14This function cannot be called from plain inline or extern inline functions 12This function cannot be called from plain inline or extern inline functions
15on some platforms: 13on some platforms:
16OS X 10.8. 14OS X 10.8.
17@end itemize 15@end itemize
18 16
19Portability problems not fixed by Gnulib: 17Portability problems not fixed by Gnulib:
diff --git a/doc/posix-functions/memset.texi b/doc/posix-functions/memset.texi
index 5e3cc808c7..6658b09b90 100644
--- a/doc/posix-functions/memset.texi
+++ b/doc/posix-functions/memset.texi
@@ -6,14 +6,12 @@ POSIX specification:@* @url{https://pubs.opengroup.org/onlinepubs/9699919799/fun
6 6
7Gnulib module: memset 7Gnulib module: memset
8 8
9Portability problems fixed by Gnulib: 9Portability problems fixed by Gnulib:
10@itemize 10@itemize
11@item 11@item
12This function is missing on some older platforms.
13@item
14This function cannot be called from plain inline or extern inline functions 12This function cannot be called from plain inline or extern inline functions
15on some platforms: 13on some platforms:
16OS X 10.8. 14OS X 10.8.
17@end itemize 15@end itemize
18 16
19Portability problems not fixed by Gnulib: 17Portability problems not fixed by Gnulib:

Return to:

Send suggestions and report system problems to the System administrator.