summaryrefslogtreecommitdiffstats
path: root/usr.bin
Commit message (Collapse)AuthorAgeFilesLines
* Removed extra (non-trailing) arg in a call to warnx().bde1997-12-181-2/+2
|
* <bsd.prog.mk> has always included ../Makefile.inc, and there are nobde1997-12-173-4/+3
| | | | complications involving .PATH or dependencies, so don't include it here.
* DPADD repairs suggested by Bruce Evans <bde@zeta.org.au>cwt1997-12-175-11/+13
|
* Fixed DPADD.bde1997-12-161-2/+3
|
* Fixed DPADD.bde1997-12-162-10/+6
| | | | | | | | | Don't override the (correct) default for SRCS or MAN1. Replaced bogus Lite1 (?) Id by $Id$. The key server files were mis-imported so it is hard to tell where they came from, but at least in Lite2 they don't have useful Makefiles, and I rewrote most of the Makefile.
* Fixed DPADD. ${LIBGCC} must be added explicitly since the defaultbde1997-12-161-13/+22
| | | | | | | | | | | | | | | | | | linkage rule is overridden. The -L option must be in ${DPADD} so that `make checkdpadd' works. Actually use ${DPADD}. FIxed missing dependencies for doscmd. Use ${LIBCRT0} instead of a hard-coded path in the rule for doscmd. Added comments about the kludges used to build 2 binaries and 2 data files in one directory. It shouldn't be done this way. The dependencies on sources took extra work to get right, and the dependencies on objects are still broken (one set is missing and the other has the wrong libs). Fixed some style bugs while I'm here: - don't override the (correct) default for MAN1. - use `beforeinstall', not `afterinstall' to install auxiliary files. `afterinstall' is for fixing messes made by `install'.
* Fixed missing DPADD.bde1997-12-161-7/+6
| | | | | Fixed some style bugs while I'm here (don't override the (correct) default for MAN1).
* One more ctype castache1997-12-161-2/+2
|
* Add more (unsigned char) casts to ctype macrosache1997-12-162-6/+6
|
* Add (unsigned char) cast to ctype macroache1997-12-161-3/+3
|
* I'd swore I added this on my prior mega-commit. Any chance adds aren'tcwt1997-12-151-0/+15
| | | | | | | processed during the recursive swoop? Makefile for global's private library, complete with null install rule to keep this private.
* Add lib/Makefile and adjust as necessary to build global 2.2.1 from contrib ↵cwt1997-12-158-23/+26
| | | | sources.
* Remove cal, add ncal.helbig1997-12-151-3/+3
|
* This commit was generated by cvs2svn to compensate for changes in r31744,helbig1997-12-153-0/+906
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Add new command ncal.helbig1997-12-153-0/+906
|
* Sync with NetBSD v1.3.pst1997-12-1314-303/+613
| | | | | Keep I8N1 and quarantine port code. Replace our security fix with NetBSD's (their idea was better).
* Allow TMPDIR to be set and actually *used*; if it not set, it defaultssef1997-12-133-6/+9
| | | | to /tmp.
* Fixed .PATH statement so that minigzip.c can be found whenbde1997-12-131-2/+2
| | | | ${.OBJDIR} != ${.CURDIR}.
* Add minigzipmsmith1997-12-131-2/+2
|
* This commit was generated by cvs2svn to compensate for changes in r31695,msmith1997-12-132-0/+74
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * This framework builds the 'minigzip' sample program supplied withmsmith1997-12-132-0/+74
| | | | | libz. It is a non-GPL-polluted minimal implementation of the 'gzip' command, yielding a 12k executable (vs ~100k for gzip).
* Submitted by: Peter Hawkins <peter@clari.net.au>danny1997-12-131-1/+1
| | | | Spelling police.
* Change the ioctls for procfs around a bit; in particular, whever possible,sef1997-12-132-15/+11
| | | | | | | | | | | | | | change from ioctl(fd, PIOC<foo>, &i); to ioctl(fd, PIOC<foo>, i); This is going from the _IOW to _IO ioctl macro. The kernel, procctl, and truss must be in synch for it all to work (not doing so will get errors about inappropriate ioctl's, fortunately). Hopefully I didn't forget anything :).
* Change select(0, NULL, ...) to usleep()ache1997-12-121-5/+1
|
* Eleven days were eliminated by the Gregorian Reformation in 1752, not ten.helbig1997-12-121-2/+2
| | | | Submittee by:
* Mention pftp as an alternative command to enable passive mode.roberto1997-12-081-2/+10
|
* change ``ingored'' to ``ignored'' in two places. I noticed this typogj1997-12-081-3/+3
| | | | when I ran tconv to test APE (A Programmer's Editor).
* s/ps/truss/peter1997-12-071-1/+1
|
* Use the new PF_LINGER flag -- when this is set in a process' proc structure,sef1997-12-071-1/+20
| | | | | | | | | said process will not have its event mask cleared (and be restarted) on the last close of a procfs/mem file for that pid. This reduces the chance that a truss-monitored process will be left hanging with these bits set and nobody looking for it. This is the least-tested change of all of these, I'm afraid.
* Delete truss manpage link. We have now a real truss command.wosch1997-12-061-2/+2
|
* Complain about empty command lines.sef1997-12-061-2/+2
|
* err(3) already includes strerror(errno) and a trailing \npeter1997-12-061-6/+6
|
* recognize "FreeBSD ELF" as an executable typepeter1997-12-061-2/+3
| | | | close() takes a fd, not a char * :-)
* #include <unistd.h> to get it to compilepeter1997-12-061-1/+2
| | | | Submitted by: Andreas Klemm <andreas@klemm.gtn.com>
* Set the close-on-exec flag in the child; otherwise, it eats up asef1997-12-061-1/+2
| | | | file descriptor that it shouldn't.
* First cut at printing out ioctl names intelligently. Note that this doesn'tsef1997-12-063-5/+22
| | | | | | | handle linux ioctls (yet?). This uses the mkioctl script from kdump, bless its little heart. Reviewed by: Mike Smith
* Add truss to the list of subdirectories.sef1997-12-061-2/+2
|
* Truss program. Requires procfs.sef1997-12-0612-0/+1667
|
* Const poisoning from ks_shortdesc.bde1997-12-051-2/+2
|
* Use 'proto <tcp|udp|all>' to select the protocol to displaysteve1997-12-042-12/+21
| | | | | | | | | in netstat-mode to avoid a conflict with tcp-mode. Also while documenting this new feature in the manpage, fix a minor display nit. PR: 5159 Submitted by: Sergei Chechetkin <csl@whale.sunbay.crimea.ua>
* In the "ldd -v" output, display the N_AUX information for eachjdp1997-11-281-3/+13
| | | | | symbol. It indicates whether the symbol refers to a function or a data object.
* Sort option list so that -amin works.steve1997-11-281-1/+5
| | | | | PR: 5171 Submitted by: Dmitrij Tejblum <tejblum@arc.hq.cti.ru>
* Use .Nm ktrace instead of .Nm in SYNOPSIS section: otherwise, a newline ischarnier1997-11-241-3/+3
| | | | missing.
* Cleanup: fix a few typos, fit ASCII output onto an 80-column terminaljraynard1997-11-231-16/+16
| | | | and use a fixed font which actually exists.
* Suggest using "-b" or "-t" if the connection is reset (typical symptomfenner1997-11-221-1/+5
| | | | of broken TCP stack).
* Style fix.guido1997-11-191-5/+7
| | | | Complaint by: Bruce
* Back out revision 1.10. It broke the build of sh, which compilesjdp1997-11-181-4/+5
| | | | this file with warnx() defined as a macro.
* Fix: too many arguments for format in call to sprintf().jdp1997-11-181-1/+1
|
* Fix: too many arguments for format string in 4 calls to warnx().jdp1997-11-181-5/+4
|
* Add missing argument detected by "-Wformat". Make messages morejdp1997-11-182-6/+6
| | | | consistent.
OpenPOWER on IntegriCloud