summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Make way for the contrib_amd bmake frame work.obrien1998-08-27187-46553/+0
|
* Use explicitly sized types when formatting cylinder groups.dfr1998-08-271-7/+7
|
* rpcgen our own mount.h, nfs_prot.h, mount_xdr.c, and nfs_prot_x.cobrien1998-08-273-3/+17
| | | | for NFSv3 support
* accidently changed some white spaceobrien1998-08-271-2/+2
|
* Only build the old boot loader on i386 if aout. The new loader willjb1998-08-271-1/+5
| | | | eventually be built if elf.
* Properly create db files vs. dbm files.obrien1998-08-271-33/+18
| | | | Obtained from: NetBSD
* Add CFS options to LINT, though commented out for now.jkh1998-08-273-3/+15
| | | | Submitted by: Robert Baron <rvb@sicily.odyssey.cs.cmu.edu>
* Add VT_CFS type.jkh1998-08-271-2/+2
| | | | Submitted by: Robert Baron <rvb@sicily.odyssey.cs.cmu.edu>
* NULLFS_DIAGNOSTICS and PCVT_SCANSET=2 listed twice.obrien1998-08-273-9/+3
|
* Catch more cases where the CDROM has been mounted.jkh1998-08-272-2/+8
|
* Hope I haven't missed anything or forgotten to credit anybody. (Byasami1998-08-271-189/+351
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | the way, most of the things below are "Reviewed by: hoek" as well.) The changes are (roughly in order of appearance): (1) Revamp comments at beginning of file. Major rewrites. Reorder them into more relevant sections. Make clear which ones are user variables and not to be set in ports' Makefiles. Reviewed by: hoek (well, he's the only one who sent any comments) (2) Include ${.CURDIR}/Makefile.local if it exists. This is a local configuration file (ala rc.conf.local and make.conf.local) so please do not commit a file with this name to the repository. Suggested by: dillon (3) MANCOMPRESSED now takes three possible values: "yes", "no" and "maybe". (It used to be a binary variable -- the old behavior is now accomplished by "MANCOMPRESSED=yes". Ports that defined this variable to other values have been corrected.) "yes" means the manpages are installed compressed, "no" means they are not, and "maybe" means the port already respects the value of NOMANCOMPRESS. The default is "yes" for USE_IMAKE ports without NO_INSTALL_MANPAGES, and "no" otherwise. Add "compress-man" target and move manpage {,de}compression there. Reviewed by: hoek etc. and a full build of the ports tree (4) Add LIBDIR="${LIBDIR}" to MAKE_ENV. Makes easier to "fix" ports for /usr/lib/aout mess. Submitted by: ohashi@mickey.ai.kyutech.ac.jp (Takeshi Ohashi) (5) Change ${TMPPLIST} from ${WRKDIR}/PLIST.mktmp to ${WRKDIR}/.PLIST.mktmp. Suggested by: hoek Strongly seconded by: steve (6) Change a couple more relative pathnames to absolute ones. Submitted by: hoek (7) Move checksum into real-extract. (8) Change way rules are chained. Instead of: build: configure ${BUILD_COOKIE} ${BUILD_COOKIE}: @cd ${.CURDIR} && ${MAKE} ${.MAKEFLAGS} real-build we now have build: ${BUILD_COOKIE} ${BUILD_COOKIE}: @cd ${.CURDIR} && ${MAKE} ${.MAKEFLAGS} configure @cd ${.CURDIR} && ${MAKE} ${.MAKEFLAGS} real-build Other than being more PC (pmake clean), this really speeds up skipping ports already built. For instance, "make package" on a fully packaged games subtree used to take 269 seconds on average, now it's 45 seconds on average. The flip side of this is that it will create more processes when the targets actually chain, but when you're actually compiling things, your make is creating half a bazzilion processes anyway so I don't think it matters. (9) ${TMPPLIST} is now a real dependency. Create "generate-plist" target to generate ${TMPPLIST}. Make sure it's called when needed (usually between do-install and post-install), and that the required files exist. (10) Change some messages so we can tell where "make index" failed. (11) Check if LIB_DEPENDS really generated the required shared lib or not. Seconded by: "Brent J. Nordquist" <bjn@visi.com>
* Add "deinstall" to list of targets. This is only fair since "install" andasami1998-08-261-3/+4
| | | | "reinstall" are already here. :)
* Reviewed by: asami@freebsd.org (Satoshi Asami)dillon1998-08-263-3/+18
| | | | | Give make.conf a make.conf.local capability similar to rc.conf's rc.conf.local capability. Eases large-site administration.
* Don't automatically restart syscalls for the signals that the threadjb1998-08-264-4/+4
| | | | kernel needs.
* Back out most of the last commit. It created problems with sigpause.jb1998-08-263-78/+3
|
* Fix an spl protection botch.gibbs1998-08-261-3/+3
| | | | Submitted by: Gene Stark <stark@FreeBSD.ORG>
* Remove -c restrictions from previous commit.des1998-08-261-13/+1
|
* Fix some OpenBSD/alpha warningsbrian1998-08-267-11/+16
|
* Remove redundant include file.brian1998-08-261-2/+1
|
* Put the IP buffer queues into struct ipcp.brian1998-08-2614-57/+62
| | | | Forgotten by: me
* The protocol must be in network byte order (OpenBSD only).brian1998-08-261-3/+3
|
* Delete trailing space that may have caused problemsgpalmer1998-08-261-2/+2
|
* Add OVERRIDE_CARD to the bktr options listsos1998-08-261-1/+2
|
* Move kdump & ktrace out of i386 specific section.gpalmer1998-08-261-5/+4
|
* o renable pccard_remove_driver (it was used in the skel.c driver)imp1998-08-262-22/+22
| | | | | o update skel.c to lots of stuff that has happened since the last time it was updated.
* priority comparison in maybe_resched() didn't work properly if currentdillon1998-08-261-6/+13
| | | | and chk process were on different scheduler queues. Fixed.
* Remove identity crisis in ispcvt(8) man page. Include reference tojkoshy1998-08-263-5/+7
| | | | | | | ispcvt(8) in pcvt(4). PR: docs/7743 Submitted by: <k-horik@yk.rim.or.jp>
* (well tested at BEST): -i option can now take FP values (e.g. -i 0.1),dillon1998-08-262-17/+46
| | | | | | | extremely useful for networking testing. Other options secured from user-level D.O.S. attacks. -f, -s now root-only. -i wait times < 1.0 root-only. -c count limited to 100 and defaults to 16 when ping run by non-root user.
* Add probing support for the vadem VG365 and the Vadem VG465 pcic chips.imp1998-08-252-12/+38
| | | | | | | | | We do the same thing we do with all the other Vadem chips and print the right identification for these chips. Tested with the 365, and inferred for the 465. This allows the cheapo PCMCIA card that I got from necx to print the right chip number on boot.
* Submitted by: archie@whistle.comjulian1998-08-252-3/+4
| | | | quieten cc -Wall
* Mention what ``set authname'' does in -direct mode.brian1998-08-252-2/+16
|
* sort the prototypesphk1998-08-252-24/+24
|
* If we've got a full output buffer queue and cannot sendbrian1998-08-2515-17/+180
| | | | | | | | anything for two mintues (see ``set choked'' and ``show bundle''), nuke the ip, mp and link level buffer queues. This should fix problems where ``ppp -auto'' seems to stop responding after failing to connect to the peer a few times.
* Fix DDBs printing of buf-flags after I changed them yesterday.phk1998-08-251-3/+3
|
* Fix a rounding problem that causes vnode pager to fail to remove the lastluoqi1998-08-251-11/+9
| | | | | | partially filled page during a truncation. PR: kern/7422
* Test program for sigwait.jb1998-08-252-0/+205
| | | | Submitted by: Daniel M. Eischen <eischen@vigrid.com>
* Add support for building test programs.jb1998-08-253-0/+24
|
* Fix for sigwait problem.jb1998-08-259-51/+297
| | | | | Submitted by: Daniel M. Eischen <eischen@vigrid.com> PR: misc/7039
* Add the prototype for sigwait().jb1998-08-251-0/+1
|
* Improve bookkeeping of in_waitcmd and style fixes.cracauer1998-08-257-27/+41
| | | | Submitted by: Bruce Evans
* Re-enable killing childs with SIGQUIT. Spotted by Bruce Evans.cracauer1998-08-251-2/+2
|
* The length argument to sysctl is now size_t.dfr1998-08-252-3/+6
|
* Change length arguments to sysctl to size_t.dfr1998-08-252-10/+42
|
* New major number for SR4 streams emulation.msmith1998-08-242-2/+4
|
* Got two volatile sig_atomic_t and int mixed up. Spotted by Gary Palmer.cracauer1998-08-242-4/+4
|
* Last commit managed to get mangled somehow.phk1998-08-242-4/+8
|
* - #define mask of enabled interrupts/indications in if_xlreg.h instead ofwpaul1998-08-242-22/+40
| | | | | | constructing local copy in xl_init() - disable interrupts on entry to xl_intr(), re-enable them on exit. - fix a few typos in some comments
* Remove the last remaining evidence of B_TAPE.phk1998-08-243-31/+7
| | | | Reclaim 3 unused bits in b_flags
* Remove the last remaining evidence of B_TAP.phk1998-08-242-8/+8
| | | | Reclaim 3 unused bits in b_flags
* Only claim PPS_HARDPPSONASSERT if we're compiled with PPS_SYNCphk1998-08-241-1/+5
|
OpenPOWER on IntegriCloud