summaryrefslogtreecommitdiffstats
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
* Save half of space in LC_COLLATE and remove unneded code.ache1996-10-152-35/+10
| | | | | | This change is not compatible with previous variant, however proper error code returned in both cases. Colldef changes will follows.
* A couple of minor nits.phk1996-10-141-5/+10
| | | | | Submitted by: Craig Leres <leres@ee.lbl.gov> Submitted by: Theo Deraadt <deraadt@theos.com>
* Send PASV instead of PASSIVE.jkh1996-10-101-2/+2
| | | | Submitted-By: Archie Cobbs <archie@whistle.com>
* Use -mdoc macros properly.wollman1996-10-094-52/+63
| | | | | | Translate from Danglish into English. Refer to the alogrithms as ``RSA Data Security MDX message digest'' as required by the license.
* Require that a timezone specified via the TZ envariable be a regularwollman1996-10-091-1/+7
| | | | | file (and not a directory or a device which might also be readable). Closes PR#1740.
* Add orandom(), osrandom(), etc.ache1996-10-091-3/+7
|
* Improve seeding, the random sequence did not vary matchache1996-10-092-14/+75
| | | | with the seed. Old variant will be available via libcompat soon.
* Fix an error in the description of "h_errno". Add "const" to a fewjdp1996-10-081-4/+4
| | | | declarations to make them agree with the actual prototypes in <netdb.h>.
* Yet another attempt to remove the old libraries correctly. libfoo.*bde1996-10-082-5/+7
| | | | was misnamed foo.*.
* Link shared libraries with -xpst1996-10-081-1/+1
|
* Fixed prototyping of dlopen/dlsym in dlfcn.h, to match how crt0.c definesscrappy1996-10-081-2/+2
| | | | | | it and link.h prototypes it Error of my ways pointed out by Peter
* Implement virtual-to-physical address mapping for the kvm library onpeter1996-10-072-40/+130
| | | | | | | | | | | | dead kernel debugging. The previous code was a "do nothing". The most obvious side effect of this is that you can now do things like this and reasonably expect them to work: dmesg -M /var/crash/vmcore.3 -N /var/crash/kernel.3 ps -axl -M /var/crash/vmcore.3 -N /var/crash/kernel.3 A good deal of this was lifted from the gdb code to do this, as well as from NetBSD's libkvm (which has completely different VM macros)
* Remove garbage initcode reference so that 'gcc -Dlint ...'steve1996-10-061-2/+1
| | | | will compile without error.
* delete doubled words, e.g.: "the the" -> "the"wosch1996-10-0510-12/+23
|
* Skip results that have unexpected lengthspst1996-10-011-7/+6
|
* Support crt0 <-> ld.so interface version 4. This should be both backwardspeter1996-10-011-5/+11
| | | | | | | | | | and forwards compatable with version 3. This is needed to enable storing a run-time library path in the dynamic linking headers. The crt startup tries version 4 first, and falls back to version 3, so an executable that is linked on -current will work with the ld.so on 2.1.x and less. Reviewed by: nate, jdp Obtained from: NetBSD
* perror () does not prepend ": " for the non-NULL argument "". close PR 1492wosch1996-09-301-1/+1
| | | | | | | Submitted by: Kent Vander Velden <graphix@iastate.edu> Reviewed by: Submitted by: Obtained from:
* Made this about as (in)complete as sysctl.8.bde1996-09-291-35/+42
| | | | | | - removed references to nonexistent pathconf-related variables. - document everything in CTL_MACHDEP(more than in sysctl.8) and 80% of the things in CTL_KERN (same as in sysctl.8).
* Updated the descriptions of the limits related to EAGAIN.bde1996-09-292-9/+37
| | | | Changed the error name width for rfork to match fork.
* .Os NetBSD -> .Os FreeBSD.wosch1996-09-284-4/+4
| | | | The pages are not NetBSD specific and FreeBSD is not a child of NetBSD.
* .DV -> .Dv (SOCK_STREAM was invisible).bde1996-09-281-1/+1
|
* .DV -> .Dv (FOPEN_MAX was invisible).bde1996-09-281-1/+1
|
* Added parens to noecho in screen initialization example.alex1996-09-281-1/+1
|
* Peter must be sick of this, so I changed it directly. Fixed:bde1996-09-272-10/+20
| | | | | | | | | | | | - old static non-profiled libraries were removed in the wrong directory if ${ORIG_SHLIBDIR} != ${LIBDIR}. - old profiled libraries weren't removed. - new shared compat libraries were installed in the wrong directory if ${ORIG_SHLIBDIR} != /usr/lib. - some lines were too long. Added some comments about cases that have caused problems. Changed libfoo to ${LIB} so that libresolv/Makefile and libgnumalloc/Makefile are almost identical.
* Don't use malloc, pessimize to use sbrk.phk1996-09-272-2/+3
| | | | fix sbrk manpage while we're at it.
* Don't rely on LIBDIR having been equal to SHLIBDIR on Bruce's suggestion.peter1996-09-272-7/+9
| | | | | Set ORIG_SHLIBDIR to the expanded value of ${SHLIBDIR}, and use that as a base to modify the new SHLIBDIR without getting infinite recursion.
* These were repository copied.peter1996-09-272-30/+0
|
* libfakegnumalloc -> libgnumallocpeter1996-09-271-1/+1
|
* Attempt to clean some bogons. I've had so much email with comments,peter1996-09-271-2/+15
| | | | | | | | | complaints and suggestions about this over the last few days that I cannot remember who has said what anymore. :-( There is also a comment here about the intent of the process and another explicit pointer to the etc/etc/rc change to that has been ignored by quite a few people it seems.
* Repository copy libfakegnumalloc to libgnumalloc and remove the symlinkpeter1996-09-272-19/+17
| | | | | | | | | | | | | | | stuff and detection for the "gnumalloc" port which doesn't exist and nobody has cared enough about for the past 6 months or so to implement. As has been pointed out to me (quite a few times) in email, the people that had been bitten by the changes had failed to follow the instructions about updating /etc/rc. Bruce also pointed out that after my last commit, it was no longer removing /usr/lib/libgnumalloc.so.2.0 as it should have been. Hopefully this (and the comments in the Makefile) should defuse the problem a bit.
* Remove the nuke of /usr/lib/libgnumalloc*, this is closer to "How It Waspeter1996-09-262-6/+4
| | | | | Before", hopefully it won't cause as much hassle. This now entirely confines it's activities to /usr/lib/compat/lib{fake,}gnumalloc.so.2.0
* Back out my recent compilation clean-up changes, sysinstall is now weird.pst1996-09-265-5/+5
|
* Fix a typo.sos1996-09-251-2/+2
| | | | Reviewed by: phk
* A number of minor bogons and portability things from jdp.phk1996-09-251-28/+37
| | | | Submitted by: jdp
* Eliminated includes of the "temporary" backwards compatibility headerbde1996-09-241-3/+1
| | | | | | <sys/dir.h> in applications. Maintained existing (inadequate) ifdefs for dir.h vs dirent.h in libdialog, amd and rarpd, but didn't add any new ones.
* add missing comma(s) in .Xr macroswosch1996-09-239-15/+24
|
* phkmalloc/3phk1996-09-232-196/+342
| | | | | | | | Various neat features added. More documentation in the manpage. If your machine has very little RAM, I guess that would be < 16M these days :-(, you may want to try this: ln -fs 'H<' /etc/malloc.conf check the manpage.
* Fix typo from previous commit (tsvsec --> tv_sec).alex1996-09-231-1/+1
|
* Fix some compilation warningspst1996-09-225-5/+5
|
* Fix some compilation warnings.pst1996-09-211-5/+7
|
* fix .Xr macrowosch1996-09-214-4/+4
|
* ".Xr chflags 1," -> ".Xr chflags 1 ,"peter1996-09-211-1/+1
|
* Fixed CLEANFILES. The *.3 links were missing.bde1996-09-201-4/+59
| | | | Removed ugly newlines.
* Add the utrace syscall.phk1996-09-201-3/+4
|
* Remove now un-necessary FreeBSD specific code since our timespecnate1996-09-209-528/+0
| | | | | | structure now has the correct member names. Pointed out by: Peter Wemm
* ts_sec -> tv_secnate1996-09-202-5/+5
| | | | ts_nsec -> tv_nsec
* Make libftpio 64-bit clean.peter1996-09-193-25/+36
| | | | | | | Major version bumped (by me) since the ftpGet() public interface has changed (an "int *" becomes and "off_t *") Submitted by: Jason Thorpe <thorpej@nas.nasa.gov>, PR#1640
* Minor tweaks for the fake libgnumalloc stuff. No longer build, install andpeter1996-09-192-12/+14
| | | | then rm the *.a version
* Update to tcl7.5u1.phk1996-09-183-19/+48
| | | | Add two scaffold files to (attempt) to make a tclsh compiled -static work.
* Fix a very rare error condition: The code to free VM back to the kernelphk1996-09-171-3/+4
| | | | | | | as done after a quasi-recursive call to free() had modified what we thought we knew about the last chunk of pages. This bug manifested itself when I did a "make obj" from src/usr.sbin/lpr, then make would coredump in the lpd directory.
OpenPOWER on IntegriCloud