| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
| |
instead.
|
|
|
|
| |
Reviewed by: Mike Smith
|
|
|
|
|
|
| |
It's gonna be used in all p5- ports.
Reviewed by: asami
|
| |
|
| |
|
|
|
|
| |
respectively.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
Policies section of the Handbook.
Submitted by: "David O'Brien" <obrien>
|
|
|
|
|
|
| |
Policies section of the Handbook.
Submitted by: "David O'Brien" <obrien>
|
| |
|
|
|
|
| |
Noticed by: Blaz Zupan <blaz@gold.amis.net>
|
|
|
|
|
|
|
|
|
| |
Add a sysctl 'machdep.cs_recv_delay' to specify how long to wait after
receiving a packet in order to check for a subsequent (back-to-back)
packet. The cs8900 has a very small receive buffer, so this helps avoid
overflows at the cost of some extra CPU overhead.
Submitted by: Oleg Sharoiko <os@rsu.ru>, MIHIRA "Sanpei" Yoshiro <sanpei@sanpei.org>
|
|\
| |
| |
| | |
which included commits to RCS files with non-trunk default branches.
|
| |
|
| |
|
|
|
|
|
| |
with the change in semantics to make_playpen(). Now package dependencies
more than 2 levels deep should work again. Pass the hat.
|
|
|
|
| |
Sort out fs_ops, alloc/free.
|
| |
|
| |
|
| |
|
|
|
|
| |
for NFSv3 support
|
| |
|
|
|
|
| |
eventually be built if elf.
|
|
|
|
| |
Obtained from: NetBSD
|
|
|
|
| |
Submitted by: Robert Baron <rvb@sicily.odyssey.cs.cmu.edu>
|
|
|
|
| |
Submitted by: Robert Baron <rvb@sicily.odyssey.cs.cmu.edu>
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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>
|
|
|
|
| |
"reinstall" are already here. :)
|
|
|
|
|
| |
Give make.conf a make.conf.local capability similar to rc.conf's
rc.conf.local capability. Eases large-site administration.
|
|
|
|
| |
kernel needs.
|
| |
|
|
|
|
| |
Submitted by: Gene Stark <stark@FreeBSD.ORG>
|
| |
|
| |
|
| |
|
|
|
|
| |
Forgotten by: me
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
o update skel.c to lots of stuff that has happened since the last time
it was updated.
|
|
|
|
| |
and chk process were on different scheduler queues. Fixed.
|