mirror of
https://git.savannah.gnu.org/git/gnulib.git
synced 2025-08-08 17:22:05 +03:00
Module description.
This commit is contained in:
18
modules/acl
Normal file
18
modules/acl
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/acl.h
|
||||||
|
lib/acl.c
|
||||||
|
m4/acl.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
AC_FUNC_ACL
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
lib_SOURCES += acl.h acl.c
|
||||||
|
|
||||||
|
Include:
|
||||||
|
"acl.h"
|
||||||
|
|
46
modules/alloca
Normal file
46
modules/alloca
Normal file
@@ -0,0 +1,46 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/alloca.c
|
||||||
|
m4/alloca.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
xalloc
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
gl_FUNC_ALLOCA
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
|
||||||
|
Include:
|
||||||
|
#ifdef __GNUC__
|
||||||
|
# ifndef alloca
|
||||||
|
# define alloca __builtin_alloca
|
||||||
|
# endif
|
||||||
|
#else
|
||||||
|
# ifdef _MSC_VER
|
||||||
|
# include <malloc.h>
|
||||||
|
# define alloca _alloca
|
||||||
|
# else
|
||||||
|
# if HAVE_ALLOCA_H
|
||||||
|
# include <alloca.h>
|
||||||
|
# else
|
||||||
|
# ifdef _AIX
|
||||||
|
#pragma alloca
|
||||||
|
# else
|
||||||
|
# ifdef __hpux /* This section must match that of bison generated files. */
|
||||||
|
# ifdef __cplusplus
|
||||||
|
extern "C" void *alloca (unsigned int);
|
||||||
|
# else /* not __cplusplus */
|
||||||
|
void *alloca ();
|
||||||
|
# endif /* not __cplusplus */
|
||||||
|
# else /* not __hpux */
|
||||||
|
# ifndef alloca
|
||||||
|
char *alloca ();
|
||||||
|
# endif
|
||||||
|
# endif /* __hpux */
|
||||||
|
# endif
|
||||||
|
# endif
|
||||||
|
# endif
|
||||||
|
#endif
|
||||||
|
|
21
modules/argmatch
Normal file
21
modules/argmatch
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/argmatch.h
|
||||||
|
lib/argmatch.c
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
gettext
|
||||||
|
error
|
||||||
|
quotearg
|
||||||
|
quote
|
||||||
|
unlocked-io
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
lib_SOURCES += argmatch.h argmatch.c
|
||||||
|
|
||||||
|
Include:
|
||||||
|
"argmatch.h"
|
||||||
|
|
16
modules/assert
Normal file
16
modules/assert
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
Description:
|
||||||
|
Allow the installer to disable assertions through "configure --disable-assert".
|
||||||
|
|
||||||
|
Files:
|
||||||
|
m4/assert.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
jm_ASSERT
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
|
||||||
|
Include:
|
||||||
|
<assert.h>
|
||||||
|
|
16
modules/atexit
Normal file
16
modules/atexit
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/atexit.c
|
||||||
|
m4/atexit.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
gl_FUNC_ATEXIT
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
|
||||||
|
Include:
|
||||||
|
<stdlib.h>
|
||||||
|
|
23
modules/backupfile
Normal file
23
modules/backupfile
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/backupfile.h
|
||||||
|
lib/backupfile.c
|
||||||
|
lib/addext.c
|
||||||
|
m4/dos.m4
|
||||||
|
m4/d-ino.m4
|
||||||
|
m4/backupfile.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
argmatch
|
||||||
|
dirname
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
gl_BACKUPFILE
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
lib_SOURCES += backupfile.h backupfile.c addext.c
|
||||||
|
|
||||||
|
Include:
|
||||||
|
"backupfile.h"
|
||||||
|
|
14
modules/bcopy
Normal file
14
modules/bcopy
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/bcopy.c
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
AC_REPLACE_FUNCS(bcopy)
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
|
||||||
|
Include:
|
||||||
|
|
16
modules/bumpalloc
Normal file
16
modules/bumpalloc
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/bumpalloc.h
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
xalloc
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
lib_SOURCES += bumpalloc.h
|
||||||
|
|
||||||
|
Include:
|
||||||
|
"bumpalloc.h"
|
||||||
|
|
15
modules/c-bs-a
Normal file
15
modules/c-bs-a
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
Description:
|
||||||
|
Determine portability of "\a".
|
||||||
|
|
||||||
|
Files:
|
||||||
|
m4/c-bs-a.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
AC_C_BACKSLASH_A
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
|
||||||
|
Include:
|
||||||
|
|
20
modules/c-stack
Normal file
20
modules/c-stack
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/c-stack.h
|
||||||
|
lib/c-stack.c
|
||||||
|
m4/c-stack.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
gettext
|
||||||
|
exitfail
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
gl_C_STACK
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
lib_SOURCES += c-stack.h c-stack.c
|
||||||
|
|
||||||
|
Include:
|
||||||
|
"c-stack.h"
|
||||||
|
|
16
modules/canon-host
Normal file
16
modules/canon-host
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/canon-host.c
|
||||||
|
m4/canon-host.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
gl_CANON_HOST
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
lib_SOURCES += canon-host.c
|
||||||
|
|
||||||
|
Include:
|
||||||
|
|
16
modules/chown
Normal file
16
modules/chown
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/chown.c
|
||||||
|
m4/chown.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
jm_FUNC_CHOWN
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
|
||||||
|
Include:
|
||||||
|
<unistd.h>
|
||||||
|
|
23
modules/closeout
Normal file
23
modules/closeout
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/closeout.h
|
||||||
|
lib/closeout.c
|
||||||
|
m4/closeout.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
unlocked-io
|
||||||
|
gettext
|
||||||
|
error
|
||||||
|
quotearg
|
||||||
|
fpending
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
gl_CLOSEOUT
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
lib_SOURCES += closeout.h closeout.c
|
||||||
|
|
||||||
|
Include:
|
||||||
|
"closeout.h"
|
||||||
|
|
16
modules/diacrit
Normal file
16
modules/diacrit
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/diacrit.h
|
||||||
|
lib/diacrit.c
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
lib_SOURCES += diacrit.h diacrit.c
|
||||||
|
|
||||||
|
Include:
|
||||||
|
"diacrit.h"
|
||||||
|
|
18
modules/dirfd
Normal file
18
modules/dirfd
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/dirfd.h
|
||||||
|
lib/dirfd.c
|
||||||
|
m4/dirfd.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
UTILS_FUNC_DIRFD
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
lib_SOURCES += dirfd.h
|
||||||
|
|
||||||
|
Include:
|
||||||
|
"dirfd.h"
|
||||||
|
|
22
modules/dirname
Normal file
22
modules/dirname
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/dirname.h
|
||||||
|
lib/dirname.c
|
||||||
|
lib/basename.c
|
||||||
|
lib/stripslash.c
|
||||||
|
m4/dos.m4
|
||||||
|
m4/dirname.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
xalloc
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
gl_DIRNAME
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
lib_SOURCES += dirname.h dirname.c basename.c stripslash.c
|
||||||
|
|
||||||
|
Include:
|
||||||
|
"dirname.h"
|
||||||
|
|
16
modules/dup2
Normal file
16
modules/dup2
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/dup2.c
|
||||||
|
m4/dup2.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
gl_FUNC_DUP2
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
|
||||||
|
Include:
|
||||||
|
<unistd.h>
|
||||||
|
|
19
modules/error
Normal file
19
modules/error
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/error.h
|
||||||
|
lib/error.c
|
||||||
|
m4/error.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
unlocked-io
|
||||||
|
gettext
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
gl_ERROR
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
|
||||||
|
Include:
|
||||||
|
"error.h"
|
||||||
|
|
16
modules/euidaccess
Normal file
16
modules/euidaccess
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/euidaccess.c
|
||||||
|
m4/euidaccess.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
group-member
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
gl_FUNC_EUIDACCESS
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
|
||||||
|
Include:
|
||||||
|
|
23
modules/exclude
Normal file
23
modules/exclude
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/exclude.h
|
||||||
|
lib/exclude.c
|
||||||
|
m4/exclude.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
xalloc
|
||||||
|
strcase
|
||||||
|
unlocked-io
|
||||||
|
fnmatch-gnu
|
||||||
|
stdbool
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
gl_EXCLUDE
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
lib_SOURCES += exclude.h exclude.c
|
||||||
|
|
||||||
|
Include:
|
||||||
|
"exclude.h"
|
||||||
|
|
18
modules/exitfail
Normal file
18
modules/exitfail
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/exitfail.h
|
||||||
|
lib/exitfail.c
|
||||||
|
m4/exitfail.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
gl_EXITFAIL
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
lib_SOURCES += exitfail.h exitfail.c
|
||||||
|
|
||||||
|
Include:
|
||||||
|
"exitfail.h"
|
||||||
|
|
20
modules/fatal
Normal file
20
modules/fatal
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/fatal.h
|
||||||
|
lib/fatal.c
|
||||||
|
m4/fatal.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
unlocked-io
|
||||||
|
error
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
gl_FATAL
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
lib_SOURCES += fatal.h fatal.c
|
||||||
|
|
||||||
|
Include:
|
||||||
|
"fatal.h"
|
||||||
|
|
19
modules/file-type
Normal file
19
modules/file-type
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/file-type.h
|
||||||
|
lib/file-type.c
|
||||||
|
m4/file-type.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
gettext
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
gl_FILE_TYPE
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
lib_SOURCES += file-type.h file-type.c
|
||||||
|
|
||||||
|
Include:
|
||||||
|
"file-type.h"
|
||||||
|
|
15
modules/fileblocks
Normal file
15
modules/fileblocks
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/fileblocks.c
|
||||||
|
m4/fileblocks.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
gl_FILEBLOCKS
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
|
||||||
|
Include:
|
||||||
|
|
18
modules/filemode
Normal file
18
modules/filemode
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/filemode.h
|
||||||
|
lib/filemode.c
|
||||||
|
m4/filemode.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
gl_FILEMODE
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
lib_SOURCES += filemode.h filemode.c
|
||||||
|
|
||||||
|
Include:
|
||||||
|
"filemode.h"
|
||||||
|
|
22
modules/fnmatch
Normal file
22
modules/fnmatch
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/fnmatch_.h
|
||||||
|
lib/fnmatch.c
|
||||||
|
lib/fnmatch_loop.c
|
||||||
|
m4/mbstate_t.m4
|
||||||
|
m4/fnmatch.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
alloca
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
# No macro. You should also use one of fnmatch-posix or fnmatch-gnu.
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
lib_SOURCES += fnmatch_.h
|
||||||
|
EXTRA_DIST += fnmatch_loop.c
|
||||||
|
DISTCLEANFILES += fnmatch.h
|
||||||
|
|
||||||
|
Include:
|
||||||
|
|
15
modules/fnmatch-gnu
Normal file
15
modules/fnmatch-gnu
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
fnmatch
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
gl_FUNC_FNMATCH_GNU
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
|
||||||
|
Include:
|
||||||
|
"fnmatch.h"
|
||||||
|
|
15
modules/fnmatch-posix
Normal file
15
modules/fnmatch-posix
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
fnmatch
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
gl_FUNC_FNMATCH_POSIX
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
|
||||||
|
Include:
|
||||||
|
"fnmatch.h"
|
||||||
|
|
18
modules/fpending
Normal file
18
modules/fpending
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/__fpending.h
|
||||||
|
lib/__fpending.c
|
||||||
|
m4/fpending.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
jm_FUNC_FPENDING
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
lib_SOURCES += __fpending.h
|
||||||
|
|
||||||
|
Include:
|
||||||
|
"__fpending.h"
|
||||||
|
|
23
modules/fsusage
Normal file
23
modules/fsusage
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/fsusage.h
|
||||||
|
lib/fsusage.c
|
||||||
|
m4/ulonglong.m4
|
||||||
|
m4/stdint_h.m4
|
||||||
|
m4/inttypes_h.m4
|
||||||
|
m4/uintmax_t.m4
|
||||||
|
m4/fsusage.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
full-read
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
gl_FSUSAGE
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
lib_SOURCES += fsusage.h
|
||||||
|
|
||||||
|
Include:
|
||||||
|
"fsusage.h"
|
||||||
|
|
16
modules/ftruncate
Normal file
16
modules/ftruncate
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/ftruncate.c
|
||||||
|
m4/ftruncate.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
jm_FUNC_FTRUNCATE
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
|
||||||
|
Include:
|
||||||
|
<unistd.h>
|
||||||
|
|
17
modules/full-read
Normal file
17
modules/full-read
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/full-read.h
|
||||||
|
lib/full-read.c
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
safe-read
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
lib_SOURCES += full-read.h full-read.c
|
||||||
|
|
||||||
|
Include:
|
||||||
|
"full-read.h"
|
||||||
|
|
17
modules/full-write
Normal file
17
modules/full-write
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/full-write.h
|
||||||
|
lib/full-write.c
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
safe-write
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
lib_SOURCES += full-write.h full-write.c
|
||||||
|
|
||||||
|
Include:
|
||||||
|
"full-write.h"
|
||||||
|
|
16
modules/gcd
Normal file
16
modules/gcd
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/gcd.h
|
||||||
|
lib/gcd.c
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
lib_SOURCES += gcd.h gcd.c
|
||||||
|
|
||||||
|
Include:
|
||||||
|
"gcd.h"
|
||||||
|
|
23
modules/getdate
Normal file
23
modules/getdate
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/getdate.h
|
||||||
|
lib/getdate.y
|
||||||
|
m4/bison.m4
|
||||||
|
m4/tm_gmtoff.m4
|
||||||
|
m4/getdate.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
unlocked-io
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
gl_GETDATE
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
lib_SOURCES += getdate.h getdate.y
|
||||||
|
BUILT_SOURCES += getdate.c
|
||||||
|
MAINTAINERCLEANFILES += getdate.c
|
||||||
|
|
||||||
|
Include:
|
||||||
|
"getdate.h"
|
||||||
|
|
17
modules/getgroups
Normal file
17
modules/getgroups
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/getgroups.c
|
||||||
|
m4/getgroups.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
xalloc
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
jm_FUNC_GETGROUPS
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
|
||||||
|
Include:
|
||||||
|
<unistd.h>
|
||||||
|
|
15
modules/gethostname
Normal file
15
modules/gethostname
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/gethostname.c
|
||||||
|
m4/gethostname.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
gl_FUNC_GETHOSTNAME
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
|
||||||
|
Include:
|
||||||
|
|
19
modules/getline
Normal file
19
modules/getline
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/getline.h
|
||||||
|
lib/getline.c
|
||||||
|
m4/getline.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
getstr
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
AM_FUNC_GETLINE
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
lib_SOURCES += getline.h
|
||||||
|
|
||||||
|
Include:
|
||||||
|
"getline.h"
|
||||||
|
|
15
modules/getloadavg
Normal file
15
modules/getloadavg
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/getloadavg.c
|
||||||
|
m4/getloadavg.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
gl_FUNC_GETLOADAVG
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
|
||||||
|
Include:
|
||||||
|
|
20
modules/getopt
Normal file
20
modules/getopt
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/getopt.h
|
||||||
|
lib/getopt.c
|
||||||
|
lib/getopt1.c
|
||||||
|
m4/getopt.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
gettext
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
gl_GETOPT
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
lib_SOURCES += getopt.h getopt.c getopt1.c
|
||||||
|
|
||||||
|
Include:
|
||||||
|
"getopt.h"
|
||||||
|
|
17
modules/getpagesize
Normal file
17
modules/getpagesize
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/getpagesize.h
|
||||||
|
m4/getpagesize.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
gl_GETPAGESIZE
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
lib_SOURCES += getpagesize.h
|
||||||
|
|
||||||
|
Include:
|
||||||
|
"getpagesize.h"
|
||||||
|
|
17
modules/getpass
Normal file
17
modules/getpass
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/getpass.c
|
||||||
|
m4/getpass.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
unlocked-io
|
||||||
|
getline
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
gl_FUNC_GETPASS
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
|
||||||
|
Include:
|
||||||
|
|
19
modules/getstr
Normal file
19
modules/getstr
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/getstr.h
|
||||||
|
lib/getstr.c
|
||||||
|
m4/getstr.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
unlocked-io
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
gl_GETSTR
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
lib_SOURCES += getstr.h getstr.c
|
||||||
|
|
||||||
|
Include:
|
||||||
|
"getstr.h"
|
||||||
|
|
34
modules/gettext
Normal file
34
modules/gettext
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/gettext.h
|
||||||
|
m4/codeset.m4
|
||||||
|
m4/gettext.m4
|
||||||
|
m4/glibc21.m4
|
||||||
|
m4/iconv.m4
|
||||||
|
m4/intdiv0.m4
|
||||||
|
m4/inttypes.m4
|
||||||
|
m4/inttypes_h.m4
|
||||||
|
m4/inttypes-pri.m4
|
||||||
|
m4/isc-posix.m4
|
||||||
|
m4/lcmessage.m4
|
||||||
|
m4/lib-ld.m4
|
||||||
|
m4/lib-link.m4
|
||||||
|
m4/lib-prefix.m4
|
||||||
|
m4/progtest.m4
|
||||||
|
m4/stdint_h.m4
|
||||||
|
m4/uintmax_t.m4
|
||||||
|
m4/ulonglong.m4
|
||||||
|
config.rpath
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
AM_GNU_GETTEXT([external])
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
lib_SOURCES += gettext.h
|
||||||
|
|
||||||
|
Include:
|
||||||
|
"gettext.h"
|
||||||
|
|
19
modules/gettime
Normal file
19
modules/gettime
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/gettime.c
|
||||||
|
m4/clock_time.m4
|
||||||
|
m4/gettime.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
gettimeofday
|
||||||
|
timespec
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
gl_GETTIME
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
lib_SOURCES += gettime.c
|
||||||
|
|
||||||
|
Include:
|
||||||
|
|
16
modules/gettimeofday
Normal file
16
modules/gettimeofday
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/gettimeofday.c
|
||||||
|
m4/gettimeofday.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
AC_FUNC_GETTIMEOFDAY_CLOBBER
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
|
||||||
|
Include:
|
||||||
|
<sys/time.h>
|
||||||
|
|
16
modules/getugroups
Normal file
16
modules/getugroups
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/getugroups.c
|
||||||
|
m4/getugroups.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
gl_GETUGROUPS
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
lib_SOURCES += getugroups.c
|
||||||
|
|
||||||
|
Include:
|
||||||
|
|
17
modules/getusershell
Normal file
17
modules/getusershell
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/getusershell.c
|
||||||
|
m4/getusershell.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
xalloc
|
||||||
|
unlocked-io
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
gl_PREREQ_GETUSERSHELL
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
|
||||||
|
Include:
|
||||||
|
|
19
modules/group-member
Normal file
19
modules/group-member
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/group-member.h
|
||||||
|
lib/group-member.c
|
||||||
|
m4/group-member.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
xalloc
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
jm_FUNC_GROUP_MEMBER
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
lib_SOURCES += group-member.h
|
||||||
|
|
||||||
|
Include:
|
||||||
|
"group-member.h"
|
||||||
|
|
18
modules/hard-locale
Normal file
18
modules/hard-locale
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/hard-locale.h
|
||||||
|
lib/hard-locale.c
|
||||||
|
m4/hard-locale.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
gl_HARD_LOCALE
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
lib_SOURCES += hard-locale.h hard-locale.c
|
||||||
|
|
||||||
|
Include:
|
||||||
|
"hard-locale.h"
|
||||||
|
|
21
modules/hash
Normal file
21
modules/hash
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/hash.h
|
||||||
|
lib/hash.c
|
||||||
|
m4/hash.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
malloc
|
||||||
|
realloc
|
||||||
|
stdbool
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
gl_HASH
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
lib_SOURCES += hash.h hash.c
|
||||||
|
|
||||||
|
Include:
|
||||||
|
"hash.h"
|
||||||
|
|
16
modules/hash-pjw
Normal file
16
modules/hash-pjw
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/hash-pjw.h
|
||||||
|
lib/hash-pjw.c
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
lib_SOURCES += hash-pjw.h hash-pjw.c
|
||||||
|
|
||||||
|
Include:
|
||||||
|
"hash-pjw.h"
|
||||||
|
|
26
modules/human
Normal file
26
modules/human
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/human.h
|
||||||
|
lib/human.c
|
||||||
|
m4/ulonglong.m4
|
||||||
|
m4/stdint_h.m4
|
||||||
|
m4/inttypes_h.m4
|
||||||
|
m4/uintmax_t.m4
|
||||||
|
m4/human.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
gettext
|
||||||
|
argmatch
|
||||||
|
error
|
||||||
|
xstrtol
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
gl_HUMAN
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
lib_SOURCES += human.h human.c
|
||||||
|
|
||||||
|
Include:
|
||||||
|
"human.h"
|
||||||
|
|
19
modules/iconv
Normal file
19
modules/iconv
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
m4/iconv.m4
|
||||||
|
m4/lib-ld.m4
|
||||||
|
m4/lib-link.m4
|
||||||
|
m4/lib-prefix.m4
|
||||||
|
config.rpath
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
AM_ICONV
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
|
||||||
|
Include:
|
||||||
|
<iconv.h>
|
||||||
|
|
17
modules/idcache
Normal file
17
modules/idcache
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/idcache.c
|
||||||
|
m4/idcache.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
xalloc
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
gl_IDCACHE
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
lib_SOURCES += idcache.c
|
||||||
|
|
||||||
|
Include:
|
||||||
|
|
16
modules/isdir
Normal file
16
modules/isdir
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/isdir.c
|
||||||
|
m4/isdir.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
gl_ISDIR
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
lib_SOURCES += isdir.c
|
||||||
|
|
||||||
|
Include:
|
||||||
|
|
18
modules/lchown
Normal file
18
modules/lchown
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/lchown.h
|
||||||
|
lib/lchown.c
|
||||||
|
m4/lchown.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
chown
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
jm_FUNC_LCHOWN
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
lib_SOURCES += lchown.h
|
||||||
|
|
||||||
|
Include:
|
||||||
|
|
18
modules/linebuffer
Normal file
18
modules/linebuffer
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/linebuffer.h
|
||||||
|
lib/linebuffer.c
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
xalloc
|
||||||
|
unlocked-io
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
lib_SOURCES += linebuffer.h linebuffer.c
|
||||||
|
|
||||||
|
Include:
|
||||||
|
"linebuffer.h"
|
||||||
|
|
73
modules/localcharset
Normal file
73
modules/localcharset
Normal file
@@ -0,0 +1,73 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/localcharset.h
|
||||||
|
lib/localcharset.c
|
||||||
|
lib/config.charset
|
||||||
|
lib/ref-add.sin
|
||||||
|
lib/ref-del.sin
|
||||||
|
m4/codeset.m4
|
||||||
|
m4/glibc21.m4
|
||||||
|
m4/localcharset.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
gl_LOCALCHARSET
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
lib_SOURCES += localcharset.h localcharset.c
|
||||||
|
EXTRA_DIST += config.charset ref-add.sin ref-del.sin
|
||||||
|
DEFS += -DLIBDIR=\"$(libdir)\"
|
||||||
|
|
||||||
|
# The following is needed in order to install a simple file in $(libdir)
|
||||||
|
# which is shared with other installed packages. We use a list of referencing
|
||||||
|
# packages so that "make uninstall" will remove the file if and only if it
|
||||||
|
# is not used by another installed package.
|
||||||
|
# On systems with glibc-2.1 or newer, the file is redundant, therefore we
|
||||||
|
# avoid installing it.
|
||||||
|
|
||||||
|
all-local: charset.alias ref-add.sed ref-del.sed
|
||||||
|
|
||||||
|
charset_alias = $(DESTDIR)$(libdir)/charset.alias
|
||||||
|
charset_tmp = $(DESTDIR)$(libdir)/charset.tmp
|
||||||
|
install-exec-local: all-local
|
||||||
|
test @GLIBC21@ != no || $(mkinstalldirs) $(DESTDIR)$(libdir)
|
||||||
|
if test -f $(charset_alias); then \
|
||||||
|
sed -f ref-add.sed $(charset_alias) > $(charset_tmp) ; \
|
||||||
|
$(INSTALL_DATA) $(charset_tmp) $(charset_alias) ; \
|
||||||
|
rm -f $(charset_tmp) ; \
|
||||||
|
else \
|
||||||
|
if test @GLIBC21@ = no; then \
|
||||||
|
sed -f ref-add.sed charset.alias > $(charset_tmp) ; \
|
||||||
|
$(INSTALL_DATA) $(charset_tmp) $(charset_alias) ; \
|
||||||
|
rm -f $(charset_tmp) ; \
|
||||||
|
fi ; \
|
||||||
|
fi
|
||||||
|
|
||||||
|
uninstall-local: all-local
|
||||||
|
if test -f $(charset_alias); then \
|
||||||
|
sed -f ref-del.sed $(charset_alias) > $(charset_tmp); \
|
||||||
|
if grep '^# Packages using this file: $$' $(charset_tmp) \
|
||||||
|
> /dev/null; then \
|
||||||
|
rm -f $(charset_alias); \
|
||||||
|
else \
|
||||||
|
$(INSTALL_DATA) $(charset_tmp) $(charset_alias); \
|
||||||
|
fi; \
|
||||||
|
rm -f $(charset_tmp); \
|
||||||
|
fi
|
||||||
|
|
||||||
|
charset.alias: config.charset
|
||||||
|
$(SHELL) $(srcdir)/config.charset '@host@' > t-$@
|
||||||
|
mv t-$@ $@
|
||||||
|
|
||||||
|
SUFFIXES += .sed .sin
|
||||||
|
.sin.sed:
|
||||||
|
sed -e '/^#/d' -e 's/@''PACKAGE''@/@PACKAGE@/g' $< > t-$@
|
||||||
|
mv t-$@ $@
|
||||||
|
|
||||||
|
CLEANFILES += charset.alias ref-add.sed ref-del.sed
|
||||||
|
|
||||||
|
Include:
|
||||||
|
"localcharset.h"
|
||||||
|
|
19
modules/long-options
Normal file
19
modules/long-options
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/long-options.h
|
||||||
|
lib/long-options.c
|
||||||
|
m4/long-options.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
version-etc
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
gl_LONG_OPTIONS
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
lib_SOURCES += long-options.h long-options.c
|
||||||
|
|
||||||
|
Include:
|
||||||
|
"long-options.h"
|
||||||
|
|
18
modules/lstat
Normal file
18
modules/lstat
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/lstat.c
|
||||||
|
m4/lstat.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
stat
|
||||||
|
xalloc
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
jm_FUNC_LSTAT
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
|
||||||
|
Include:
|
||||||
|
<sys/stat.h>
|
||||||
|
|
26
modules/makepath
Normal file
26
modules/makepath
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/makepath.h
|
||||||
|
lib/makepath.c
|
||||||
|
m4/afs.m4
|
||||||
|
m4/makepath.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
alloca
|
||||||
|
chown
|
||||||
|
gettext
|
||||||
|
save-cwd
|
||||||
|
dirname
|
||||||
|
error
|
||||||
|
quote
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
gl_MAKEPATH
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
lib_SOURCES += makepath.h makepath.c
|
||||||
|
|
||||||
|
Include:
|
||||||
|
"makepath.h"
|
||||||
|
|
16
modules/malloc
Normal file
16
modules/malloc
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/malloc.c
|
||||||
|
m4/malloc.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
jm_FUNC_MALLOC
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
|
||||||
|
Include:
|
||||||
|
<stdlib.h>
|
||||||
|
|
20
modules/mbswidth
Normal file
20
modules/mbswidth
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/mbswidth.h
|
||||||
|
lib/mbswidth.c
|
||||||
|
m4/mbstate_t.m4
|
||||||
|
m4/mbrtowc.m4
|
||||||
|
m4/mbswidth.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
gl_MBSWIDTH
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
lib_SOURCES += mbswidth.h mbswidth.c
|
||||||
|
|
||||||
|
Include:
|
||||||
|
"mbswidth.h"
|
||||||
|
|
19
modules/md5
Normal file
19
modules/md5
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/md5.h
|
||||||
|
lib/md5.c
|
||||||
|
m4/md5.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
unlocked-io
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
gl_MD5
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
lib_SOURCES += md5.h md5.c
|
||||||
|
|
||||||
|
Include:
|
||||||
|
"md5.h"
|
||||||
|
|
18
modules/memcasecmp
Normal file
18
modules/memcasecmp
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/memcasecmp.h
|
||||||
|
lib/memcasecmp.c
|
||||||
|
m4/memcasecmp.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
gl_MEMCASECMP
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
lib_SOURCES += memcasecmp.h memcasecmp.c
|
||||||
|
|
||||||
|
Include:
|
||||||
|
"memcasecmp.h"
|
||||||
|
|
16
modules/memchr
Normal file
16
modules/memchr
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/memchr.c
|
||||||
|
m4/memchr.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
gl_FUNC_MEMCHR
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
|
||||||
|
Include:
|
||||||
|
<string.h>
|
||||||
|
|
16
modules/memcmp
Normal file
16
modules/memcmp
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/memcmp.c
|
||||||
|
m4/memcmp.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
jm_FUNC_MEMCMP
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
|
||||||
|
Include:
|
||||||
|
<string.h>
|
||||||
|
|
18
modules/memcoll
Normal file
18
modules/memcoll
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/memcoll.h
|
||||||
|
lib/memcoll.c
|
||||||
|
m4/memcoll.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
gl_MEMCOLL
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
lib_SOURCES += memcoll.h memcoll.c
|
||||||
|
|
||||||
|
Include:
|
||||||
|
"memcoll.h"
|
||||||
|
|
16
modules/memcpy
Normal file
16
modules/memcpy
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/memcpy.c
|
||||||
|
m4/memcpy.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
gl_FUNC_MEMCPY
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
|
||||||
|
Include:
|
||||||
|
<string.h>
|
||||||
|
|
16
modules/memmove
Normal file
16
modules/memmove
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/memmove.c
|
||||||
|
m4/memmove.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
gl_FUNC_MEMMOVE
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
|
||||||
|
Include:
|
||||||
|
<string.h>
|
||||||
|
|
15
modules/memrchr
Normal file
15
modules/memrchr
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/memrchr.c
|
||||||
|
m4/memrchr.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
gl_FUNC_MEMRCHR
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
|
||||||
|
Include:
|
||||||
|
|
16
modules/memset
Normal file
16
modules/memset
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/memset.c
|
||||||
|
m4/memset.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
gl_FUNC_MEMSET
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
|
||||||
|
Include:
|
||||||
|
<string.h>
|
||||||
|
|
18
modules/mkdir
Normal file
18
modules/mkdir
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/mkdir.c
|
||||||
|
m4/mkdir-slash.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
xalloc
|
||||||
|
dirname
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
UTILS_FUNC_MKDIR_TRAILING_SLASH
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
|
||||||
|
Include:
|
||||||
|
<sys/stat.h>
|
||||||
|
|
21
modules/mkstemp
Normal file
21
modules/mkstemp
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/mkstemp.c
|
||||||
|
lib/tempname.c
|
||||||
|
m4/ulonglong.m4
|
||||||
|
m4/stdint_h.m4
|
||||||
|
m4/inttypes_h.m4
|
||||||
|
m4/uintmax_t.m4
|
||||||
|
m4/mkstemp.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
UTILS_FUNC_MKSTEMP
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
|
||||||
|
Include:
|
||||||
|
<stdlib.h>
|
||||||
|
|
16
modules/mktime
Normal file
16
modules/mktime
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/mktime.c
|
||||||
|
m4/mktime.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
gl_FUNC_MKTIME
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
|
||||||
|
Include:
|
||||||
|
<time.h>
|
||||||
|
|
19
modules/modechange
Normal file
19
modules/modechange
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/modechange.h
|
||||||
|
lib/modechange.c
|
||||||
|
m4/modechange.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
xstrtol
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
gl_MODECHANGE
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
lib_SOURCES += modechange.h modechange.c
|
||||||
|
|
||||||
|
Include:
|
||||||
|
"modechange.h"
|
||||||
|
|
22
modules/mountlist
Normal file
22
modules/mountlist
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/mountlist.h
|
||||||
|
lib/mountlist.c
|
||||||
|
m4/ls-mntd-fs.m4
|
||||||
|
m4/fstypename.m4
|
||||||
|
m4/mountlist.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
xalloc
|
||||||
|
unlocked-io
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
gl_MOUNTLIST
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
lib_SOURCES += mountlist.h
|
||||||
|
|
||||||
|
Include:
|
||||||
|
"mountlist.h"
|
||||||
|
|
17
modules/nanosleep
Normal file
17
modules/nanosleep
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/nanosleep.c
|
||||||
|
m4/nanosleep.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
timespec
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
jm_FUNC_NANOSLEEP
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
|
||||||
|
Include:
|
||||||
|
<time.h>
|
||||||
|
|
18
modules/obstack
Normal file
18
modules/obstack
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/obstack.h
|
||||||
|
lib/obstack.c
|
||||||
|
m4/obstack.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
gettext
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
gl_OBSTACK
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
|
||||||
|
Include:
|
||||||
|
"obstack.h"
|
||||||
|
|
22
modules/path-concat
Normal file
22
modules/path-concat
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/path-concat.h
|
||||||
|
lib/path-concat.c
|
||||||
|
m4/dos.m4
|
||||||
|
m4/path-concat.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
strdup
|
||||||
|
xalloc
|
||||||
|
dirname
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
gl_PATH_CONCAT
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
lib_SOURCES += path-concat.h path-concat.c
|
||||||
|
|
||||||
|
Include:
|
||||||
|
"path-concat.h"
|
||||||
|
|
17
modules/pathmax
Normal file
17
modules/pathmax
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/pathmax.h
|
||||||
|
m4/pathmax.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
gl_PATHMAX
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
lib_SOURCES += pathmax.h
|
||||||
|
|
||||||
|
Include:
|
||||||
|
"pathmax.h"
|
||||||
|
|
18
modules/physmem
Normal file
18
modules/physmem
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/physmem.h
|
||||||
|
lib/physmem.c
|
||||||
|
m4/physmem.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
gl_PHYSMEM
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
lib_SOURCES += physmem.h physmem.c
|
||||||
|
|
||||||
|
Include:
|
||||||
|
"physmem.h"
|
||||||
|
|
19
modules/posixtm
Normal file
19
modules/posixtm
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/posixtm.h
|
||||||
|
lib/posixtm.c
|
||||||
|
m4/posixtm.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
unlocked-io
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
gl_POSIXTM
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
lib_SOURCES += posixtm.h posixtm.c
|
||||||
|
|
||||||
|
Include:
|
||||||
|
"posixtm.h"
|
||||||
|
|
18
modules/posixver
Normal file
18
modules/posixver
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/posixver.h
|
||||||
|
lib/posixver.c
|
||||||
|
m4/posixver.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
gl_POSIXVER
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
lib_SOURCES += posixver.h posixver.c
|
||||||
|
|
||||||
|
Include:
|
||||||
|
"posixver.h"
|
||||||
|
|
15
modules/putenv
Normal file
15
modules/putenv
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/putenv.c
|
||||||
|
m4/putenv.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
jm_FUNC_PUTENV
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
|
||||||
|
Include:
|
||||||
|
|
19
modules/quote
Normal file
19
modules/quote
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/quote.h
|
||||||
|
lib/quote.c
|
||||||
|
m4/quote.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
quotearg
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
gl_QUOTE
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
lib_SOURCES += quote.h quote.c
|
||||||
|
|
||||||
|
Include:
|
||||||
|
"quote.h"
|
||||||
|
|
22
modules/quotearg
Normal file
22
modules/quotearg
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/quotearg.h
|
||||||
|
lib/quotearg.c
|
||||||
|
m4/mbstate_t.m4
|
||||||
|
m4/mbrtowc.m4
|
||||||
|
m4/quotearg.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
xalloc
|
||||||
|
gettext
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
gl_QUOTEARG
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
lib_SOURCES += quotearg.h quotearg.c
|
||||||
|
|
||||||
|
Include:
|
||||||
|
"quotearg.h"
|
||||||
|
|
20
modules/readtokens
Normal file
20
modules/readtokens
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/readtokens.h
|
||||||
|
lib/readtokens.c
|
||||||
|
m4/readtokens.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
xalloc
|
||||||
|
unlocked-io
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
gl_READTOKENS
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
lib_SOURCES += readtokens.h readtokens.c
|
||||||
|
|
||||||
|
Include:
|
||||||
|
"readtokens.h"
|
||||||
|
|
20
modules/readutmp
Normal file
20
modules/readutmp
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/readutmp.h
|
||||||
|
lib/readutmp.c
|
||||||
|
m4/readutmp.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
xalloc
|
||||||
|
unlocked-io
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
gl_READUTMP
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
lib_SOURCES += readutmp.h
|
||||||
|
|
||||||
|
Include:
|
||||||
|
"readutmp.h"
|
||||||
|
|
16
modules/realloc
Normal file
16
modules/realloc
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/realloc.c
|
||||||
|
m4/realloc.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
jm_FUNC_REALLOC
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
|
||||||
|
Include:
|
||||||
|
<stdlib.h>
|
||||||
|
|
21
modules/regex
Normal file
21
modules/regex
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/regex.h
|
||||||
|
lib/regex.c
|
||||||
|
m4/regex.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
alloca
|
||||||
|
unlocked-io
|
||||||
|
gettext
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
gl_REGEX
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
lib_SOURCES += regex.h
|
||||||
|
|
||||||
|
Include:
|
||||||
|
"regex.h"
|
||||||
|
|
18
modules/rename
Normal file
18
modules/rename
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/rename.c
|
||||||
|
m4/rename.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
xalloc
|
||||||
|
dirname
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
vb_FUNC_RENAME
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
|
||||||
|
Include:
|
||||||
|
<stdio.h>
|
||||||
|
|
16
modules/rmdir
Normal file
16
modules/rmdir
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/rmdir.c
|
||||||
|
m4/rmdir.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
gl_FUNC_RMDIR
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
|
||||||
|
Include:
|
||||||
|
<unistd.h>
|
||||||
|
|
17
modules/rpmatch
Normal file
17
modules/rpmatch
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/rpmatch.c
|
||||||
|
m4/rpmatch.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
gettext
|
||||||
|
regex
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
gl_FUNC_RPMATCH
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
|
||||||
|
Include:
|
||||||
|
|
18
modules/safe-read
Normal file
18
modules/safe-read
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/safe-read.h
|
||||||
|
lib/safe-read.c
|
||||||
|
m4/safe-read.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
gl_SAFE_READ
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
lib_SOURCES += safe-read.h safe-read.c
|
||||||
|
|
||||||
|
Include:
|
||||||
|
"safe-read.h"
|
||||||
|
|
19
modules/safe-write
Normal file
19
modules/safe-write
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/safe-write.h
|
||||||
|
lib/safe-write.c
|
||||||
|
m4/safe-write.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
safe-read
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
gl_SAFE_WRITE
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
lib_SOURCES += safe-write.h safe-write.c
|
||||||
|
|
||||||
|
Include:
|
||||||
|
"safe-write.h"
|
||||||
|
|
21
modules/same
Normal file
21
modules/same
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/same.h
|
||||||
|
lib/same.c
|
||||||
|
m4/same.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
xalloc
|
||||||
|
error
|
||||||
|
dirname
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
gl_SAME
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
lib_SOURCES += same.h same.c
|
||||||
|
|
||||||
|
Include:
|
||||||
|
"same.h"
|
||||||
|
|
19
modules/save-cwd
Normal file
19
modules/save-cwd
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/save-cwd.h
|
||||||
|
lib/save-cwd.c
|
||||||
|
m4/save-cwd.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
error
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
gl_SAVE_CWD
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
lib_SOURCES += save-cwd.h save-cwd.c
|
||||||
|
|
||||||
|
Include:
|
||||||
|
"save-cwd.h"
|
||||||
|
|
19
modules/savedir
Normal file
19
modules/savedir
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
Description:
|
||||||
|
|
||||||
|
Files:
|
||||||
|
lib/savedir.h
|
||||||
|
lib/savedir.c
|
||||||
|
m4/savedir.m4
|
||||||
|
|
||||||
|
Depends-on:
|
||||||
|
xalloc
|
||||||
|
|
||||||
|
configure.ac:
|
||||||
|
gl_SAVEDIR
|
||||||
|
|
||||||
|
Makefile.am:
|
||||||
|
lib_SOURCES += savedir.h savedir.c
|
||||||
|
|
||||||
|
Include:
|
||||||
|
"savedir.h"
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user