X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=MODULES.html;h=ee389e5d56951d36836ac1a3894183fb1af0581f;hb=b0d3c1545196ae640d1f6de6c084f15812a9650a;hp=adb82d5db58007979ec57d8c5dc7e282fd167fe7;hpb=10e1b787a61de14407e207919a1dbf24c4205898;p=gnulib.git diff --git a/MODULES.html b/MODULES.html index adb82d5db..ee389e5d5 100644 --- a/MODULES.html +++ b/MODULES.html @@ -2,7 +2,7 @@ Gnulib Module List - +

Gnulib Module List

@@ -10,10 +10,6 @@

Support for systems lacking ANSI C 89

- - @@ -287,6 +283,10 @@ HAVE_ALLOCA. + +
c-bs-a - Determine portability of "\a". -
assert Allow the installer to disable assertions through "configure --disable-assert".
xstrtol Convert string to 'long' or 'unsigned long', with error checking.
xstrtold + Convert string to 'long double', with error checking. +

Date and time <time.h>

@@ -356,6 +356,61 @@ HAVE_ALLOCA.
Handle --help and --version options.
+

Container data structures

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
list + Abstract sequential list data type. +
array-list + Sequential list data type implemented by an array. +
carray-list + Sequential list data type implemented by a circular array. +
linked-list + Sequential list data type implemented by a linked list. +
avltree-list + Sequential list data type implemented by a binary tree. +
rbtree-list + Sequential list data type implemented by a binary tree. +
linkedhash-list + Sequential list data type implemented by a hash table with a linked list. +
avltreehash-list + Sequential list data type implemented by a hash table with a binary tree. +
rbtreehash-list + Sequential list data type implemented by a hash table with a binary tree. +
oset + Abstract ordered set data type. +
array-oset + Ordered set data type implemented by an array. +
avltree-oset + Ordered set data type implemented by a binary tree. +
rbtree-oset + Ordered set data type implemented by a binary tree. +

Cryptographic computations

@@ -469,9 +524,12 @@ memory allocation.
stdint - An <stdint.h> that nearly conforms to C99. -(Nearly: {uint,int}_{fast,least}{8,16,32,64}_t may not correspond -to the fastest and smallest types available on the system.) + A <stdint.h> that nearly conforms to C99. +Assumes typical host with 8-bit bytes, two's complement +representation, and no padding or trap representations, with int +widths equal to 8, 16, 32, and 64 bits. {uint,int}_fast{8,16,32,64}_t +may not correspond to the fastest types available on the system. +Macros are used instead of typedefs.

Input/output <stdio.h>

@@ -664,6 +722,10 @@ to a fixed length string strtok_r() function: split string into tokens, thread safe. + sys_stat + A <sys/stat.h> for systems with missing declarations. + + unistd A <unistd.h> for systems lacking it. @@ -737,6 +799,10 @@ variables. Return the canonical absolute name of a given file. + clean-temp + Temporary directories and temporary files with automatic cleanup. + + copy-file Copying of files. @@ -790,6 +856,10 @@ file. lchown() function: change ownership of a file. + mkancesdirs + Ensure the existence of the ancestor directories of a file. + + mkdir-p Ensure that a directory and its parents exist. @@ -813,7 +883,7 @@ filename, and a suffix. same - Determine whether two pathnames refer to the same directory entry of the same + Determine whether two file names refer to the same directory entry of the same directory. @@ -829,6 +899,10 @@ directory. stat-related time functions + tmpdir + Determine a temporary directory. + + unlinkdir Determine (and maybe change) whether we can unlink directories. @@ -879,16 +953,20 @@ directory.

File stream based Input/Output

- - + + + + + +
fpending - Determine the number of bytes waiting in the output buffer of a stream. + close-stream + Close a stream, with nicer error checking than fclose's.
closeout - Close stdout, checking for errors. + Close standard output, exiting with a diagnostic on error.
stdio-safer - File stream functions that avoid clobbering std{in,out,err}. + fopen-safer + fopen function that avoids clobbering std{in,out,err}. +
fpending + Determine the number of bytes waiting in the output buffer of a stream.
getpass @@ -898,6 +976,14 @@ directory. getpass-gnu getpass() function: read a password of arbitrary length from /dev/tty.
stdlib-safer + File stream functions that avoid clobbering std{in,out,err}. +
tmpfile-safer + tmpfile function that avoids clobbering std{in,out,err}. +

Users and groups

@@ -1077,6 +1163,10 @@ usually the host name including FQDN. + +
javaexec Execute a Java program.
javaversion + Determine the Java version supported by javaexec. +

C#

@@ -1188,6 +1278,17 @@ variables.
If possible, ignore libraries that are not depended on.
+

Support for building documentation

+ + + + + +
fdl + Provide the Free Documentation License. +
gendocs + Generate manuals in several formats from Texinfo sources, +

Support for systems lacking ANSI C 89

@@ -1205,13 +1306,6 @@ variables. - - + +
Depends on
c-bs-a - --- - --- - c-bs-a.m4
AC_C_BACKSLASH_A -
--- -
assert #include <assert.h> --- @@ -1787,6 +1881,13 @@ variables. ulonglong.m4
longlong.m4
stdint_h.m4
inttypes_h.m4
uintmax_t.m4
intmax_t.m4
xstrtol.m4
gl_XSTRTOL
exitfail
error
intprops
xstrtold + #include "xstrtod.h" + xstrtod.c
xstrtold.c +
xstrtod.m4
gl_XSTRTOLD +
stdbool +

Date and time <time.h>

@@ -1937,7 +2038,7 @@ variables.
#include "version-etc.h" version-etc.c --- - gettext-h + gettext-h
stdarg
version-etc-fsf @@ -1954,6 +2055,114 @@ variables. version-etc
+

Container data structures

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
modules/ + lib/ + lib/ + m4/ +   +
Module + Header + Implementation + Autoconf macro + Depends on +
list + #include "gl_list.h" + gl_list.c + gl_list.m4
gl_LIST +
stdbool +
array-list + #include "gl_array_list.h" + gl_array_list.c + --- + list
xalloc
xsize +
carray-list + #include "gl_carray_list.h" + gl_carray_list.c + --- + list
xalloc
xsize +
linked-list + #include "gl_linked_list.h" + gl_linked_list.c
gl_anylinked_list1.h
gl_anylinked_list2.h +
--- + list
xalloc +
avltree-list + #include "gl_avltree_list.h" + gl_avltree_list.c
gl_anyavltree_list1.h
gl_anyavltree_list2.h
gl_anytree_list1.h
gl_anytree_list2.h +
--- + list
xalloc +
rbtree-list + #include "gl_rbtree_list.h" + gl_rbtree_list.c
gl_anyrbtree_list1.h
gl_anyrbtree_list2.h
gl_anytree_list1.h
gl_anytree_list2.h +
--- + list
xalloc +
linkedhash-list + #include "gl_linkedhash_list.h" + gl_linkedhash_list.c
gl_anyhash_list1.h
gl_anyhash_list2.h
gl_anylinked_list1.h
gl_anylinked_list2.h +
--- + list
size_max
xalloc
xsize +
avltreehash-list + #include "gl_avltreehash_list.h" + gl_avltreehash_list.c
gl_anyhash_list1.h
gl_anyhash_list2.h
gl_anyavltree_list1.h
gl_anyavltree_list2.h
gl_anytree_list1.h
gl_anytree_list2.h
gl_anytreehash_list1.h
gl_anytreehash_list2.h +
--- + list
avltree-oset
size_max
xalloc
xsize +
rbtreehash-list + #include "gl_rbtreehash_list.h" + gl_rbtreehash_list.c
gl_anyhash_list1.h
gl_anyhash_list2.h
gl_anyrbtree_list1.h
gl_anyrbtree_list2.h
gl_anytree_list1.h
gl_anytree_list2.h
gl_anytreehash_list1.h
gl_anytreehash_list2.h +
--- + list
rbtree-oset
size_max
xalloc
xsize +
oset + #include "gl_oset.h" + gl_oset.c + gl_list.m4
gl_LIST +
stdbool +
array-oset + #include "gl_array_oset.h" + gl_array_oset.c + --- + oset
xalloc
xsize +
avltree-oset + #include "gl_avltree_oset.h" + gl_avltree_oset.c
gl_anytree_oset.h +
--- + oset
xalloc +
rbtree-oset + #include "gl_rbtree_oset.h" + gl_rbtree_oset.c
gl_anytree_oset.h +
--- + oset
xalloc +

Cryptographic computations

@@ -2231,7 +2440,7 @@ variables.
stdint #include <stdint.h> stdint_.h - stdint.m4
full-header-path.m4
size_max.m4
wchar_t.m4
gl_STDINT_H +
stdint.m4
absolute-header.m4
longlong.m4
gl_STDINT_H
---
@@ -2501,14 +2710,14 @@ variables. getaddrinfo #include "getaddrinfo.h" getaddrinfo.c
gai_strerror.c - getaddrinfo.m4
sockpfaf.m4
gl_GETADDRINFO - restrict
gettext-h
socklen
stdbool
strdup
sys_socket
inet_ntop + getaddrinfo.m4
gl_GETADDRINFO + restrict
gettext-h
snprintf
socklen
stdbool
strdup
sys_socket
inet_ntop getcwd #include "getcwd.h" getcwd.c - d-ino.m4
getcwd-path-max.m4
getcwd.m4
gl_FUNC_GETCWD + d-ino.m4
getcwd-abort-bug.m4
getcwd-path-max.m4
getcwd.m4
gl_FUNC_GETCWD mempcpy
extensions
stdbool @@ -2550,14 +2759,14 @@ variables. inet_ntop #include "inet_ntop.h" inet_ntop.c - inet_ntop.m4
sockpfaf.m4
gl_INET_NTOP + inet_ntop.m4
gl_INET_NTOP restrict
socklen
sys_socket inet_pton #include "inet_pton.h" inet_pton.c - inet_pton.m4
sockpfaf.m4
gl_INET_PTON + inet_pton.m4
gl_INET_PTON restrict
socklen
sys_socket @@ -2572,7 +2781,7 @@ variables. #include <stdlib.h> mkstemp.c
tempname.c ulonglong.m4
stdint_h.m4
inttypes_h.m4
uintmax_t.m4
mkstemp.m4
gl_FUNC_MKSTEMP - stat-macros + stat-macros
sys_stat mkdtemp @@ -2659,6 +2868,13 @@ variables. restrict + sys_stat + #include <sys/stat.h> + stat_.h + absolute-header.m4
sys_stat_h.m4
gl_HEADER_SYS_STAT_H + --- + + unistd #include <unistd.h> --- @@ -2700,8 +2916,8 @@ variables. dirname #include "dirname.h" dirname.c
basename.c
stripslash.c - dos.m4
dirname.m4
gl_DIRNAME - xalloc
stdbool + dos.m4
dirname.m4
double-slash-root.m4
gl_DIRNAME + stdbool
xalloc
xstrndup getopt @@ -2816,6 +3032,13 @@ variables. cycle-check
filenamecat
stat-macros
xalloc
xgetcwd
xreadlink + clean-temp + #include "clean-temp.h" + clean-temp.c + --- + stdbool
unistd
error
fatal-signal
pathmax
tmpdir
mkdtemp
xalloc
xallocsa
linked-list
gettext-h + + copy-file #include "copy-file.h" copy-file.c @@ -2825,7 +3048,7 @@ variables. cycle-check #include "cycle-check.h" - cycle-check.c
dev-ino.h + cycle-check.c
same-inode.h
dev-ino.h --- stdbool @@ -2907,11 +3130,18 @@ variables. chown
stat-macros + mkancesdirs + #include "mkancesdirs.h" + mkancesdirs.c + mkancesdirs.m4
gl_MKANCESDIRS + dirname
stat-macros + + mkdir-p #include "mkdir-p.h" - chdir-safer.c
chdir-safer.h
lchmod.h
mkdir-p.c - afs.m4
chdir-safer.m4
lchmod.m4
mkdir-p.m4
gl_MKDIR_PARENTS - alloca
chown
gettext-h
save-cwd
dirname
error
quote
stat-macros
stdbool + dirchownmod.c
dirchownmod.h
lchmod.h
mkdir-p.c + lchmod.m4
mkdir-p.m4
gl_MKDIR_PARENTS + error
gettext-h
lchown
mkancesdirs
quote
stat-macros
stdbool modechange @@ -2944,7 +3174,7 @@ variables. same #include "same.h" - same.c + same.c
same-inode.h same.m4
gl_SAME xalloc
error
dirname
stdbool @@ -2970,6 +3200,13 @@ variables. timespec + tmpdir + #include "tmpdir.h" + tmpdir.c + tmpdir.m4
gt_TMPDIR + stdbool + + unlinkdir #include "unlinkdir.h" unlinkdir.c @@ -3081,27 +3318,34 @@ variables. Depends on - fpending - #include "__fpending.h" - __fpending.c - fpending.m4
gl_FUNC_FPENDING - --- + close-stream + #include "close-stream.h" + close-stream.c + close-stream.m4
gl_CLOSE_STREAM + fpending
stdbool closeout #include "closeout.h" closeout.c closeout.m4
gl_CLOSEOUT - gettext-h
error
quotearg
fpending
exitfail
stdbool + close-stream
gettext-h
error
quotearg
exitfail - stdio-safer + fopen-safer #include "stdio-safer.h" stdio--.h
fopen-safer.c - stdio-safer.m4
gl_STDIO_SAFER + stdio-safer.m4
gl_FOPEN_SAFER unistd-safer + fpending + #include "__fpending.h" + __fpending.c + fpending.m4
gl_FUNC_FPENDING + --- + + getpass #include "getpass.h" getpass.c @@ -3115,6 +3359,20 @@ variables. getpass.m4
gl_FUNC_GETPASS_GNU getline
stdbool + + stdlib-safer + #include "stdlib-safer.h" + stdlib--.h
mkstemp-safer.c + stdlib-safer.m4
gl_STDLIB_SAFER + mkstemp
unistd-safer + + + tmpfile-safer + #include "stdio-safer.h" + stdio--.h
tmpfile-safer.c + stdio-safer.m4
gl_TMPFILE_SAFER + binary-io
unistd-safer +

Users and groups

@@ -3288,7 +3546,7 @@ variables. @@ -3498,7 +3756,7 @@ variables. + +
gettext #include "gettext.h" --- - codeset.m4
gettext.m4
glibc2.m4
glibc21.m4
iconv.m4
intdiv0.m4
intmax.m4
inttypes.m4
inttypes_h.m4
inttypes-pri.m4
isc-posix.m4
lcmessage.m4
longdouble.m4
longlong.m4
nls.m4
po.m4
printf-posix.m4
progtest.m4
signed.m4
size_max.m4
stdint_h.m4
uintmax_t.m4
ulonglong.m4
wchar_t.m4
wint_t.m4
xsize.m4
AM_GNU_GETTEXT([external])
AM_GNU_GETTEXT_VERSION([0.14.5]) +
codeset.m4
gettext.m4
glibc2.m4
glibc21.m4
iconv.m4
intdiv0.m4
intmax.m4
inttypes_h.m4
inttypes-h.m4
inttypes-pri.m4
lcmessage.m4
lock.m4
longdouble.m4
longlong.m4
nls.m4
po.m4
printf-posix.m4
progtest.m4
signed.m4
size_max.m4
stdint_h.m4
uintmax_t.m4
ulonglong.m4
visibility.m4
wchar_t.m4
wint_t.m4
xsize.m4
AM_GNU_GETTEXT([external])
AM_GNU_GETTEXT_VERSION([0.15])
gettext-h
havelib
#include "javacomp.h" javacomp.c --- - stdbool
xallocsa
execute
pipe
wait-process
classpath
xsetenv
sh-quote
safe-read
xalloc
error
gettext-h
javacomp-script +
stdbool
unistd
javaversion
execute
pipe
wait-process
classpath
xsetenv
sh-quote
binary-io
safe-read
xalloc
xallocsa
getline
pathname
fwriteerror
clean-temp
error
xvasprintf
strstr
gettext-h
javacomp-script
javaexec @@ -3507,6 +3765,13 @@ variables. javaexec.m4
gt_JAVAEXEC
AC_CONFIG_FILES([javaexec.sh:build-aux/javaexec.sh.in])
stdbool
execute
classpath
xsetenv
sh-quote
pathname
xalloc
xallocsa
error
gettext-h
javaversion + #include "javaversion.h" + javaversion.c
javaversion.java
javaversion.class +
--- + javaexec
stdbool
pipe
wait-process
getline
gettext-h +

C#

@@ -3636,8 +3901,8 @@ variables.
getusershell --- getusershell.c - getusershell.m4
gl_PREREQ_GETUSERSHELL -
stdio-safer
xalloc +
getusershell.m4
gl_FUNC_GETUSERSHELL +
fopen-safer
xalloc
physmem @@ -3734,6 +3999,37 @@ variables. ---
+

Support for building documentation

+ + + + + + + + + +
modules/ + lib/ + lib/ + m4/ +   +
Module + Header + Implementation + Autoconf macro + Depends on +
fdl + --- + --- + --- + --- +
gendocs + --- + --- + --- + --- +

Unclassified modules - please update MODULES.html.sh

@@ -3765,6 +4061,13 @@ variables. + +
stdint
arpa_inet + #include <arpa/inet.h> + --- + arpa_inet_h.m4
gl_HEADER_ARPA_INET +
sys_socket +
chdir-long #include "chdir-long.h" chdir-long.c @@ -3915,8 +4218,8 @@ variables. inttypes #include <inttypes.h> inttypes.h - include_next.m4
full-header-path.m4
_inttypes_h.m4
gl_INTTYPES_H -
stdint + include_next.m4
absolute-header.m4
_inttypes_h.m4
gl_INTTYPES_H +
---
javacomp-script @@ -3999,27 +4302,29 @@ variables. sys_socket #include <sys/types.h>
#include <sys/socket.h>
socket_.h - sys_socket_h.m4
gl_HEADER_SYS_SOCKET +
sys_socket_h.m4
sockpfaf.m4
gl_HEADER_SYS_SOCKET
---

Lone files - please create new modules containing them

-lib/mkstemp-safer.c
+lib/chdir-safer.c
+lib/chdir-safer.h
 lib/progreloc.c
-lib/stdlib--.h
+m4/afs.m4
+m4/chdir-safer.m4
 m4/gnulib-tool.m4
 m4/host-os.m4
+m4/isc-posix.m4
 m4/jm-winsz1.m4
 m4/jm-winsz2.m4
 m4/link-follow.m4
 m4/onceonly.m4
+m4/onceonly_2_57.m4
 m4/perl.m4
 m4/ptrdiff_max.m4
-m4/readdir.m4
 m4/rmdir-errno.m4
 m4/st_dm_mode.m4
-m4/stdlib-safer.m4
 m4/uint32_t.m4
 m4/uintptr_t.m4
 m4/unlink-busy.m4
@@ -4038,6 +4343,6 @@ variables.
       
  • A POT file and some PO files
    - Generated from MODULES.html.sh on 29 June 2006. + Generated from MODULES.html.sh on 26 July 2006.