summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Change a couple 'make' to '${MAKE}'.steve1998-05-041-6/+6
| | | | | PR: 6341 Submitted by: Niall Smart <rotel@indigo.ie>
* Work around some VM bugs, the worst being an overly aggressivedyson1998-05-044-26/+44
| | | | | swap space free calculation. More complete fixes will be forthcoming, in a week.
* Clarify use of 'if' capability.steve1998-05-042-6/+32
| | | | | PR: 6499 Submitted by: Doug Barton <Studded@san.rr.com>
* Force BOOTSTRAP mode all the time while the headers are broken on alphajb1998-05-041-1/+5
| | | | as the result of i386 changes.
* Add NEC PC-98 chipsets.kato1998-05-041-1/+18
|
* Be picky about the format of the commandline and cleanupsteve1998-05-031-6/+16
| | | | | | | a warning related to qsort. PR: 6420 Submitted by: Ruslan Ermilov <ru@ucb.crimea.ua>
* Add the year to the 'wtmp begins...' line.steve1998-05-031-2/+2
| | | | | PR: 6421 Submitted by: phk
* Typo fixesjraynard1998-05-033-6/+9
|
* Typo fix.jraynard1998-05-031-2/+2
|
* Pedantry (NULL -> NUL).jraynard1998-05-031-1/+1
|
* Don't imply sigset_t == int.jraynard1998-05-031-1/+1
|
* Remove (now) invalid .Xr trsp 8steve1998-05-031-1/+0
| | | | | PR: 6494 Submitted by: Don Morrison <dmorrisn@u.washington.edu>
* Typo and grammer fixes.steve1998-05-031-7/+7
| | | | | PR: 6482 Submitted by: Allen Campbell <allenc@verinet.com>
* Avoid stairstep effect on output of 'if=...' file.steve1998-05-031-2/+6
| | | | | PR: part of 6492 Submitted by: Chip Norkus via Doug White <studded@san.rr.com>
* Patches are given here for pcisupport.c to recognise most of VIAphk1998-05-031-1/+22
| | | | | | | | | | Technologies' Socket 7 chipsets. This covers all of the Apollo chipsets except the Master (82C570) and the MVP3, and it also covers the cheap VXPro and VXTWO knockoffs of the VP1 and VPX. PR: 6481 Reviewed by: phk Submitted by: Lee Cremeans <lcremean@tidalwave.net>
* Put named-bootconf (the script to convert named.boot to named.conf) inpeter1998-05-031-2/+2
| | | | | /usr/sbin rather than in /etc/namedb (make install isn't supposed to touch /etc)
* Add nsupdatepeter1998-05-031-2/+2
|
* Update for bind-8peter1998-05-034-17/+18
|
* Update for bind-8. Also use /proc in preference to the (seemingly) alwayspeter1998-05-032-17/+18
| | | | broken ps(1).
* These are no longer shipped with bind, but are a well establishedpeter1998-05-036-10/+160
| | | | interface that's simple to maintain.
* New bind8 programpeter1998-05-031-0/+10
|
* Update for named v8peter1998-05-033-24/+50
|
* Add libbindpeter1998-05-031-2/+2
|
* Build libbind for named and friends (not installed in /usr/lib)peter1998-05-031-0/+42
|
* Update for some -current quirks, and some other things taken from thepeter1998-05-031-1/+4
| | | | | | *bsd bind-8 ports. (our setpwent() was changed to return void, but our setgrent() returns int still!)
* Old files moved/replaced/obsoleted by bind-8peter1998-05-03108-45044/+0
|
* Backed out previous commit. chown(8) doesn't follow symlinks bybde1998-05-031-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | default, at least in BSD. This used to be automatic, because chown(2) didn't follow symlinks. When chown(2) was changed to follow symlinks in BSD4.4, chown(8) was changed to not follow symlinks by default. The previous commit broke this. The first victim was bsd.prog.mk, which uses a plain chown in an attempt to change the ownership of the symlinks to `dm' in /usr/games. This fails when it is done before dm is installed, or messes up the ownership of dm if dm is installed. Unfixed problems: 1. When lchown(2) was implemented, chown(8) wasn't changed to implement the historical behaviour of changing ownership of symlinks. I'm not sure if it should have been. The -HLP options give more complete control, but they unfortunately don't apply unless the -R option is specified (a problem shared with other commands, e.g., cp; I guess we're supposed to use -R even for non-recursive traversals). 2. If we implement the historical behaviour, then -h would become a no-op and should be left undocumented. 3. The man page suggests that without option -h, all symlinks (to files specified in the command line?) are followed. It's not clear what "the file" is. These bugs were introduced when -h was documented. 4. The correct interaction of -h with the other flags is not clear.
* This commit was generated by cvs2svn to compensate for changes in r35629,peter1998-05-03260-4614/+80335
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Import (trimmed) ISC bind-8.1.2-t3b. This will be updated to 8.1.2 onpeter1998-05-03260-4614/+80335
| | | | | | | | | | | | final release. Obtained from: ftp.isc.org
* | Add PCI device IDs for Intel BX PCI chip-set components.se1998-05-021-1/+7
| | | | | | | | Submitted by: Steinar Haug <sthaug@nethelp.no>
* | Resolve some unexpected differences when comparing with the 2.2 version.peter1998-05-021-2/+10
| | | | | | | | | | | | One bug was relatively harmless (select's timeout had an uninitialized tv_usec), the other I'm not so sure.. (neglected to catch select returns less than zero). Both of these were irrelevant on kernels with poll().
* | Update libc dns code to 4.9.7-T1B level. This involved chopping out largepeter1998-05-023-249/+753
| | | | | | | | | | | | chunks of res_comp.c and replacing it with chunks of bind-8.1.1's resolver code. (There are no interface changes though) The other parts are better bounds checking related.
* | Don't ignore symbolic links in the absence of -h, -H or -L options.helbig1998-05-021-2/+1
| | | | | | | | Instead change the user ID/group ID of the file that the link points to.
* | Added patch to build-tools (now needed to make gdb, sigh).bde1998-05-021-1/+2
| | | | | | | | Pointed out by: andreas
* | This commit was generated by cvs2svn to compensate for changes in r35618,peter1998-05-0212-332/+1309
|\ \ | |/ | | | | which included commits to RCS files with non-trunk default branches.
| * Import ISC bind v4.9.7-T1B as a reference. We may need this if we updatepeter1998-05-0212-332/+1309
| | | | | | | | -stable to 4.9.7 instead of 8.1.2 for whatever reason.
* | Back out complex and semi-correct workaround and commit one line fixache1998-05-022-9/+6
| | | | | | | | for 'echo' problem instead
* | Another minor cleanup of the split code. Make sure that pages aredyson1998-05-021-2/+15
| | | | | | | | | | busied during the entire time, so that the waits for pages being unbusy don't make the objects inconsistant.
* | Cleanup in the child, not the parent.jb1998-05-023-6/+6
| | | | | | | | Submitted by: Tor Egge <Tor.Egge@idi.ntnu.no>
* | If not interactive, we need the traditional behaviour of the inputjb1998-05-022-4/+8
| | | | | | | | | | | | | | | | | | | | not being echoed to the output. So as a _hack_ to get the world building again, redirect the readline rl_outstream to stderr when not interactive. The proper way to handle non-interactive mode is to read from stdin and don't worry about edit mode, but this is GNU so it's not worth the time thinking about. I'm already pissed off that I even had to look at this "nice code".
* | Seatbelts for vm_page_bits() in case a file offset is passed in rather thanpeter1998-05-021-2/+3
| | | | | | | | | | | | | | | | | | | | | | the page offset. If a large file offset was passed in, a large negative array index could be generated which could cause page faults etc at worst and file corruption at the least. (Pages are allocated within file space on page alignment boundaries, so a file offset being passed in here is harmless to DTRT. The case where this was happening has already been fixed though, this is in case it happens again). Reviewed by: dyson
* | Support 1.44MB floppy disk.kato1998-05-024-6/+25
| | | | | | | | | | Submitted by: Nobuyuki Koganemaru <kogane@koganemaru.co.jp>, NOKUBI Hirotaka <hnokubi@yyy.or.jp>
* | Support PC-98 machine.kato1998-05-025-5/+15
| |
* | Go back to version 1.16 - it was correct the way it was.brian1998-05-011-6/+6
| | | | | | | | Pointed out by: bde
* | Do not store the same config.h twice - use one from bc directoryache1998-05-012-71/+2
| |
* | Add missing -DHAVE_CONFIG_Hache1998-05-011-2/+2
| |
* | Don't depend on "implicit int".bde1998-05-012-5/+5
| |
* | Added -ansi to CWARNFLAGS so that ANSI errors don't come back.bde1998-05-012-4/+4
| |
* | Support compiling with `gcc -ansi'. Just use __inline instead of inline.bde1998-05-011-2/+5
| | | | | | | | | | | | | | [__]inline is only used to bloat the code here. It gives a separate copy of all the strings for each time this header is included... Fixed misuse of __P(()).
* | Oops, the previous commit should have changed `i386' to `__i386__',bde1998-05-014-11/+11
| | | | | | | | not `__i386'.
OpenPOWER on IntegriCloud