summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2004-11-30Include chdir-long.h rather than chdir.h.Jim Meyering
(restore_cwd): Use chdir_long, not chdir.
2004-11-30*** empty log message ***Jim Meyering
2004-11-30[!defined PATH_MAX]: Define chdir_long to chdir on systems like the Hurd.Jim Meyering
2004-11-30Renamed from chdir.h.Jim Meyering
2004-11-30Renamed from chdir.c.Jim Meyering
2004-11-30*** empty log message ***Jim Meyering
2004-11-30(O_DIRECTORY): Define, if necessary.Jim Meyering
(memchrcspn): Tiny wrapper around memchr. (rpl_chdir): Use memchrcspn rather than strcspn.
2004-11-28*** empty log message ***Jim Meyering
2004-11-28(rpl_openat): Also accept optional mode parameter.Jim Meyering
Adjust prototype
2004-11-28(rpl_openat): Also accept optional mode parameter.Jim Meyering
2004-11-28Don't let error uses in #if-0'd code trigger `make distcheck' failure.Jim Meyering
2004-11-28(main): Appease the gods.Jim Meyering
2004-11-28.Jim Meyering
2004-11-28*** empty log message ***Jim Meyering
2004-11-28Add lib/openat.c.Jim Meyering
2004-11-28*** empty log message ***Jim Meyering
2004-11-28*** empty log message ***Jim Meyering
2004-11-28Include "chdir.h", so that if save_cwd/getcwdJim Meyering
saves a name longer than PATH_MAX, restore_cwd's chdir can use it.
2004-11-28.Jim Meyering
2004-11-28*** empty log message ***Jim Meyering
2004-11-28*** empty log message ***Jim Meyering
2004-11-28(gl_MACROS): Require gl_FUNC_CHDIR.Jim Meyering
2004-11-28.Jim Meyering
2004-11-28*** empty log message ***Jim Meyering
2004-11-28(libfetish_a_SOURCES): Add chdir.h and openat.h.Jim Meyering
2004-11-28*** empty log message ***Jim Meyering
2004-11-28*** empty log message ***Jim Meyering
2004-11-28This is a robust version of chdir, in that it can handle directoryJim Meyering
names longer than PATH_MAX.
2004-11-28add another FIXME, to make it obviousJim Meyering
2004-11-28This is a robust version of chdir, in that it can handle directoryJim Meyering
names longer than PATH_MAX.
2004-11-27* coreutils.texi (du invocation): Minor cleanups.Paul Eggert
2004-11-27(du invocation): Use if=/dev/null ratherPaul Eggert
than :|. Problem reported by Dan Jacobson. Use "seek=2GiB" rather than the wordier "seek=`echo '2^31'|bc`". Say "KiB" not the (inaccurate) "kilobytes". Similarly for "GiB" and "gigabytes".
2004-11-26Regenerate.Paul Eggert
2004-11-26Fix problem reported by Scott S. Tinsley for HP-UX 11.11 usingPaul Eggert
HP's ANSI C compiler.
2004-11-26Fix problems reported by Scott S. Tinsley for HP-UX 11.11 usingPaul Eggert
HP's ANSI C compiler.
2004-11-26(MIN) [defined MIN]: Don't define, since it's already defined.Paul Eggert
2004-11-26(statvfs) [HAVE_SYS_STATVFS_H]: Remove decl.Paul Eggert
Declaring int functions causes warnings on some modern systems and shouldn't be needed to compile on ancient ones.
2004-11-26(link, symlink): Remove decls.Paul Eggert
2004-11-26(stat): Remove decl.Paul Eggert
2004-11-26(stat, lstat, rename): Remove decls.Paul Eggert
2004-11-26filesystems -> file systemsPaul Eggert
2004-11-25remove SPACEs before TABsJim Meyering
2004-11-25Recent getcwd fixes.Paul Eggert
2004-11-25Recent getcwd fixes.Paul Eggert
2004-11-25(gl_XGETCWD): Replace with gl_FUNC_GETCWD, sincePaul Eggert
that's all we need now.
2004-11-25(gl_PREREQ): Add gl_FUNC_MEMPCPY.Paul Eggert
2004-11-25(gl_MACROS): Don't require GL_FUNC_GETCWD_PATH_MAX.Paul Eggert
2004-11-25(gl_FUNC_GETCWD_NULL): Renamed fromPaul Eggert
AC_FUNC_GETCWD_NULL. All used changed. Change cache variable name accordingly. (gl_FUNC_GETCWD, gl_PREREQ_GETCWD): New macros. Revamp to accommodate new getcwd.c.
2004-11-25(gl_FUNC_GETCWD_PATH_MAX): Renamed fromPaul Eggert
GL_FUNC_GETCWD_PATH_MAX for consistency. All uses changed. Use the _ONCE methods, for efficiency. Check for fcntl.h. In test program, include <errno.h> and <fcntl.h> if available. Remove old K&R cruft from test program. Check for common errors in GNU/Linux, OpenBSD, and Solaris. Just set gl_cv_func_getcwd_path_max; don't do AC_LIBOBJ, as that's getcwd.m4's job.
2004-11-25David MacKenzie's old code was removed, so givePaul Eggert
credit only to Jim Meyering and adjust the copyright dates. Do not include <limits.h>, <stdio.h>, <sys/types.h>, <stdlib.h>, <unistd.h>, "pathmax.h". Instead, include "xgetcwd.h" (first) and "getcwd.h". (INITIAL_BUFFER_SIZE): Remove. (xgetcwd): Rely on getcwd, since we now depend on a reliable one.