Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add a necessary include file for the catgets* routines. | jkh | 1995-03-30 | 2 | -2/+50 |
| | | | | Obtained from: NetBSD | ||||
* | add strhash.h for libc's new string hashing function. | jkh | 1995-03-26 | 2 | -3/+67 |
| | |||||
* | Add a couple of extra #defines for special keys to be embedded in the | wpaul | 1995-03-23 | 1 | -0/+4 |
| | | | | | | | | | | | | password databases: #define _PW_KEYPLUSBYNUM '5' /* special +@netgroup entries */ #define _PW_KEYMINUSBYNUM '6' /* special -@netgroup entries */ #define _PW_KEYPLUSCNT '7' /* number of +@netgroup entries */ #define _PW_KEYMINUSCNT '8' /* number of -@netgroup entries */ This is to help getpwent.c in libc build the +@netgroup/-@netgroup caches. | ||||
* | A little fix related to libm/msun migration. | phk | 1995-03-22 | 1 | -2/+2 |
| | | | | | Reviewed by: phk Submitted by: rgrimes | ||||
* | Comment out declaration of kvm_uread until it can be fixed correctly. | rgrimes | 1995-03-20 | 1 | -0/+2 |
| | |||||
* | Change u_long to unsigned long to be consistent. | rgrimes | 1995-03-20 | 1 | -1/+2 |
| | |||||
* | libkvm exports kvm_uread(), so do declare it in the header file. | joerg | 1995-03-19 | 1 | -0/+1 |
| | | | | Got apparent by Philippe's -Wall patch for /usr/bin. | ||||
* | Create osreldate.h from sys/conf/newvers.sh if we an find it. This | phk | 1995-03-19 | 1 | -2/+10 |
| | | | | | should take a completely ridiculous reboot out of the "make release" process... | ||||
* | Correct chmod of /usr/include/rpcsvc to match mtree file. | rgrimes | 1995-03-18 | 1 | -2/+2 |
| | |||||
* | Temporarily add mkdir/chown of /usr/include/${LUDIR} so that things | rgrimes | 1995-03-18 | 1 | -1/+3 |
| | | | | | are consistent with the mtree file. These and all other mkdir/chown/ chmod calls shall be removed in a future version of this file. | ||||
* | Forward-declare `struct rpc_err' so that it isn't declared inside a | bde | 1995-03-12 | 1 | -1/+2 |
| | | | | prototype when <rpc/clnt.h> isn't included. | ||||
* | make sys_nerr __const. | phk | 1995-03-04 | 1 | -1/+1 |
| | | | | | Reviewed by: phk Submitted by: ollivier | ||||
* | Weak symbol support from NetBSD. This should bring us in sync with the | nate | 1995-03-04 | 1 | -5/+10 |
| | | | | | | | | NetBSD ld code except for local changes for dlopen() and friends and the hashing on the minor value of the shlibs. We should be binary compatible now with all their libraries. Obtained from: NetBSD | ||||
* | The bootparam protocol file needs some extra includes in FreeBSD in order | wpaul | 1995-02-26 | 1 | -1/+5 |
| | | | | | | | | | to properly resolve some definitions in <nfs/nfs.h>. I suppose nobody noticed this before because no one's tried to build bootparamd in FreeBSD until now. (Yes, you read that right: I've got bootparamd ready to go. And rarpd is on the way. :) | ||||
* | Remove a couple of nested comments. | phk | 1995-02-24 | 2 | -4/+6 |
| | |||||
* | Make the argument list for the (non-Posix) fchown() consistent with | joerg | 1995-02-16 | 1 | -1/+1 |
| | | | | | | Posix chown(), and also with the man page. Submitted by: Doug Rabson <dfr@render.com> | ||||
* | Define CLK_TCK right. | bde | 1995-02-08 | 1 | -1/+1 |
| | |||||
* | Support for more Sun compatible dlopen() and friends. Also added proper error | jkh | 1995-02-07 | 1 | -8/+3 |
| | | | | | | handling. Reviewed by: gj Submitted by: Mark Diekhans <markd@grizzly.com> | ||||
* | Define CLOCKS_PER_SEC. | bde | 1995-02-03 | 1 | -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. | wpaul | 1995-01-31 | 1 | -0/+1 |
| | |||||
* | Declare useful functions (timelocal() and timegm()) | ache | 1994-12-26 | 1 | -0/+2 |
| | |||||
* | Document some of the fields used by the new shlib code. | nate | 1994-12-23 | 1 | -1/+6 |
| | | | | Obtained from: NetBSD | ||||
* | Reviewed by: Bruce Evans | ats | 1994-11-21 | 1 | -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 version | ache | 1994-11-17 | 1 | -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 most | ache | 1994-11-15 | 2 | -2/+18 |
| | | | | | providers (like SUN f.e.) does. malloc.h have comment about its SYSVism | ||||
* | Clean up install rules | pst | 1994-11-01 | 1 | -5/+4 |
| | |||||
* | Delete the clean and cleandir target and let the bsd.prog.mk do the | ats | 1994-10-31 | 1 | -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. | wollman | 1994-10-30 | 1 | -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. | ljo | 1994-10-26 | 2 | -2/+216 |
| | | | | Obtained from: netlib.att.com | ||||
* | Improve error detection and handling: | bde | 1994-10-25 | 1 | -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 returns | ache | 1994-10-09 | 2 | -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. | ache | 1994-10-08 | 2 | -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 nonstandard | bde | 1994-10-03 | 1 | -2/+2 |
| | | | | and unused. | ||||
* | Only reinstall osreldate.h if necessary | pst | 1994-09-29 | 1 | -5/+8 |
| | |||||
* | skey.h has moved elsewhere | pst | 1994-09-29 | 1 | -2/+2 |
| | |||||
* | Define _PATH_FTPUSERS | pst | 1994-09-29 | 1 | -0/+1 |
| | |||||
* | get* rework and new bind code | pst | 1994-09-25 | 2 | -197/+245 |
| | |||||
* | Woops, include machine/exec.h, too. | dg | 1994-09-24 | 1 | -0/+1 |
| | |||||
* | Include imgact_aout.h rather than exec.h | dg | 1994-09-24 | 1 | -1/+1 |
| | |||||
* | Get rid of _PATH_UNIX completely; use getbootfile(3) instead. | wollman | 1994-09-24 | 1 | -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 have | wollman | 1994-09-20 | 1 | -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(). | wollman | 1994-09-18 | 1 | -0/+2 |
| | |||||
* | Install osreldate.h with the correct owner, group and mode. It is still | bde | 1994-09-15 | 1 | -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 own | bde | 1994-09-08 | 1 | -2/+5 |
| | | | | math.h with many extensions. | ||||
* | Declare functions that don't return as having attribute __dead2. | bde | 1994-09-08 | 3 | -7/+7 |
| | |||||
* | Add defines to allow pwd_mkdb to build databases in a specified | gpalmer | 1994-09-07 | 1 | -0/+5 |
| | | | | directory - removing the need to hardcode /etc into pwd_mkdb | ||||
* | Use ${ECHO} instead of `echo' so that `make -s' is fairly quiet. | bde | 1994-08-28 | 2 | -12/+12 |
| | |||||
* | Changed idempotent strings to reflect directory area. | paul | 1994-08-21 | 10 | -20/+20 |
| | | | | | Reviewed by: Submitted by: | ||||
* | Made them idempotent. | paul | 1994-08-21 | 2 | -0/+10 |
| | | | | | Reviewed by: Submitted by: | ||||
* | Added skey.h to Makefile and reformatted the list a bit. | paul | 1994-08-20 | 1 | -7/+6 |
| | | | | | Reviewed by: Submitted by: |