summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
1995-12-14from netbsd; add M_IPQTheo de Raadt
1995-12-14from netbsd; hpux also needs a stackgapTheo de Raadt
1995-12-14update to netbsdTheo de Raadt
1995-12-14update from netbsdTheo de Raadt
1995-12-14from netbsd; sync with termcap 9.11.5Theo de Raadt
1995-12-14update from netbsd; parallel make stuffTheo de Raadt
1995-12-14from netbsd; add cache flushingTheo de Raadt
1995-12-14update from netbsdTheo de Raadt
1995-12-14resize an output fieldTheo de Raadt
1995-12-14update from netbsdTheo de Raadt
1995-12-14from netbsd; declare ourself as unix so that binary is assumedTheo de Raadt
1995-12-14from christos@netbsd:Theo de Raadt
Minor: - ${.PREFIX} should never contain a full pathname - Fixed gcc -Wall warnings Major: - compatMake is now FALSE. This means that we are now running in full pmake mode: * rules on dependency lines can be executed in parallel and or out of sequence: foo: bar baz can fire the rule for baz before the rule for bar is fired. To enforce bar to be fired before baz, another rule needs to be added. [bar: baz] * adjacent shell commands in a target are now executed by a single invocation of the shell, not one invocation of the shell per line (compatMake can be turned off using the -B flag) - The -j flag now works... I.e. make -j 4 will fork up to four jobs in parallel when it can. The target name is printed before each burst of output caused by the target execution as '--- target ---', when j > 1 - I have changed all the Makefiles so that they work with make -j N, and I have tested the whole netbsd by: 'make -j 4 cleandir; make -j 4 depend; make -j 4; make -j 4 install' - I have not compiled or tested this version of make with -DREMOTE. - Turn compat mode on by default. It gets turned off when the -j without the -B flag is specified. [Thus you can use -j 1 to turn it off]. - Fix malloc -> emalloc as Gordon noted. Updates for POSIX/SVR4 compiling: arch.c: Don't require ranlib stuff. Not everybody has it. dir.c: SunOS-4 != Solaris; change #ifdef sun to #if sun && !__svr4__ job.c, compat.c: Don't use 'union wait', use int and the W*() macros. main.c: Check for uname() == -1; some unames return > 0... util.c, job.c: Add signal() with BSD semantics for svr4, don't use bsd sigmask and friends. from cgd@netbsd: pull in make.h. (PAlloc() now uses emalloc(), which is prototyped in make.h. If the prototype is not in scope on the Alpha, I see lots of "cast to pointer from integer of different size" warnings.)
1995-12-14from christos@netbsd:Theo de Raadt
Minor: - ${.PREFIX} should never contain a full pathname - Fixed gcc -Wall warnings Major: - compatMake is now FALSE. This means that we are now running in full pmake mode: * rules on dependency lines can be executed in parallel and or out of sequence: foo: bar baz can fire the rule for baz before the rule for bar is fired. To enforce bar to be fired before baz, another rule needs to be added. [bar: baz] * adjacent shell commands in a target are now executed by a single invocation of the shell, not one invocation of the shell per line (compatMake can be turned off using the -B flag) - The -j flag now works... I.e. make -j 4 will fork up to four jobs in parallel when it can. The target name is printed before each burst of output caused by the target execution as '--- target ---', when j > 1 - I have changed all the Makefiles so that they work with make -j N, and I have tested the whole netbsd by: 'make -j 4 cleandir; make -j 4 depend; make -j 4; make -j 4 install' - I have not compiled or tested this version of make with -DREMOTE. - Turn compat mode on by default. It gets turned off when the -j without the -B flag is specified. [Thus you can use -j 1 to turn it off]. - Fix malloc -> emalloc as Gordon noted. Updates for POSIX/SVR4 compiling: arch.c: Don't require ranlib stuff. Not everybody has it. dir.c: SunOS-4 != Solaris; change #ifdef sun to #if sun && !__svr4__ job.c, compat.c: Don't use 'union wait', use int and the W*() macros. main.c: Check for uname() == -1; some unames return > 0... util.c, job.c: Add signal() with BSD semantics for svr4, don't use bsd sigmask and friends. from cgd@netbsd: pull in make.h. (PAlloc() now uses emalloc(), which is prototyped in make.h. If the prototype is not in scope on the Alpha, I see lots of "cast to pointer from integer of different size" warnings.)
1995-12-14from netbsd:Theo de Raadt
Convert to termios (from Scott Reynolds; PR#1621). 8-bit patches (from Matthieu Herrb; PR#1384).
1995-12-14update from netbsdTheo de Raadt
1995-12-14finish uuencode cleanupTheo de Raadt
1995-12-14from netbsd; Make more 8-bit clean (from Andreas Gustafsson; PR#1190).Theo de Raadt
1995-12-14fix a typoTheo de Raadt
1995-12-14from netbsd; also print elapsed timeTheo de Raadt
1995-12-14from netbsd; Describe PROFDIR environment variableTheo de Raadt
1995-12-14gcore goes awayTheo de Raadt
1995-12-14from netbsd: Added World AIDS Day.Theo de Raadt
1995-12-14from netbsd:Theo de Raadt
Changed w_gamma.c, w_gamma_r.c, w_gammaf.c, w_gammaf_r.c to call __ieee754_lgamma_r or __ieee754_lgammaf_r. Removed e_gamma.c, e_gamma_r.c, e_gammaf.c, e_gammaf_r.c, e_lgamma.c, e_lgamma_f.c.
1995-12-14update from netbsdTheo de Raadt
1995-12-14from netbsd:Theo de Raadt
Didn't take care of errors when return parameter was long long. Bug pointed out by Arne Henrik Juul.
1995-12-14from netbsd; cannot be sure cpp can handle x ## yTheo de Raadt
1995-12-14from netbsd; sigsetjmp/siglongjmp was missing. Code fix by Arne H. Juul.Theo de Raadt
1995-12-14properly add them...Theo de Raadt
1995-12-14from netbsd:Theo de Raadt
add & fix a bunch of system call pages
1995-12-14make first arg of strtod/strtoq constTheo de Raadt
1995-12-14from cgd@netbsd:Theo de Raadt
kill a gratuitous cast of lowpc to an int Add support for PROFDIR environment variable
1995-12-14setmode() returns void *Theo de Raadt
1995-12-14unvis() works on plain char, not u_charTheo de Raadt
1995-12-14initgroups() takes a gid_tTheo de Raadt
1995-12-14getgrouplist() returns array of gid_tTheo de Raadt
1995-12-14from cgd@netbsd; be more conservative when setting the gpTheo de Raadt
1995-12-14from netbsd; fix profiling supportTheo de Raadt
1995-12-14from netbsd:Theo de Raadt
Added spanish language message catalog from Jesus M. Gonzalez <jgb@ordago.uc3m.es>
1995-12-14from netbsd:Theo de Raadt
traceroute waits 5 seconds, not 3 seconds, before printing a *
1995-12-14from netbsd: add () in an expression even though it is not really neededTheo de Raadt
1995-12-14whoops, add thisTheo de Raadt
1995-12-14from netbsd; update to mrouted 3.8Theo de Raadt
1995-12-14use string.hTheo de Raadt
1995-12-14from thorpej@netbsd:Theo de Raadt
Handle "clean" and "depend" targets properly.
1995-12-14from ws@netbsd:Theo de Raadt
- Add support for Win'95 separate creation/modification/access timestamps - Re-introduce lowercase filenames for non-Win'95-filesystems
1995-12-14from netbsd:Theo de Raadt
Don't require compiling with -DDEBUG to enable debugging messages. Instead, add a new option flag "-d", which enables debugging output. Compile all of the code that used to be enabled with -DDEBUG unconditionally. The amount of extra code is negligable, and all of the tests to check if debugging is enabled were done regardless of -DDEBUG anyway. Adjust SYSLOG() to DTRT if debugging is not enabled.
1995-12-14from netbsd:Theo de Raadt
Recognize all mount flags exported from the kernel (but only print the ones that we used to print). Note unrecognized flags(s) when printing mount list.
1995-12-14from netbsd: fix a few typosTheo de Raadt
1995-12-14s/ENVIRONMENTAL/ENVIRONMENT/Theo de Raadt
1995-12-14whoops, add thisTheo de Raadt