summaryrefslogtreecommitdiffstats
path: root/lib/libc
Commit message (Collapse)AuthorAgeFilesLines
* Don't build .po's if NOPROFILE is defined.bde1994-08-281-10/+27
| | | | | | Don't build .so's if NOPIC is defined. Use ${ECHO} instead of `echo' so that `make -s' is fairly quiet.
* gethostid.2 is now gethostid.3. Instal the correct one.bde1994-08-281-1/+1
|
* Fix gethostbyaddr():csgr1994-08-281-2/+2
| | | | | call _getdnsbyaddr() instead of _getdnsbyname() ;-) Submitted by: Geoff
* libc.so should be installed immutable.wollman1994-08-261-0/+1
|
* WINE/user LDT support from John Brezak, ported to FreeBSD by Jeffrey Hsudg1994-08-221-0/+1
| | | | | | <hsu@soda.berkeley.edu>. ...Moved over from 1.1.5. Other portions of this commit were done by moving the RCS files into place directly.
* This is weird. I *added this*, but it went away again! Ummm.. Mumble.jkh1994-08-222-0/+12
| | | | | I'm confused.. Submitted by: jkh
* Put __infinity back here again until someone does the right thing andjkh1994-08-202-2/+2
| | | | | | repartitions libc into something human again. I don't have that kind of time right now myself, unfortunately. Submitted by: jkh
* Fixed problem with returning -1 on error when the return value is adg1994-08-132-2/+4
| | | | | | | | long long. Done by plugging both eax and edx with -1. This will clobber edx unnecessarily when the return value is only 32bit...though probably always an okay thing to do, it could stand a better fix. This was the cause of gawk being broken (boy was THAT ever a subtle bug!!!).
* Oops, forgot to cvs add this file.wollman1994-08-101-0/+63
|
* Make it easier for programs to figure out what revision of FreeBSD theywollman1994-08-101-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | are running under. Here's how to bootstrap (order is important): 1) Re-compile gcc (just the driver is all you need). 2) Re-compile libc. 3) Re-compile your kernel. Reboot. 4) cd /usr/src/include; make install You can now detect the compilation environment with the following code: #if !defined(__FreeBSD__) #define __FreeBSD_version 199401 #elif __FreeBSD__ == 1 #define __FreeBSD_version 199405 #else #include <osreldate.h> #endif You can determine the run-time environment by calling the new C library function getosreldate(), or by examining the MIB variable kern.osreldate. For the time being, the release date is defined as 199409, which we have already established as our target.
* Add back set_rpc_grouplistsize(), so mount_nfs compiles again. Alsowollman1994-08-101-3/+28
| | | | fixed incipient bug wrt gid_t versus int.
* Fixed typo.wollman1994-08-091-2/+2
|
* Add (substantially re-written) support for /etc/host.conf, and reintegratedwollman1994-08-091-11/+196
| | | | | | | | | 1.1.5 support for YP, fixing a bug in 1.1.5 that prevented YP from ever working reliably. (I'm amazed that there were no bug reports.) IWBRNI someone could write a host.conf(5) manual page. Please look at the code before doing so; this version is somewhat more flexible in the format of its input.
* Add a missing backslash to get this to work again.jkh1994-08-081-1/+1
| | | | | Reviewed by: Submitted by: jkh
* Added YP domain name getting/setting support, for SunOS/old programwollman1994-08-083-7/+128
| | | | compatibility.
* Add back in the YP code from 1.1.5. (This attribution brought to youwollman1994-08-074-0/+1202
| | | | | by Theo de Raadt.) Added a new make flag variable, NO_YP_LIBC, which disables YP entirely. User-land programs to come later.
* More directory cleanup after YP merge.wollman1994-08-074-27/+8
|
* Add Sun RPC documentation, which should eventually go into our PSD.wollman1994-08-076-0/+9681
| | | | (I think I'm up to part 6.)
* Moving RPC stuff into libc, part 2.wollman1994-08-079-0/+2947
|
* Moving Sun RPC code into libc, part 1. Based on work done by a number ofwollman1994-08-0741-0/+8555
| | | | | people, including J.T. Conklin, Theo de Raadt, Paul Richards, and probably someone else who's going to flame me as soon as they see this message.
* Converted 'vmunix' to 'kernel'.dg1994-08-051-2/+2
|
* First crack at making libc work with the new make macros. It compiles onwollman1994-08-0589-106/+4729
| | | | | my machine, and a simple static (genassym) and shared (sysctl) executable both work. Still to be done: RPCand YP merge.
* Rewrite nlist to mmap the whole a.out file (at Davidg's suggestion).csgr1994-07-221-36/+47
| | | | | | This means that we don't have to do rounding calculations for page boundaries. (We do all our accesses via the mmapped area now.) Reviewed by:
* Pull in GNU2 fix for this from FreeBSD, allows ldexp.c to compile withrgrimes1994-05-272-0/+20
| | | | gcc2.x
*-----. This commit was generated by cvs2svn to compensate for changes in r1573,rgrimes1994-05-27731-0/+126759
|\ \ \ \ | | | | | | | | | | | | | | | which included commits to RCS files with non-trunk default branches.
| | | | * BSD 4.4 Lite Lib Sourcesrgrimes1994-05-272-0/+184
| | | |
| | | * BSD 4.4 Lite Lib Sourcesrgrimes1994-05-276-0/+2318
| | |
| | * BSD 4.4 Lite Lib Sourcesrgrimes1994-05-271-0/+971
| |
| * BSD 4.4 Lite Lib Sourcesrgrimes1994-05-27722-0/+123286
|
* BSD 4.4 Lite Lib Sourcesrgrimes1994-05-2712-0/+1884
|
* BSD 4.4 Lite bin Sourcesrgrimes1994-05-263-0/+444
|
* BSD 4.4 Lite usr.sbin Sourcesrgrimes1994-05-262-0/+158
|
* BSD 4.4 Lite Include Sourcesrgrimes1994-05-241-0/+125
|
* Add $Id$ to all, clean up multiple spacesrgrimes1994-02-212-4/+6
|
* WINE/user LDT support from John Brezak, ported to FreeBSD by Jeffrey Hsudg1994-01-315-0/+216
<hsu@soda.berkeley.edu>.
OpenPOWER on IntegriCloud