summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* The etc-sendmail.cf target is in src/etc/sendmail/Makefile, notjb1998-08-071-2/+2
| | | | src/etc/sendmail/cf/Makefile. This was an obstacle to 'make release'.
* Remove a stupid hack of mine which prevented PCI io memory access on the alpha.dfr1998-08-071-5/+2
|
* Add support for type1 pci configuration cycles for cia (not pyxis yet).dfr1998-08-071-26/+61
| | | | Submitted by: Andrew Gallatin <gallatin@cs.duke.edu>
* Add some more useful macros.dfr1998-08-071-1/+7
| | | | Submitted by: Andrew Gallatin <gallatin@cs.duke.edu>
* Update so that it should build a working kernel for the platforms supporteddfr1998-08-072-16/+54
| | | | so far.
* Tweaks to console support.dfr1998-08-071-31/+22
| | | | Fixes for AS 600.
* unifdef -UISOphk1998-08-071-119/+1
| | | | Inspired by bdes comment to PR: 7419
* Games primes and factor don't understand hexadecimals.phk1998-08-071-13/+18
| | | | | | | | This would make these `games' somewhat useful tools. PR: 7402 Reviewed by: phk Submitted by: Timo J. Rinne <tri@iki.fi>
* This PR contains additional magic for file(1) describingphk1998-08-071-0/+50
| | | | | | | | | | | various adventure game data files. from Allen Garvin <earendil@faeryland.tamu-commerce.edu> Edited by Dave Chapeskie <dchapes@ddm.on.ca> Jun 28, 1998 PR: 7466 Reviewed by: phk Submitted by: The Frobozz Magic Homing Pigeon Company
* None of the header files for the packet capture libraryphk1998-08-073-0/+30
| | | | | | | | are suitable to include in a C++ file. PR: 7229 Reviewed by: phk Submitted by: Craig Spannring <cts@internetcds.com>
* Add snprintf.c to SRCS so that the function quad_to_string exists. Thejb1998-08-061-1/+1
| | | | | | | | snprintf function itself is still #ifdef'd out by conf.h. This allows this program to link when compiled without optimization. With optimization, the call to quad_to_string gets removed by the compiler. Unfortunately the linker still links in the quad_to_string function even though it isn't called. 8-(
* Fix LIBDIR (for aout/ELF).markm1998-08-0610-13/+17
|
* Don't mess around in OBJDIR for includes, and remove some warnings.eivind1998-08-0611-28/+31
|
* Fix some things Simon had broken, basically making LINT compile again.eivind1998-08-061-9/+3
| | | | | Submitted by: Simon Shapiro <shimon@simon-shapiro.org> Pointed out by: bde
* Update for Perl 5.005_01markm1998-08-061-3/+3
|
* Fix some definitions.yokota1998-08-062-12/+18
| | | | | PR: conf/7497 Submitted by: Mas.TAKEMURA
* The control code ^_ (0x1f) should really be called `us' rather than `ns'.yokota1998-08-0637-75/+75
|
* The control code ^_ (0x1f) should really be called "us" rather than "ns".yokota1998-08-062-3/+4
| | | | | In the mean time, accept both "us" and "ns" in the keymap file as ^_ for the compatibility with the existing keymap files.
* Port syscons to the alpha. The driver itself has moved to sys/isa as it willdfr1998-08-0611-116/+241
| | | | | | | | | hopefully become a portable driver usable by all architectures. The api support files have had to be copied to sys/alpha/include since userland programs expect to find them in <machine/*.h>. All the revision history of the i386 syscons has been retained by a repository copy.
* The daemon, snake and star savers should refuse to load if the currentyokota1998-08-069-9/+36
| | | | | video mode is the VESA mode, because they cannot work properly under the VESA mode support as in the current form.
* Support files for ISA bus.dfr1998-08-062-0/+260
|
* Protect all modifications to paging_in_progress with splvm(). The i386dfr1998-08-067-19/+38
| | | | | | | | | managed to avoid corruption of this variable by luck (the compiler used a memory read-modify-write instruction which wasn't interruptable) but other architectures cannot. With this change, I am now able to 'make buildworld' on the alpha (sfx: the crowd goes wild...)
* Correct the description of skeyaccess(). It determines whether Unixjdp1998-08-051-5/+7
| | | | | | passwords are permitted, not whether S/Key passwords are permitted. This manual page could use a good going over.
* Add Id keywordbrian1998-08-056-4/+18
|
* Removed prototype for gone-away hzto().bde1998-08-051-39/+37
| | | | | Fixed disorder and missing K&R support in prototypes for interrupt functions.
* Removed unused function hzto().bde1998-08-052-36/+2
|
* Converted the last instance of hzto() to tvtohz().bde1998-08-051-3/+3
|
* Converted the second last instance of hzto() to tvtohz().bde1998-08-052-40/+30
| | | | | | | | | | | | | | | | | Fixed nearby bugs (in linux_alarm()): - the itimer for the alarm was relative to the epoch instead of relative to the boot time. This was harmless because the itimer's interval is 0. - the seconds arg was not checked for validity before converting it to a possibly different value. - printf format errors. Improvements: Don't use splclock(). splsoftclock() suffices. Don't complicate things by micro-optimizing interrupt latency. Minor improvements: Various micro-optimizations to exploit the specialness of the alarm itimer and the value 0.
* Move assignment of cur_rlp to after the acquisition of the list lock.dg1998-08-051-2/+3
| | | | | PR: 7496 Submitted by: Stefan Eggers <seggers@semyam.dinoco.de>
* Don't open /dev/mem until we need it, most cases we don't.phk1998-08-051-26/+25
|
* (1) Rename variable "USE_X11" to "USE_X_PREFIX" to make clearer what itasami1998-08-051-30/+25
| | | | | | | | | | | | | | | | | | | | | | | means (change PREFIX to ${X11BASE}) and add a new variable USE_X11 which means "this port requires the X window system (actually the library)". USE_X_PREFIX implies USE_X11. USE_X11 adds a LIB_DEPENDS to libX11 with the x11/XFree86 port. Reviewed by: the ports list, hoek in particular (2) Remove NO_CONFIGURE and NO_PATCH, which never meant anything. Yell if they are defined. Reviewed by: the ports list (3) Add new variable OSREL, which is automatically set to the numeric OS version (e.g., 2.2.1, 3.0). It can be used to refer to files in gcc installations, for instance. (4) Finally remove EXEC_DEPENDS hack after all these years. Submitted by: hoek (5) Put quotes around some echo ${*_DEPENDS} statements so they won't blow up when the variables include regular expressions like "qt\\.1\\.\\\(33\\\|40\\\):${PORTSDIR}/x11/qt140".
* Define ss_size in struct sigaltstack as size_t instead of int.dfr1998-08-052-4/+14
|
* Use <signal.h> instead of <sys/signal.h>.dfr1998-08-055-5/+5
|
* Move the include of <machine/ansi.h> to before <sys/signal.h>.dfr1998-08-051-1/+1
|
* PR: 7488thepish1998-08-052-4/+4
| | | | | Submitted by: lhecking@nmrc.ucc.ie merge from stable
* Find sendmail source under contrib now.cwt1998-08-052-4/+4
|
* Update DPT driver from 1.4.3 to 1.4.5eivind1998-08-0512-307/+545
| | | | Submitted by: Simon Shapiro <shimon@simon-shapiro.org>
* fix broken loopback code for ddp (again)julian1998-08-042-7/+43
| | | | Submitted by: Stefan Bethke <stb@hanse.de>
* - On second thought, attempt to get the read-only lock, but don'tnate1998-08-041-1/+16
| | | | | | | consider it a exit failure if it doesn't work. This means that root processes can safely get the lock, but normal processes can still use the 'pw' utility to get information (which may change out from under them.)
* - Removed read-only lock from 'pw'. This removes portions of the FIXnate1998-08-041-22/+1
| | | | | | | | from PR/6787, but allow non-root users to use pw to get password information. However, this should be safe since the fixes for disallowing multiple instances from modifying the DB are still intact. Bug noted by: dima@best.net (Dima Ruban)
* dgm uses devices cuaM* and ttyM*brian1998-08-042-2/+106
| | | | Submitted by: "IBS / Andre Oppermann" <andre@pipeline.ch>
* Add driver dgm - for the Digiboard PC/Xembrian1998-08-047-15/+25
| | | | | | | Submitted by: "IBS / Andre Oppermann" <andre@pipeline.ch> DEVFS additions: brian dgm gets major number 101.
* Add driver dgm - for the Digiboard PC/Xembrian1998-08-048-0/+14046
| | | | | Submitted by: "IBS / Andre Oppermann" <andre@pipeline.ch> DEVFS additions: brian
* Fully enable the optimization of not building dependencies unless NOCLEANbde1998-08-041-2/+2
| | | | is set. It was disabled in the -j case. See rev.1.173.
* Remove old sendmail (to the Attic)peter1998-08-04223-89246/+0
|
* Descend into etc always; src/etc/sendmail/Makefile has make.conf hookspeter1998-08-041-2/+2
| | | | | | | | for building and installing a local sendmail.cf.. I'm a little nervous about the implications of having an obj dir built under etc (to get to the obj dir for sendmail), but the make rules appear to DTRT.
* Descend into sendmail directory and update hooks for make release so thatpeter1998-08-041-3/+5
| | | | it has a chance of working.
* Builder for sendmail.cf's, in particular freebsd.cf.peter1998-08-041-0/+49
| | | | | | This needs to be revisited - we need a simple way of building/installing these at runtime from the installed system's /etc/mail directory. freebsd.mc,v and freefall.mc,v have been repository copied here.
* Build mail.local and smrsh (when building sendmail)peter1998-08-041-2/+6
|
* Build sendmail-8.9.1 smrshpeter1998-08-041-0/+9
|
OpenPOWER on IntegriCloud