summaryrefslogtreecommitdiffstats
path: root/include
Commit message (Collapse)AuthorAgeFilesLines
...
* Support for more Sun compatible dlopen() and friends. Also added proper errorjkh1995-02-071-8/+3
| | | | | | handling. Reviewed by: gj Submitted by: Mark Diekhans <markd@grizzly.com>
* Define CLOCKS_PER_SEC.bde1995-02-031-2/+11
| | | | | | | | Define CLK_TCK only if _ANSI_SOURCE is not defined. Don't include <machine/limits.h> to get the definition of CLK_TCK. CLK_TCK should never have been defined there, and the inclusion polluted the namespace.
* Need _PATH_YP for ypserver stuff.wpaul1995-01-311-0/+1
|
* Declare useful functions (timelocal() and timegm())ache1994-12-261-0/+2
|
* Document some of the fields used by the new shlib code.nate1994-12-231-1/+6
| | | | Obtained from: NetBSD
* Reviewed by: Bruce Evansats1994-11-211-0/+10
| | | | | Add prototypes for the *rand48 family here in the moment to get them running again.
* By Bruce and Joerg suggestions and by looking into June versionache1994-11-171-15/+4
| | | | | of NetBSD simple #include <stdlib.h> into malloc.h Put #warning that this file is obsoleted ( by Joerg suggestion)
* Add malloc.h for better SYSV/Linux compatibility like mostache1994-11-152-2/+18
| | | | | providers (like SUN f.e.) does. malloc.h have comment about its SYSVism
* Clean up install rulespst1994-11-011-5/+4
|
* Delete the clean and cleandir target and let the bsd.prog.mk do theats1994-10-311-2/+2
| | | | | work. Error was with the private clean/cleandir pair, the obj under include/rpcsvc doesn't get cleaned out.
* Delete `vax' (and `i386' and `hp300' etc.) namespace pollution.wollman1994-10-301-6/+6
| | | | | | | Our one supported compiler always defines the double-underscore variant, so always use that. Noticed by Bruce Evans after a report by John Capo.
* Install f2c.h for FORTRAN support.ljo1994-10-262-2/+216
| | | | Obtained from: netlib.att.com
* Improve error detection and handling:bde1994-10-251-11/+13
| | | | | | | | | Reduce _JBLEN for the i386 to what is actually used. Encapsulate jmp_buf and sigjmp_buf in structs. Enlarge jmp_buf to the same size as sigjmp_buf. Declare *longjmp as non-returning. Remove stale comments about sig*jmp not being implemented.
* Remove EOF handling after Bruce explanation. This step returnsache1994-10-092-26/+0
| | | | | to 4.4 way to not allow EOF in ctype and now all signed chars (including '\377' which becomes EOF) converted to (unsigned char) properly.
* Handle EOF case in all macros by ANSI standard.ache1994-10-082-0/+42
| | | | | Cast all ints < 0 to (unsigned char) to fix common problem with sign extention on signed char.
* Don't install symlink frame.h -> machine/frame.h. <frame.h> is nonstandardbde1994-10-031-2/+2
| | | | and unused.
* Only reinstall osreldate.h if necessarypst1994-09-291-5/+8
|
* skey.h has moved elsewherepst1994-09-291-2/+2
|
* Define _PATH_FTPUSERSpst1994-09-291-0/+1
|
* get* rework and new bind codepst1994-09-252-197/+245
|
* Woops, include machine/exec.h, too.dg1994-09-241-0/+1
|
* Include imgact_aout.h rather than exec.hdg1994-09-241-1/+1
|
* Get rid of _PATH_UNIX completely; use getbootfile(3) instead.wollman1994-09-241-1/+8
| | | | | | | DANGER WILL ROBINSON! _PATH_UNIX is currently defined as the literal string "don't use this". I am of two minds about this myself, but wanted to get something into the tree as quickly as possible.
* Add a new field to the passwd structure, indicating which of the fields havewollman1994-09-201-0/+15
| | | | | | something in them, and which ones were left blank. This will be used for YP support in a few minutes, and for user login classes if anyone cares to implement them.
* Declare [gs]etdomainname().wollman1994-09-181-0/+2
|
* Install osreldate.h with the correct owner, group and mode. It is stillbde1994-09-151-1/+3
| | | | | | created at install time and not compared with the current version, so it can't be installed using install and the timestamp of the target gets clobbered.
* Don't install math.h if WANT_MSUN is defined. lib/msun has its ownbde1994-09-081-2/+5
| | | | math.h with many extensions.
* Declare functions that don't return as having attribute __dead2.bde1994-09-083-7/+7
|
* Add defines to allow pwd_mkdb to build databases in a specifiedgpalmer1994-09-071-0/+5
| | | | directory - removing the need to hardcode /etc into pwd_mkdb
* Use ${ECHO} instead of `echo' so that `make -s' is fairly quiet.bde1994-08-282-12/+12
|
* Changed idempotent strings to reflect directory area.paul1994-08-2110-20/+20
| | | | | Reviewed by: Submitted by:
* Made them idempotent.paul1994-08-212-0/+10
| | | | | Reviewed by: Submitted by:
* Added skey.h to Makefile and reformatted the list a bit.paul1994-08-201-7/+6
| | | | | Reviewed by: Submitted by:
* Brought it over form 1.1.5paul1994-08-201-0/+36
| | | | | Reviewed by: Submitted by: Paul Richards
* Make it easier for programs to figure out what revision of FreeBSD theywollman1994-08-101-1/+6
| | | | | | | | | | | | | | | | | | | | | | | | | 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.
* Make sure that rpcsvc headers actually get installed.wollman1994-08-071-2/+2
|
* Use the header files that are compatible with the code just moved overwollman1994-08-0712-142/+301
| | | | from 1.1.5.
* histedit.h is now installed from here, not from libedit.wollman1994-08-042-2/+175
|
* Install RPC headers from include, like they always should have been.wollman1994-08-0413-2/+1705
|
* Added glueo build rpcsvc stuff, and install floatingpoint.h.wollman1994-08-041-2/+4
|
* Moved 1.1.5 RPC service files from 1.1.5. Tese are the correct ones;wollman1994-08-0417-0/+2556
| | | | | | | the ones in /usr/src/lib/librpc/rpcsvc are somewhat bogus and will be deleted. Submitted by: Original work in 1.1 by J.T. Conklin.
* Add link.h to list of headers to install.rgrimes1994-05-281-1/+2
|
* Make comments about what is missing the same as in other makefiles.rgrimes1994-05-281-7/+1
| | | | | Remove the commented out stuff about X11 as the system sources should not be doing anything with X11.
* Update the Makefile to work correctly when copying and/or symlinkingrgrimes1994-05-262-27/+38
| | | | | | | | | | | | | | | | /usr/include. Make comment about mp.h missing and remove it from the list of files. Fix installation of ufs include files as this is now a tree ufs/{ffs,lfs, mfs,ufs}. Make setting of SHARED optional by makeing it SHARED?=. Comment out installation of X11 includes since it does not work for XFree86 until we get XFree86 to install as /usr/X11. Update _PATH_UNIX to be /kernel. Remove /usr/{contrib,old}/bin from _PATH_STDPATH.
*-. This commit was generated by cvs2svn to compensate for changes in r1539,rgrimes1994-05-2461-0/+6273
|\ \ | | | | | | | | | which included commits to RCS files with non-trunk default branches.
| | * BSD 4.4 Lite Include Sourcesrgrimes1994-05-243-0/+515
| |
| * BSD 4.4 Lite Include Sourcesrgrimes1994-05-2458-0/+5758
|
* BSD 4.4 Lite Include Sourcesrgrimes1994-05-241-0/+147
|
* This is the new link.h from Paul K. Keeping history is even probably a badjkh1994-02-131-89/+144
| | | | | | idea considering the old version (but I haven't time for attic surgery - this is just a caution). This is part of (and the major reason for) the new ld changes.
* Added link.h for shared libs.paul1993-11-031-0/+234
OpenPOWER on IntegriCloud