summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
1999-05-04(AC_LFS): -n32, -o32, and -n64 should be in CFLAGS,Jim Meyering
not CPPFLAGS, so that linking works correctly in IRIX.
1999-05-04(usage): Break the usage message into 3 pieces instead ofJim Meyering
only 2. The strings had grown to be longer than 2048, which evokes errors when compiling with Irix4's cc.
1999-05-04(search_item): Use `1' instead of `+1'. The latterJim Meyering
elicits a syntax error from SunOS4's cc. From Kaveh Ghazi.
1999-05-03<ctype.h>: Don't include.Jim Meyering
[!STDC_HEADERS]: Remove definitions of ctype macros. Convert e.g., isspace to ISSPACE to use definitions from sys2.h. Reported by Kaveh Ghazi.
1999-05-03(TOLOWER): Define.Jim Meyering
(TOUPPER): Define.
1999-05-03(TOLOWER): Remove definition.Jim Meyering
1999-05-03*** empty log message ***Jim Meyering
1999-05-03*** empty log message ***Jim Meyering
1999-05-03.Jim Meyering
1999-05-03.Jim Meyering
1999-05-03(main): Give a better diagnostic when we fail to set the hostname.Jim Meyering
1999-05-03(main): Manually handle `--', since we no longer call getopt.Jim Meyering
1999-05-03(read_utmp): Ignore the return value from utmpname.Jim Meyering
1999-05-01Define several tag-related make variables.Jim Meyering
(cvs-dist): Use the make variables instead of shell ones. (announcement): Automatically generate diffs for all ChangeLog files, not just the top level one.
1999-05-01*** empty log message ***Jim Meyering
1999-05-01*** empty log message ***Jim Meyering
1999-05-01*** empty log message ***Jim Meyering
1999-05-01(AC_REPLACE_FUNCS): Add dup2.Jim Meyering
1999-05-01(main): Manually handle `--', since we no longerJim Meyering
call getopt. Reported by Joseph S. Myers.
1999-05-01(main): Manually handle `--', since we no longerJim Meyering
call getopt. Reported by Joseph S. Myers.
1999-05-01(decode_switches): Use STDIN_FILENO, STDOUT_FILENO instead of 0, 1.Jim Meyering
1999-05-01Always use STDIN_FILENO for input and STDOUT_FILENOJim Meyering
for output, to avoid confusion with closed input and output fds. (input_fd, output_fd): Remove; all uses changed to STDIN_FILENO and STDOUT_FILENO. (open_fd): New function. (main): Use it, instead of open, to ensure that file descriptors don't get confused. (skip): Don't fstat the input file; the result is no longer used.
1999-05-01*** empty log message ***Jim Meyering
1999-05-01(usage): Document the differences between theJim Meyering
obsolescent, +POS1[-POS2] form, and the POSIX -k option.
1999-04-30add emphasis that sort's -k M,N is inclusiveJim Meyering
1999-04-30*** empty log message ***Jim Meyering
1999-04-30*** empty log message ***Jim Meyering
1999-04-30*** empty log message ***Jim Meyering
1999-04-30Update to reflect this change by reversingJim Meyering
the order of arguments so the symlink is the source, not the destination (otherwise, the mv command would now succeed).
1999-04-30(copy_internal): Move the one-file-system test so thatJim Meyering
it follows the `if (new_dst || !S_ISDIR (dst_sb.st_mode))' block. Prior to this change, `cp --one-file-system' would traverse a file- system boundary if the destination directory existed. From thospel@mail.dma.be.
1999-04-30*** empty log message ***Jim Meyering
1999-04-30(copy_internal): Don't make `mv foo symlink-to-foo' fail.Jim Meyering
That is, even though source and destination are `the same,' don't fail if the destination is a symlink. From Peter Samuelson.
1999-04-26*** empty log message ***Jim Meyering
1999-04-26*** empty log message ***Jim Meyering
1999-04-26(main): If you can't open an output file (with seek=...) read-write,Jim Meyering
then open it for write and report an error if we can't seek.
1999-04-26.Jim Meyering
1999-04-26(utime_null): Don't pass 0666 to open; it's not needed and isn'tJim Meyering
guaranteed to be portable.
1999-04-26(S_IRWXU, S_IRWXG, S_IRWXO): Define if not defined.Jim Meyering
Use proper mode_t types and macros. Don't assume the traditional Unix values for mode bits.
1999-04-26(make_node_op_equals, mode_compile, mode_create_from_ref, mode_adjust):Jim Meyering
Use proper mode_t types and macros. Don't assume the traditional Unix values for mode bits. modechange.h now includes sys/types.h. Include xstrtol.h. (isodigit, oatoi): Remove. (S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR, S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRWXU, S_IRWXG, S_IRWXO): Define if not defined. (CHMOD_MODE_BITS): New macro. (mode_compile): Convert from octal with xstrtoul, not our own routine.
1999-04-26Don't assume traditional Unix mode numbering.Jim Meyering
1999-04-26Include <config.h>, <sys/types.h> for mode_t.Jim Meyering
(struct mode_change): Members affected and value are now mode_t instead of unsigned short.
1999-04-26<config.h>, <sys/types.h>: Include for mode_t.Jim Meyering
(mode_string): Now takes mode_t.
1999-04-26(make_path): Use proper mode_t types and macros.Jim Meyering
Don't assume the traditional Unix values for mode bits. (S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IRWXU): Define if not defined.
1999-04-26(setst, ftypelet, mode_string): Use proper mode_t types and macros.Jim Meyering
Don't assume the traditional Unix values for mode bits. (S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH): Define if not defined. <config.h>, <sys/types.h>: Include for mode_t. (mode_string): Now takes mode_t.
1999-04-26(main): Use proper mode_t types and macros.Jim Meyering
Don't assume the traditional Unix values for mode bits.
1999-04-26(do_copy, cp_option_init, main): Use proper mode_t types and macros.Jim Meyering
Don't assume the traditional Unix values for mode bits.
1999-04-26(struct cp_options.umask_kill): Use mode_t, not unsigned int.Jim Meyering
1999-04-26(copy_reg, copy_internal): Use proper mode_t types and macros.Jim Meyering
Don't assume the traditional Unix values for mode bits.
1999-04-26(describe_change, change_file_mode): Use proper mode_t types and macros.Jim Meyering
Don't assume the traditional Unix values for mode bits.
1999-04-26(main): Use proper mode_t types and macros.Jim Meyering
Don't assume the traditional Unix values for mode bits.