summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Use the C library version of log10() instead of the inaccurate formulabde1997-02-161-3/+1
| | | | | | | | | log10(x) = log10e * log(x). The formula would work if the RHS were evaluated in extended precision with an extended precision log(). This actually happened with the i387 log() because it returns excess precision. Found by: ucbtest
* Fixed the i87 version of exp(). It returned NaN for args +-Inf. It hadbde1997-02-161-0/+42
| | | | | | some small (one or two ULP) inaccuracies. Found by: ucbtest
* Removed unnecessary #include of obsolete <sys/dir.h> again.bde1997-02-161-1/+0
|
* Typo police.mpp1997-02-161-2/+2
|
* Typo and style fixes.mpp1997-02-161-3/+5
|
* Lowercase file name for contents. All other directories (psd, smm, usd)wosch1997-02-161-1/+1
| | | | | | | | use the file name "contents". Reviewed by: Submitted by: Obtained from:
* Install new intro.5 man page.wosch1997-02-162-2/+57
|
* Add cross references to apropos(1), intro(5), intro(6).wosch1997-02-161-0/+3
|
* Remove unsupported man section 3fwosch1997-02-161-1/+1
|
* Add directory man6 to SUBDIRwosch1997-02-161-1/+1
|
* Add an intro for games.wosch1997-02-162-0/+70
|
* Replace bogus strncmp() with strcmp().jkh1997-02-163-3/+12
|
* Back ut FD_SETSIZE increasing until related kernel issues will be resolvedache1997-02-161-1/+1
|
* Update my pgp keypeter1997-02-161-18/+24
|
* Fixed URL for ftp.tex.ac.uk in MASTER_SITE_TEX_CTAN.obrien1997-02-161-2/+4
| | | | Added ftp.shsu.edu and ftp.dante.de used by jmz in the latex port.
* Fix a expansion bug that caused the result of `echo $((1 << 30))`steve1997-02-161-2/+5
| | | | | | to get truncated. Submitted by: bde
* Implement the -o commandline switch. This does almost exactlysteve1997-02-161-12/+61
| | | | | | | what bison does with -o, except it DTRT with respect to naming the .code file when the -r switch is also used. Submitted by: bde
* Forgot to say I also added Pedro A M Vazquez <vazquez@IQM.Unicamp.BR> forobrien1997-02-160-0/+0
| | | | his fpp port.
* Added:obrien1997-02-161-0/+3
| | | | | | | Hung-Chi Chu <hcchu@r350.ee.ntu.edu.tw> - big5con port Justin M. Seger <jseger@scds.ziplink.net> - bing port Opps! Forgot to add Jordan K. Hubbard for his xspringies port.
* Document setup.exe.jkh1997-02-161-5/+13
|
* Bump default FD_SETSIZE from 256 to 1024 as many modernache1997-02-151-1/+1
| | | | | systems do nowdays (like SunOs 5.5.1 f.e.) 256 is too small under real network load
* Update my pgp key.phk1997-02-151-19/+22
|
* The screen layout of the lefthand side for the vmstat display was way off.obrien1997-02-151-11/+11
| | | | (based on my running it on 2.2-GAMMA)
* Update my PGP key (two new sigs). Being at it, fix up jmb's entry,joerg1997-02-152-17/+24
| | | | | | | you can't use &a.foo; inside <verb>, apparently. Also claim Usenet Support as my `area', now that i'm doing it anyway...
* Removed unnecessary #include of obsolete <sys/dir.h> again.bde1997-02-152-2/+0
|
* Restored my fixes for printing the FP registers. Theirbde1997-02-151-6/+41
| | | | | | | | | | | history was lost with FreeBSD-1.x and they were blown away by the gdb-4.16 merge. I needed this to debug e_exp.S ... Restored even older code (from 386BSD-0.0) for converting the FP registers to doubles. floatformat_to_double() and/or valprint() still don't understand NaNs. Removed unnecessary #include of obsolete <sys/dir.h> again.
* Prevent potential argument buffer overflow.jkh1997-02-151-8/+7
|
* Oops, the last commit shouldn't have removed floatformat.c.bde1997-02-151-1/+1
|
* Don't use the private version of vasprintf(). It doesn't understandbde1997-02-151-7/+4
| | | | | | | | | | | | | | "%%" in format strings and tends to dump core for "%%st". I needed "%%st" to fix the new gdb ... Don't use the private version of strerror() either. Use INTERNALLIB and INTERNALSTATICLIB instead of a private install rules NOPROFILE and NOPIC. This is only slightly cleaner. INTERNALLIB was previously only used in compatibility libraries (libgnumalloc etc.) and INTERNALSTATICLIB was previously unused. INTERNAL*LIB probably should be replaced by something like NOSTATICO together with NO{STATICO,PROFILE,PIC}INSTALL.
* Make configSysconfig() less chatty.jkh1997-02-156-15/+21
| | | | | | | Now that this is becoming (dare I even say it?) more useful for post-configuration, no longer leave sysinstall.debug files around by default. Only do this if environment variable SYSINSTALL_DEBUG is set.
* Read /etc/resolv.conf information as well as /etc/sysconfig info, makingjkh1997-02-1512-21/+120
| | | | this a little more robust.
* Fix a bogon with playpen size calculation for pkg of "-". It's amazingjkh1997-02-151-1/+3
| | | | this ever worked, actually.
* Put back .endif clobbered by the previous commit, breaking thejkh1997-02-151-0/+1
| | | | build.
* Correct bogus msg dialog.jkh1997-02-155-7/+9
| | | | Update to Lynx 2.7 (need to build 2.1/2.2 versions of this package).
* Only add interface lines if they're not there already.jkh1997-02-153-18/+36
|
* List -h option also in the SYNOPSIS line.max1997-02-151-1/+1
|
* Add a safety belt to configSysconfig() that should have been in therejkh1997-02-153-3/+9
| | | | from the beginning.
* Added Kiroh HARADA for his gn-gnspool port.max1997-02-151-0/+1
|
* Plug a security hole involving $ENV forwarding over telnet. Sigh, ijoerg1997-02-152-2/+2
| | | | thought i've long since done this.
* Reviewed by: Bruce Evans <bde@freebsd.org>danny1997-02-151-0/+6
| | | | | Guard against possible buffer overrun in filename passed. Another candidate for 2.2.
* Added an option `-h' which gives you usage info.max1997-02-152-10/+18
| | | | | (According to the original man page, giving `-' by itself as the argument is supposed to do this, but it seems that it never worked that way.)
* Allow commonly-used "insecure" as a valid keyword in /etc/ttys.davidn1997-02-152-0/+3
| | | | | This prevents keywords after "insecure" occurs being errnoeously parsed as comments.
* Disabled the i387 version if log1p(). It just evaluates log(1 + x).bde1997-02-151-2/+4
| | | | | | | | | This defeats the point of log1p(). ucbtest reports errors of +-5e+15 ULPs. A correct version would use the i387 fyl2xp1 instruction for small x and maybe scale to small x. The C version does the scaling reasonably efficiently, and fyl2px1 is slow (at least on P5s), so not much is lost by always using the C version (only 25% for small x even with the broken i387 version; 50% for large x).
* mdoc'ify man pagejmg1997-02-151-32/+29
|
* Don't bogotify pkg_add's stderr.jkh1997-02-142-4/+4
|
* Add jdp's pgp key.jdp1997-02-141-0/+27
| | | | I will sync up -2.2 to this point (except Id->FreeBSD).
* Revert some of the previous change - on second thought...jkh1997-02-142-12/+36
|
* Add better quote elimination (and fix a bug).jkh1997-02-143-21/+24
|
* o Try to be more aggressive about reading in old configuration datajkh1997-02-1415-180/+348
| | | | | | | | | | | | | | | | | so that we're more useful in multi-user mode. This is still not 100%, but it pulls in a lot more than it used to. Some of the "composite" variables in /etc/sysconfig are going to take more work. o Always write /etc/resolv.conf and /etc/hosts if it makes sense to do so. o Reset media properly when reselecting. Longstanding bogon. o Pull SIGPIPE handling out of package.c; I'm actually hoping to handle this differently shortly. o Fix bug where cancel in TCP setup dialog still checked data fields. I think this closes a PR, but I will have to go look.
* Modified the display() function to recognize when the output it going to ajmg1997-02-141-14/+18
| | | | | | | | | file. When it is don't do the percentage update, but still display the file size and rate. Closes PR#2725 Reviewed by: wollman
OpenPOWER on IntegriCloud