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

Gnulib Module List

@@ -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

@@ -744,6 +799,10 @@ variables. + + @@ -797,6 +856,10 @@ file. + + @@ -836,6 +899,10 @@ directory. + + @@ -886,16 +953,20 @@ directory.

File stream based Input/Output

Return the canonical absolute name of a given file.
clean-temp + Temporary directories and temporary files with automatic cleanup. +
copy-file Copying of files.
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.
stat-related time functions
tmpdir + Determine a temporary directory. +
unlinkdir Determine (and maybe change) whether we can unlink directories.
- - + + + + + +
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 @@ -905,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

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

C#

@@ -1195,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

@@ -1944,7 +2038,7 @@ variables.
#include "version-etc.h" version-etc.c --- - gettext-h + gettext-h
stdarg
version-etc-fsf @@ -1961,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

@@ -2508,8 +2710,8 @@ variables. @@ -2830,6 +3032,13 @@ 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 @@ -2557,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
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 @@ -2921,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
same-inode.h -
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 @@ -2984,6 +3200,13 @@ variables. timespec
tmpdir + #include "tmpdir.h" + tmpdir.c + tmpdir.m4
gt_TMPDIR +
stdbool +
unlinkdir #include "unlinkdir.h" unlinkdir.c @@ -3095,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 @@ -3129,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

@@ -3302,7 +3546,7 @@ variables. @@ -3512,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 @@ -3521,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#

@@ -3650,8 +3901,8 @@ variables.
getusershell --- getusershell.c - getusershell.m4
gl_PREREQ_GETUSERSHELL -
stdio-safer
xalloc +
getusershell.m4
gl_FUNC_GETUSERSHELL +
fopen-safer
xalloc
physmem @@ -3748,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

@@ -3779,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 @@ -4013,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
@@ -4052,6 +4343,6 @@ variables.
       
  • A POT file and some PO files
    - Generated from MODULES.html.sh on 4 July 2006. + Generated from MODULES.html.sh on 26 July 2006.