34 lines
599 B
Plaintext
34 lines
599 B
Plaintext
Description:
|
|
renameat() function: rename a file, relative to two directories
|
|
|
|
Files:
|
|
lib/renameat.c
|
|
lib/at-func2.c
|
|
m4/renameat.m4
|
|
|
|
Depends-on:
|
|
renameatu [test $HAVE_RENAMEAT = 0 || test $REPLACE_RENAMEAT = 1]
|
|
|
|
configure.ac:
|
|
gl_FUNC_RENAMEAT
|
|
gl_CONDITIONAL([GL_COND_OBJ_RENAMEAT],
|
|
[test $HAVE_RENAMEAT = 0 || test $REPLACE_RENAMEAT = 1])
|
|
if test $HAVE_RENAMEAT = 0; then
|
|
AC_LIBOBJ([at-func2])
|
|
fi
|
|
gl_STDIO_MODULE_INDICATOR([renameat])
|
|
|
|
Makefile.am:
|
|
if GL_COND_OBJ_RENAMEAT
|
|
lib_SOURCES += renameat.c
|
|
endif
|
|
|
|
Include:
|
|
<stdio.h>
|
|
|
|
License:
|
|
GPL
|
|
|
|
Maintainer:
|
|
Jim Meyering, Eric Blake
|