Juli Mallett
b30e60d8b4
Regenerate with new output grouping in uuencode -m.
2002-05-17 12:27:31 +00:00
Juli Mallett
4eb254c143
Group the output chunks differently, to try to match BSD/OS output. Switch
...
to using arithmatic to determine buffer sizes to encode into.
Diane Bruce pointed out to me that BSD/OS did MIME too, so I want to match
their output, too, since my decision of 8 output groups was wholly arbitrary.
2002-05-17 12:27:02 +00:00
Andrey A. Chernov
486d038778
Optimize prev. commit code a bit
2002-05-17 12:24:19 +00:00
Andrey A. Chernov
27d3ae3587
Trailing slash fixes.
...
Fix the case:
cp file nonexistent/
which create nonextstent as file while trailing slash clearly indicates
that nonexistent must be a directory.
Also fix the case:
cp file1 file2/
which should produce error.
2002-05-17 11:52:48 +00:00
Juli Mallett
5fab96cfa4
Move _PATH_WALL from dump and shutdown's local pathnames.h to paths.h.
2002-05-17 11:47:12 +00:00
Juli Mallett
71e092d1bb
Remove local definition of _PATH_CP, and use <paths.h>, _PATH_CP is in the
...
CURRENT <paths.h>.
2002-05-17 11:38:48 +00:00
Brian Somers
db1d04d6d9
Tighten up temporary file permissions and move them to ${TMPDIR:-/tmp}
...
Problem reported by: lumpy <lumpy@the.whole.net>
MFC after: 3 days
2002-05-17 11:34:12 +00:00
Brian Somers
afa3985979
Return 3 unless $daily_status_security_enable != YES.
...
Returning $? masks security output when ``periodic security'' is successful !
MFC after: 3 days
2002-05-17 11:31:45 +00:00
Juli Mallett
621e56b613
Revert part of the previous revision. Changing exit() to return() in main()
...
is wrong, even though our C compiler doesn't understand that exit() eats
control of the program, and as such can sometimes complain that main() reaches
the bottom of its body without an explicit return().
Aside from that, the functional usefulness of changing it is effectively nil,
so back it out.
Submitted by: mike
2002-05-17 11:16:49 +00:00
Brian Somers
27a0cd1ccf
MFS: Extend a buffer size so that packages with particularily deep dependency
...
lists install properly.
2002-05-17 09:46:46 +00:00
Peter Wemm
aff1ee31b8
Move LIB1ASMFUNCS from the SYMS variable and explicitly add it to OBJS
...
later. Otherwise make will try and build the supposedly assembler .o
files from libgcc2.c - which does not work too well (the .o's have no
content)
Reviewed by: obrien
2002-05-17 08:59:13 +00:00
Tim J. Robbins
7139b25561
Make the output tidier when multiple integer formats are requested by
...
attempting to line up values into columns.
Obtained from: NetBSD (idea)
2002-05-17 08:54:32 +00:00
Juli Mallett
be70f7d4da
Simplify prerun() in the case where there are no arguments. Can't do -I or -J
...
substitution if `utility' is not specified and we're using the buildin echo;
It has no arguments for us to abuse.
2002-05-17 07:55:24 +00:00
Peter Wemm
8c258dc6ba
Put on peril-sensitive sunglasses and risk touching gcc related build glue
...
again. Try and deal with platforms that provide their own crtbegin/end asm
files (ia64 for example). crtstuff.c does not actually work on ia64 since
libgcc.a doesn't have a few key support functions when built on ia64 so it
is compulsory to use crtbegin.asm and crtend.asm.
Reviewed by: obrien
2002-05-17 07:55:08 +00:00
Tim J. Robbins
cf021af20b
Overhaul hexdump's od syntax code to handle the -s -A -j -N -t options that
...
SUSv3 requires and give od a proper manual page.
PR: 36783
2002-05-17 07:14:55 +00:00
David E. O'Brien
9c2a81d5ba
Remove some WIP bits that I didn't fully clean out before merging to HEAD.
2002-05-17 06:35:44 +00:00
Tim J. Robbins
1b50831dd6
Declare variables that were extern'd in multiple places in hexdump.h.
...
PR: 36783
2002-05-17 06:32:00 +00:00
Tim J. Robbins
828663767a
Add support for printing long doubles.
...
PR: 36783
2002-05-17 06:12:25 +00:00
John Baldwin
ae3f633bae
- Apparently, the Alpha ABI mandates that arguments be passed sign-extended
...
regardless of if they are signed or unsigned since it is easier to work
with sign-extended values. Thus, remove the disabled zapnot to
zero-extend the sign-extended value we read from *p in atomic_cmpset_32()
since the cmpval we are comparing against should already be
sign-extended.
- To ensure that the compiler knows to sign-extend the upper 32 bits of
cmpval rather than leaving garbage in there, cast the appropriately in
the constraints section.
Help from: Richard Henderson <rth@redhat.com>
2002-05-17 05:45:39 +00:00
Tim J. Robbins
cf45dcc8e6
Print signed single-byte decimal integers correctly instead of implicitly
...
converting them to unsigned bytes.
PR: 36783
2002-05-17 05:43:00 +00:00
Ruslan Ermilov
a43171c248
Back out revision 1.30 change.
...
cc1plus can apparently be built if you happen to have
/usr/bin/gperf, or set CXX to point to a C++ compiler
that can build gperf(1) in the bootstrap-tools stage
of buildworld.
2002-05-17 05:41:47 +00:00
Juli Mallett
2244ec0163
Stop this program's abuse of malloc(3). Its return value doesn't need these
...
ugly explicit casts, and its argument doesn't need explicitly cast to u_int,
especially if sizeof() is being used.
2002-05-17 05:27:52 +00:00
Tim J. Robbins
ca9cbcece0
Un-deprecate od(1): rename the deprecated' variable to
odmode', remove the
...
deprecation warning from the utility and manual page. Since this utility
is required by POSIX, it's not likely to be removed any time soon.
This is leading up to the addition of the P1003.1-2001 -s -A -j -N -t options.
PR: 36783
2002-05-17 05:20:30 +00:00
Benno Rice
27c9ea57e8
_C_LABEL -> CNAME
...
Forgotten by: benno
2002-05-17 05:11:13 +00:00
Juli Mallett
47bca8b02c
Clean up malloc(3)'s argument. Remove casts which do nothing when we're
...
using sizeof() anyway. Use slightly more consistent (per-file) error
reporting for malloc(3) returning NULL. If "malloc failed" was being printed,
don't use err(3). If a NULL format is being used, use err(3). In one case
errx(3) was being used with strerror(3), so just use err(3).
2002-05-17 05:11:07 +00:00
David E. O'Brien
03083777d9
Post rev 1.39, the PowerPC specific additions to OBJS was getting lost.
2002-05-17 04:18:33 +00:00
David E. O'Brien
d4dfcdb535
Update to Binutils 2.12.0 and stick to the native emulation for now.
...
This lets us get on the with the task at hand -- porting FreeBSD.
We can get fancy later on.
2002-05-17 03:43:47 +00:00
David E. O'Brien
79b40253a4
Update to Binutils 2.12.0 release.
2002-05-17 03:43:09 +00:00
David E. O'Brien
96c8341645
Bump __FreeBSD_version to note that Perl is not in /usr/src any more.
2002-05-17 03:13:08 +00:00
David E. O'Brien
e3dd58ccbc
Update to Binutils 2.12.0 and stick to the native emulation for now.
...
This lets us get on the with the task at hand -- porting FreeBSD.
We can get fancy later on.
2002-05-17 03:10:33 +00:00
David E. O'Brien
d781910a94
bsd.lib.mk now understands what to do with .asm files.
...
So we can refer to these files by their real name vs. playing tricks
renaming them during the build.
2002-05-17 03:08:15 +00:00
David E. O'Brien
ba2789556e
GCC 3.1 on PowerPC also has the crtsavres C Run Time file.
2002-05-17 03:04:47 +00:00
David E. O'Brien
cffafa9e12
Do not cut `docs' out of the build with NO_CXX.
...
There are no longer GNU C++ specific info files, and it was a bug with Gcc
2.95 that NO_CXX would cause the C and CPP info files to not be installed.
2002-05-17 03:00:33 +00:00
Juli Mallett
307a7436ec
Remove spurious casts in malloc(3)'s argument.
...
Use `return' instead of `exit' at the bottom of main().
2002-05-17 02:28:46 +00:00
Benno Rice
c2cba7c501
Flesh this out, based on the NetBSD version.
...
Reviewed by: obrien
2002-05-17 01:58:55 +00:00
Tim J. Robbins
f5ba2b905e
Add a Standards section, and note that compress(1) and uncompress(1) now
...
conform to P1003.1-2001.
2002-05-17 01:54:17 +00:00
Benno Rice
96269f7e26
- Rename the _C_LABEL macro to CNAME.
...
- Rename the _ASM_LABEL macro to ASMNAME.
- Add the HIDENAME macro which is used in libc's syscall stuff.
2002-05-17 01:44:55 +00:00
Tim J. Robbins
b477159065
As required by SUSv3, a file argument of "-" causes standard input
...
to be compressed/decompressed to standard output.
2002-05-17 01:42:43 +00:00
Benno Rice
b635dacd57
Fix commenting around NetBSD version string.
2002-05-17 01:41:01 +00:00
Tim J. Robbins
783b4710d3
Compression ratio statistics should be written to stderr instead of stdout.
2002-05-17 01:25:51 +00:00
Tim J. Robbins
6c1b63bb06
Use exit status 2 to indicate that the file was not compressed because
...
its size would not be reduced (SUSv3).
2002-05-17 00:58:07 +00:00
Brian Somers
5bc74cd68f
Put back <string.h>
2002-05-17 00:44:54 +00:00
Andrew R. Reiter
9727e2df7a
- Further replacing of UM_* macros with the appropriate function call. I
...
am fairly certain that this should do it and that I may now remove the
UM_ macros from port.h. I will, however, wait a few days to ensure
that these can be safely removed.
2002-05-17 00:30:06 +00:00
Andrew R. Reiter
7455bd51da
- Replace UM_* macros by replacing them with the appropriate function
...
call. These changes are similar to the ones made to atmarpd and scsp.
2002-05-17 00:20:40 +00:00
Andrew R. Reiter
1effc132ba
- Convert a bunch of macros to the actual function they're calling. These
...
include:
UM_ALLOC -> calloc, malloc
UM_FREE -> free
UM_COPY -> bcopy
UM_ZERO -> bzero
This is the first step towards removing these macros.
2002-05-16 23:57:37 +00:00
Tim J. Robbins
9e49944008
Process and user ID arguments must be treated as decimal integers,
...
not octal or hex. This is the way it was before revision 1.10.
PR: 36950
Submitted by: Peter Avalos <pavalos@theshell.com>
2002-05-16 23:55:35 +00:00
Tim J. Robbins
ae5a682066
Accept decimal user IDs with -u option as well as usernames.
...
PR: 36950
2002-05-16 23:44:11 +00:00
Tim J. Robbins
03ed70f315
Diagnostic messages belong on stderr, not stdout. SUSv3 specifies that
...
renice may not use stdout at all.
2002-05-16 23:30:38 +00:00
Andrew R. Reiter
d58f1bc48b
- Convert a bunch of macros to the actual function they're calling. These
...
include:
UM_ALLOC -> calloc, malloc
UM_FREE -> free
UM_COPY -> bcopy
UM_ZERO -> bzero
This is the first step towards removing these macros.
2002-05-16 23:28:40 +00:00
Eric Melville
595d77f913
Remove cross reference to pkg_update(1).
...
Submitted by: dd
2002-05-16 22:46:53 +00:00