summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Don't create an unused obj directory.bde1998-02-205-9/+19
|
* Change MACHINE references to MACHINE_ARCH.jb1998-02-201-3/+3
|
* Change MACHINE references to MACHINE_ARCH.jb1998-02-204-11/+11
|
* Add #include <string.h> to get prototypes.jb1998-02-201-1/+2
|
* The NetBSD getlogin syscall has a different name.jb1998-02-201-0/+4
|
* Fix a bogus cast for a bogus pointer check. This only checks if thejb1998-02-201-1/+1
| | | | | pointer is 4-byte aligned. On a 64-bit machine it probably should check that the pointer is 8-byte aligned (eh, Bruce?) 8-)
* NetBSD kernels don't have issetugid(), so #ifdef this out whenjb1998-02-201-1/+5
| | | | | building FreeBSD's libc to run with a NetBSD kernel. We'll get to the alpha kernel later, I promise. 8-)
* Add #include <string.h> to get prototypes.jb1998-02-205-0/+5
|
* Add alpha support. m68k crept in too. Oops. 8-)jb1998-02-201-1/+16
|
* Avoid an uninitialised variable warning from gcc. I bet some peoplejb1998-02-201-1/+1
| | | | don't like me doing this, but I want to see clean compiles. 8-)
* Test for the existance of ${MACHINE}/boot before trying to build it.jb1998-02-201-2/+2
| | | | | The PC98 stuff in this makefile should be removed and that system should build with MACHINE=pc98 and MACHINE_ARCH=i386.
* Remove the casts on signal() returns and compare the returned valuejb1998-02-201-5/+5
| | | | | | with SIG_ERR to detect the error case. Suggested by: bde.
* Updated my e-mail address.hosokawa1998-02-201-2/+2
|
* Updated my e-mail addresses.hosokawa1998-02-204-12/+8
|
* gcc wants to see long long variables passed to %q printf formats, sojb1998-02-202-9/+9
| | | | cast to that instead of quad_t.
* time() needs a pointer to a time_t, but tv_sec in a timeval is ajb1998-02-201-2/+4
| | | | | long (yuk). So give time() what it wants and let the compiler promote the variable when it is assigned to tv_sec.
* localtime() needs a pointer to time_t which is not necessarily a long.jb1998-02-201-1/+1
| | | | So use a time_t in the chdr structure so that no casts are required.
* Can't use ~0L to compare against a uint32. Use ~((uint32) 0) instead.jb1998-02-201-2/+2
|
* Add #include <string.h> to get prototypes.jb1998-02-201-1/+2
|
* Initialise variable that gcc lies awake at night worrying about.jb1998-02-201-2/+2
|
* Add #include <string.h> to get prototypes.jb1998-02-204-3/+7
|
* Replace incomplete malloc prototype with #include <stdlib.h>jb1998-02-201-2/+2
| | | | to get the proper one.
* Add #include <stdlib.h> to get prototype for malloc().jb1998-02-201-0/+1
|
* Add #include <string.h> to get prototypes.jb1998-02-206-4/+10
|
* Add #include <stdlib.h> to get prototype for malloc(). Without this,jb1998-02-201-1/+2
| | | | | the compiler assumes an int return. On alpha this is enough to ruin ya day.
* Don't propogate *_DEBUG options. Use DEBUG and recompilesteve1998-02-203-9/+4
| | | | | | only those parts of the kernel that you are interested in. Prodded by: Bruce Evans <bde@zeta.org.au>
* Add #include <string.h> to get prototypes for functions that gccjb1998-02-205-0/+5
| | | | has builtin (and wants to know that the prototypes match).
* Arghhh.... another missing backslash. Yes, I feel stupid.wpaul1998-02-201-2/+2
|
* Reserve Major device 92 for the bktr (Bt848 video capture driver)ahasty1998-02-202-6/+6
|
* Move Luigi's I2CWR ioctl from the video_ioctl section to theahasty1998-02-204-46/+56
| | | | | tuner_ioctl section. Changed Major device from 79 to 92 and reserved our Major device number -- hasty@star-gate.com
* Cleanup the lpt for probe code.steve1998-02-201-24/+16
| | | | | PR: 5773 Submitted by: Dag-Erling Coidan Smorgrav <dag-erli@ifi.uio.no>
* Add an LPT_DEBUG option.steve1998-02-202-2/+6
| | | | | PR: 5773 Submitted by: Dag-Erling Coidan Smorgrav <dag-erli@ifi.uio.no>
* Be sure to set the value of Tbl.str_numstr before any call tosteve1998-02-201-1/+2
| | | | | | do_order or randomize so that they actually work. PR: 5791
* Revert sosend() to its behavior from 4.3-Tahoe and before: iffenner1998-02-191-3/+7
| | | | | | | | | | | | | so_error is set, clear it before returning it. The behavior introduced in 4.3-Reno (to not clear so_error) causes potentially transient errors (e.g. ECONNREFUSED if the other end hasn't opened its socket yet) to be permanent on connected datagram sockets that are only used for writing. (soreceive() clears so_error before returning it, as does getsockopt(...,SO_ERROR,...).) Submitted by: Van Jacobson <van@ee.lbl.gov>, via a comment in the vat sources.
* Make it more convenient to query NICs other than InterNIC. Explain in thewollman1998-02-192-34/+81
| | | | man page what each database contains.
* Limit check for target to smaller section of makefile.eivind1998-02-191-3/+4
|
* Move the 'sw' device off block major #1, which is now occupied by 'wfd'.msmith1998-02-193-4/+6
|
* No binutils yet 8-(, and a few programs that need porting to alpha.jb1998-02-191-3/+7
| | | | Make them i386 specific for now.
* Sync with sys/i386/conf/majors.1.31.kato1998-02-191-2/+3
|
* Sync with sys/i386/conf/files.i386 revision 1.191.kato1998-02-192-6/+2
|
* Reenable building of /etc/passwd.guido1998-02-191-3/+3
| | | | Pointed out by: "Julie M. Juracich" <julie@xaqti.com>
* Convert to mdoc + typos.charnier1998-02-195-1666/+1405
|
* Change the bootstrap makefile inclusion to be general based on thejb1998-02-191-4/+4
| | | | | | MACHINE. This lets me play with porting to m68k too. 8-) That is a good test for portability because MACHINE != MACHINE_ARCH and m68k is big endian.
* Just one of these libs left to port to alpha.jb1998-02-191-5/+5
|
* With the exception of tools that should come from GNU binutils,jb1998-02-191-107/+176
| | | | | this makefile will bootstrap all libraries and tools needed to build the system.
* (1) Don't disable "deinstall" if IGNORE is set.asami1998-02-191-2/+3
| | | | | | | | | I don't know what the hell I was thinking in: rev. 1.268 (2) Create ${PREFIX} before calling mtree if it doesn't exist. This may not be the best solution, but pre-install is called after mtree so there really isn't any way to fix this from the port Makefiles and thus has to be done here.
* MFMP: Allow 8 character login names.brian1998-02-195-27/+57
| | | | Do the login()/logwtmp()/logout() as id 0.
* 91 vinum RAID fsjkh1998-02-192-2/+4
| | | | Requested by: grog
* Don't create a ${PROG} target if it already exists.eivind1998-02-191-1/+3
|
* Style police service brought to you by: bdeeivind1998-02-193-11/+7
|
OpenPOWER on IntegriCloud