summaryrefslogtreecommitdiffstats
path: root/gnu
Commit message (Collapse)AuthorAgeFilesLines
* Disable the inclusion of the Posix regexp stuff into libgnuregexp.joerg1996-11-162-2/+4
| | | | | | | | | | | | We've already got it in libc, but both libraries are incompatible wrt. their header files and internal data structures. This incompatibility caused the expr(1) on the fixit floppy to mysteriously dump core for the colon operator. Strong 2.2 candidate, since it fixes the usage of MAKEDEV on the fixit floppy. I'd like to get it reviewed by somebody else though. Observed by: andreas
* STL object files missing from libstdc++ - fix.jkh1996-11-151-2/+8
| | | | | | | | | This closes PR#1975 and was on my TODO list, so I'm breaking my own "no more commits before I fly!" rule and taking care of this, since it was at the very top and Peter shamed me in to taking care of it. This is definitely a 2.2 candidate. Submitted-By: Mark Diekhans <markd@Grizzly.COM>
* Gnu tar has problems creating an archive which contains a file with a hardjkh1996-11-121-1/+1
| | | | | | | | | | | | link to another file which has a long (>=100 char) name. When listing such an archive, the name of the link is truncated to 99 characters, and when extracting such an archive, an error is reported because it is trying to create a hard link to a file which doesn't exist. This patch fixes that problem and has also been sent to the GNU maintainers. Closes PR#1992 Submitted-By: David Dawes <dawes@landfill.physics.usyd.edu.au>
* Add the PPro %cr4 register to the supported registers in thedyson1996-11-111-1/+2
| | | | assembler.
* Document that "ldconfig -m" rescans all directories previouslyjdp1996-11-091-3/+6
| | | | | | | entered into the hints file, in addition to the directories named on the command line. 2.2 Candidate.
* Fixed a bug in the handling of the directories in the search pathjdp1996-11-081-5/+13
| | | | | | | | | | | | | | | | | | | | | | that is stored in the hints file. If that search path contained a non-existent directory (one, say, that had been removed), and "ldconfig -m /a/perfectly/good/directory" was run, ldconfig returned an error status without printing an error message. This caused some confusing bombs when installing ports, in particular. I changed it so that non-existent directories from the stored search path are silently ignored. Only non-existent directories named explicitly on the command line are treated as errors. Also, a diagnostic is printed if and only if an error status is returned. In an unrelated fix, ldconfig now silently ignores any directories named on the command line when the "-r" option is given. Formerly, these directories incorrectly made their way into the "search directories" line of the listing. It really should be an error to specify directories together with "-r", but I don't have time to fix the manual page in that way right now. 2.2 Candidate.
* Not hang in the downcase routine.wosch1996-11-051-1/+2
| | | | | | Submitted by: Trevor Blackwell tlb@viaweb.com 2.1.6/2.2 Candidate
* Change -I$(.CURDIR) to -I. in CFLAGS. As Bruce pointed outsteve1996-11-041-1/+1
| | | | | | | $(...) is bad style and without -I. this program would not compile unless ${.OBJDIR} == ${.CURDIR}. Submitted by: bde
* Get rid of bogus #ifdef's.steve1996-11-041-6/+0
|
* Upgrade to dc version 1.0 which comes bundled withsteve1996-11-0419-2688/+2648
| | | | bc version 1.03.
* Cleanup -Wall warnings added with upgrade to version 1.03.steve1996-11-044-6/+8
|
* Upgrade to version 1.03.steve1996-11-0422-3134/+976
|
* Ok, instead of covering up the problem, let's fix it.steve1996-11-031-16/+26
| | | | | | | | Reinstate the ability to use directories as input files and make dc print an error message when trying to lookup/set the value of an invalid register. Suggested by: bde
* Print out permissions that could not be re-established using 0%ojoerg1996-11-032-18/+6
| | | | | | | | | | | | | instead of decimal. Also, don't use the `l' modifier for something that has just been cast to `int' anyway. Remove various bogus pathnames to look up rsh(1) at. Our rsh is in /usr/bin, but never in /usr/usb, nor would it ever be called remsh... Also, if it hasn't been found there, use execlp() to look it up. the latter is required for `weird' environments like a fixit floppy where the regular /usr/bin hiearrchy is not avaiable. tar should probably do it similar to dump/restore, and use rcmd(3) instead of forking an external process.
* Don't allow filenames specified on the commandlinesteve1996-11-031-1/+8
| | | | to be directories.
* Uncomment static from collate_range_cmp, no more in locale.hache1996-10-311-1/+1
|
* Remove unused fileache1996-10-311-39/+0
|
* Localize itache1996-10-312-0/+29
|
* Replace collate_range_cmp call with its code (GNU version)ache1996-10-312-6/+34
|
* Replace collate_range_cmp call by its code (GNU version)ache1996-10-311-0/+16
|
* Replace collate_range_cmp with its code (GNU variant)ache1996-10-311-4/+17
|
* changes to gdb to:gj1996-10-295-24/+413
| | | | | | | | | 1) add Garrett Wollman's trap frame resolving mods 2) make the `proc' command (kernel debugging) really work 3) allow use of a pid with the `proc' command (previously you had to provide the address of the proc structure) Unfortunately, the `proc' command won't work while doing remote debugging.
* oops, uninitialised variable.. -v mode depended on stack contents.peter1996-10-291-2/+2
| | | | Submitted by: Masafumi NAKANE <max@wide.ad.jp>, PR#1920
* Added ${DESTDIR} to the install target so bison.{simple,hairy}joerg1996-10-271-3/+5
| | | | | | will also appear in our releases. ;) Forgotten by: peter
* Fix the dependancies.markm1996-10-241-8/+9
| | | | | Thanks Andrey! Submitted by: ache
* Fix this so that dependancies work properly.markm1996-10-241-13/+10
| | | | | Thanks Andrey! Submitted by: ache
* If errors occur during the loading of the shared libraries required byjdp1996-10-241-10/+30
| | | | | | | | | | | | | the main program, report them directly from the dynamic linker and die there, rather than returning an error message to crt0.o. This enables the printing of error messages even for old executables, whose version of crt0.o is not able to print them. This fix closes PR bin/1869. The code in crt0.o for printing error messages from the dynamic linker is no longer used, because of this change. But it must remain, for backward compatibility with older dynamic linkers.
* Remove local fnmatch() copy, we now compatible with GNU fnmatchache1996-10-234-249/+2
|
* Removing old isdn stuff.phk1996-10-2055-3436/+0
|
* Make it clear that a vendor-branch import adds something to thejoerg1996-10-201-4/+4
| | | | | | existing sources. Requested by: markm
* BMakefile for gmp-2.0.2markm1996-10-201-28/+46
| | | | | Requested by: ache Made world by: chuckr
* BMakefiles for gmp-2.0.2markm1996-10-203-0/+135
| | | | | Requested by: ache Made world by: chuckr
* Remove the old libgmp. Version 2.0.2 is about to hit prime time.markm1996-10-20295-28803/+0
|
* Remove the old libgmp. Version 2.0.2 is about to hit prime time.markm1996-10-20145-32251/+0
|
* This commit was generated by cvs2svn to compensate for changes in r19045,markm1996-10-20317-1919/+46235
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Import of GNU MP 2.0.2markm1996-10-20318-2032/+46246
| | | | | | | | | | | | | | | | This is a clean import with only the non-x86 bits removed. Makefiles and other will follow. Requested by: Andrey Chernov Made world by: Chuck Robey
| * recording cvs-1.6 file deathpeter1995-12-3036-42729/+0
| |
* | Various fixes and FreeBSD modifications:joerg1996-10-192-27/+45
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | . remove the blubber about `submitter-id's from the man page, we don't use them, . use REPLY_TO or REPLYTO in preference over LOGNAME as the value for the Reply-To address (closes PRs 1471 and its duplicates 1472 and 1823), . don't abuse ~/.signature as ORGANIZATION, this is almost always useless blunder, . actually list the Categories again, instead of xrefing to ``see above'' (closes PR 1835), . check the Synopsis field for being not empty, . make the mail Subject the same as Synopsis if left blank (closes PR 1209). The remaining open send-pr related PRs (184 and its duplicate 1047, and 1415) are pilot errors or local hardware problems.
* | Fix two minor typos in the manual page.jdp1996-10-181-3/+3
| |
* | Build/install c++filt from g++, we already have all the sources andpeter1996-10-132-2/+60
| | | | | | | | | | | | | | it's and useful. (Ever tried to read 'nm' and 'ldd -v' output on a c++ object or library? :-) This filter decodes the mangled symbol names.) Requested by: Chuck Robey <chuckr@glue.umd.edu>
* | Catch a situation where the tty speed might be 0 (in the case of UUCPjoerg1996-10-121-5/+5
| | | | | | | | | | | | | | over TCP), but is used as a divisor later, causing uucico to abort with a SIGFPE. Reviewed by: Ian Lance Taylor <ian@cygnus.com>
* | Add the search directories from the hints file only the first time it isjdp1996-10-101-2/+5
| | | | | | | | | | | | opened. After that, the directories are already present, and there is no point in adding them again. This doesn't fix any bugs; it's just for efficiency.
* | Add a new option "-f hints_file" to specify an alternate file instead ofjdp1996-10-102-37/+37
| | | | | | | | | | | | | | "/var/run/ld.so.hints". Delete an incorrect statement about LD_LIBRARY_PATH from the manual page.
* | Fix a bug that caused a segmentation violation if dlsym() was calledjdp1996-10-101-2/+2
| | | | | | | | with its first argument equal to NULL.
* | Use ${INSTALL} -C instead of -c. I did it with -C originally, but duringpeter1996-10-071-2/+2
| | | | | | | | | | | | | | testing I changed it to -c to check for missed files by looking at time stamps in /usr/include/g++. Submitted by: "Philippe Charnier" <charnier@xp11.frmug.org>
* | delete doubled words, e.g.: "the the" -> "the"wosch1996-10-053-5/+14
| |
* | Oops, an editing error at one point meant I had missed the osfcn.h headerpeter1996-10-041-2/+2
| | | | | | | | | | | | | | | | (it was directly underneath where bool.h used to be in the list, I think I must have not been paying attention and deleted a word from the wrong line. The machine that I was testing on still had an (old?) osfcn.h file) Pointed out by: Andreas Klemm <andreas@klemm.gtn.com>
* | "CONTINUE" was just too long. Make it a nice "OK" now.jkh1996-10-042-2/+2
| |
* | To the Attic we go..peter1996-10-04188-47889/+0
| |
* | Add genclass to the subdir listpeter1996-10-041-2/+2
| |
OpenPOWER on IntegriCloud