summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Add ACS support to 8859-2 fontsache1999-12-246-295/+198
| | | | | | | | Remove stale 8859-2 font Fix Russian INDEX entries Add more languages to FONT fields Submitted by: fonts from Cejka Rudolf <cejkar@dcse.fee.vutbr.cz>
* Use 'i' for ACS lantern (as ncurses expect it)ache1999-12-241-7/+7
|
* New man page. This will need modifications RSN.grog1999-12-241-0/+282
|
* Creating weak symbols doesn't work correctly when building an aout libc.jasone1999-12-244-16/+8
| | | | | | | | | | | | Doing the "right thing" here is difficult, so create two ENTRY points for each function (for example, __setjmp and setjmp are equivalent). This isn't pretty, but it works for both aout and ELF. libc symbol naming needs an overhaul in order to properly support function wrapping, specifically in the case of a real libpthread, and these duplicate entry points should be fixed as part of that overhaul. Pointed out by: bde
* Update config rules for making {linux|svr4}_assym.hmarcel1999-12-232-20/+20
| | | | Assembler symbols are now made using genassym(1).
* Don't bother fork()ing after closing a ctty if ppp is about tobrian1999-12-231-0/+10
| | | | terminate anyway.
* Understand double-quotes anywhere on a command line in the samebrian1999-12-233-18/+14
| | | | | way that a shell does. The previous way ppp did it just didn't make any sense.
* Correct warning about unindented commands when the unindented commandbrian1999-12-231-27/+34
| | | | is actually a new label with a comment at the end of the line.
* Use genassym(1) and <sys/assym.h> to generate assembler symbols.marcel1999-12-232-28/+9
|
* Use genassym(1) and <sys/assym.h> to generate assembler symbols.marcel1999-12-233-44/+13
|
* o Define `offsetof' when not already defined,marcel1999-12-231-5/+10
| | | | | | | o Define ASSYM(sym, v) as the primary macro to use, o Define ASSYM_SELF and ASSYM_OFFSET in terms of ASSYM, Psychological manipulation by: bde <grin>
* Don't build caesar as a tool. fortune(6) doesn't depend on itmarcel1999-12-231-3/+3
| | | | | anymore. Update comments and variable names as well to wipe out any traces that may confuse people in the future.
* Use tr(1) instead of caesar(6) to perform the rotation. This removesmarcel1999-12-231-2/+1
| | | | | | | | the dependency on caesar which therefore doesn't need to be built by bootstrap-tools. Suggested by: des Previously mentioned by: Peter Jeremy <peter.jeremy@alcatel.com.au>
* Fix problem reported by Matt Dillon. Occasionally, very small receivedwpaul1999-12-231-1/+14
| | | | | | | | | | frames would be handled incorrectly due to bad usage of m_pullup() in the case where the frame wraps from the end of the receive buffer back the beginning. Also, when manually extending small packets to pad them to the minimum frame length during transmission, zero out the pad area to make some really paranoid people happy.
* Fix zero-padding for printf formats which include a precision orsheldonh1999-12-231-2/+8
| | | | | | | | | width. This is a vendor-supplied patch. Requested by: bde Submitted by: Aharon Robbins <arnold@skeeve.com>
* Removed vestiges of BAD144 support.bde1999-12-231-1/+2
|
* Removed vestiges of BAD144 support.bde1999-12-232-4/+1
| | | | Removed -mno-486 from CFLAGS since it is no longer supported by gcc.
* Fixed bitrot in synopsis. The prototype for panic() was moved tobde1999-12-231-2/+1
| | | | <sys/param.h>, but the #includes weren't adjusted here.
* Fixed wrong function types (the device_add_child() family returns abde1999-12-231-2/+2
| | | | device_t, not an int).
* Removed unused include of <sys/buf.h> from synopsis. This include isbde1999-12-232-3/+0
| | | | | | | needed to access the internals of buffers but not necessarily to use the VOP. <sys/buf.h> recently grew a bogus dependency on <sys/systm.h> for the declaration of spl*, and I prefer to fix the synopsis breakage by removing a wart instead of adding one.
* Fixed bitrot in synopsis. The prototype for VOP_ISLOCKED() changedbde1999-12-231-1/+1
| | | | | recently, except of course in the documentation. Other parts of this man page are several years out of date.
* Fixed missing #includes in synopsis.bde1999-12-231-0/+2
|
* Fixed bitrot in synopsis. Important interface changes hadn't reached here.bde1999-12-232-13/+6
|
* "Fixed" assorted bitrot. remove_dev() was renamed to destroy_dev().bde1999-12-234-190/+10
| | | | | | VOP_ABORTOP() went away. at_shutdown() was replaced by undocumented event handling. Rename remove_dev() here too, and remove the dead and dead wrong man pages.
* Fixed missing declarations of futimes(2) and lutimes(2).bde1999-12-232-0/+4
|
* Fixed missing declaration of lchmod(2).bde1999-12-231-0/+1
|
* Fixed missing #include in synopsis.bde1999-12-232-1/+3
| | | | | Fixed misspelling of VGLPanScreen in its prototype. Fixed missing installation of link to VGLPanScreen.3.
* Fixed a formatting error in the prototype for crypt().bde1999-12-231-2/+2
|
* Fixed bitrot in synopsis. The change from "int *pshared" to "int pshared"bde1999-12-233-3/+3
| | | | hadn't reached here.
* Fixed wrong #include in synopsis.bde1999-12-231-2/+2
|
* Fixed missing `const' in synopsis.bde1999-12-231-1/+1
|
* Fixed missing includes in synopsis.bde1999-12-231-0/+2
|
* Fixed missing installation of a link to ctermid_r.3.bde1999-12-231-0/+1
|
* Fixed missing declaration of ctermid_r(3).bde1999-12-231-0/+1
|
* Fixed wrong prototype and missing include for strsignal(3). strsignal()bde1999-12-231-2/+3
| | | | | | | | | | | | | | takes an int arg and is prototyped in <string.h>. It has the opposite interface botches to psignal(3) which takes a bogus unsigned arg but is prototyped in the right place. This is not the last of the interface problems for strsignal(). We obtained it from NetBSD, but NetBSD has moved its prototype to <unistd.h>. strsignal() should return const char *, but it returns char * for historical reasons. NetBSD declares it as returning __aconst char, where __aconst is normally empty but can be set to `const' to give better error checking. glibc-2.1.1 prototypes strsignal() in <string.h>.
* Fixed missing installation of a link to getlogin_r.3. This is the firstbde1999-12-231-0/+1
| | | | | example of section 2 and section 3 interfaces sharing a man page. It's probably a bad example.
* Fixed missing declaration of getlogin_r(3).bde1999-12-231-0/+2
|
* Fixed missing installation of a link to rand_r.3.bde1999-12-231-1/+1
|
* Fixed missing declaration of rand_r(3).bde1999-12-231-0/+2
|
* Fixed missing declaration of getdents(2).bde1999-12-231-0/+1
|
* Update the unclean flag for mount -u. I forgot to handle this casebde1999-12-231-0/+2
| | | | | | | | when I made the absence of the clean flag sticky in rev.1.88. This was a problem main for "mount /". There is no way to mount "/" for writing without using mount -u (normally implicitly), so after "mount -f /" of an unclean filesystem, the absence of the clean flag was sticky forever.
* Fix the fixfsfile() so that it works for both block and character devicespeter1999-12-231-1/+7
| | | | | | as root. This could fix the "filesystem still dirty after fsck" problem. Submitted by: bde
* Define genassym related macros in a seperate include file to preventmarcel1999-12-231-0/+42
| | | | | | | | each and every xxx_genassym.c file to seperately define these and also to promote uniformity and a level of abstraction. Symbols are created as unsigned long by default and overridable on a per file basis.
* Descent into sub-makes with a fixed PATH. The PATH does not containmarcel1999-12-231-1/+2
| | | | | | | | | /usr/games on purpose. All tools in /usr/games are built as part of the tool stages to support building world on machines without games. This fixes any build problems that have been caused by non-standard paths and also removes the primary objection for not using absolute paths.
* Revert previous commit, andmarcel1999-12-231-7/+5
| | | | | | | | | | | | | | o Add genassym to the list of cross-tools o Remove sh hashing work-around, we don't need it anymore o Clean more directories in WORLDTMP when NOCLEAN is specified The sh hashing work-around is not needed anymore, because we don't trigger the bug anymore. When NOCLEAN is not defined, we wipe out the complete WORLDTMP, including the object directories of the tools we have built. When NOCLEAN is defined, we remove anything that we install anyway, which is usr/bin, usr/games, usr/include, usr/lib and usr/sbin.
* Enable genassym.marcel1999-12-231-0/+1
|
* New command for creating assembler symbols from C.marcel1999-12-233-0/+348
|
* configSamba is gone, and is not coming back.dcs1999-12-232-2/+0
|
* Duh! Also remove inter.phone from the makefile.phk1999-12-231-1/+1
|
* Remove this file for the same reasons as for na.phone: There arephk1999-12-231-451/+0
| | | | | better and more comprehensive and reliable sources for such information in the global village.
OpenPOWER on IntegriCloud