aboutsummaryrefslogtreecommitdiff
path: root/gnu
Commit message (Collapse)AuthorAgeFilesLines
* Gnu tar has problems creating an archive which contains a file with a hardJordan K. Hubbard1996-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> Notes: svn path=/head/; revision=19681
* Add the PPro %cr4 register to the supported registers in theJohn Dyson1996-11-111-1/+2
| | | | | | | assembler. Notes: svn path=/head/; revision=19652
* Document that "ldconfig -m" rescans all directories previouslyJohn Polstra1996-11-091-3/+6
| | | | | | | | | | entered into the hints file, in addition to the directories named on the command line. 2.2 Candidate. Notes: svn path=/head/; revision=19584
* Fixed a bug in the handling of the directories in the search pathJohn Polstra1996-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. Notes: svn path=/head/; revision=19522
* Not hang in the downcase routine.Wolfram Schneider1996-11-051-1/+2
| | | | | | | | | Submitted by: Trevor Blackwell tlb@viaweb.com 2.1.6/2.2 Candidate Notes: svn path=/head/; revision=19438
* Change -I$(.CURDIR) to -I. in CFLAGS. As Bruce pointed outSteve Price1996-11-041-1/+1
| | | | | | | | | | $(...) is bad style and without -I. this program would not compile unless ${.OBJDIR} == ${.CURDIR}. Submitted by: bde Notes: svn path=/head/; revision=19389
* Get rid of bogus #ifdef's.Steve Price1996-11-041-6/+0
| | | | Notes: svn path=/head/; revision=19383
* Upgrade to dc version 1.0 which comes bundled withSteve Price1996-11-0419-2679/+2639
| | | | | | | bc version 1.03. Notes: svn path=/head/; revision=19382
* Cleanup -Wall warnings added with upgrade to version 1.03.Steve Price1996-11-044-6/+8
| | | | Notes: svn path=/head/; revision=19381
* Upgrade to version 1.03.Steve Price1996-11-0422-3134/+976
| | | | Notes: svn path=/head/; revision=19380
* Ok, instead of covering up the problem, let's fix it.Steve Price1996-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 Notes: svn path=/head/; revision=19366
* Print out permissions that could not be re-established using 0%oJoerg Wunsch1996-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. Notes: svn path=/head/; revision=19365
* Don't allow filenames specified on the commandlineSteve Price1996-11-031-1/+8
| | | | | | | to be directories. Notes: svn path=/head/; revision=19345
* Uncomment static from collate_range_cmp, no more in locale.hAndrey A. Chernov1996-10-311-1/+1
| | | | Notes: svn path=/head/; revision=19290
* Remove unused fileAndrey A. Chernov1996-10-311-39/+0
| | | | Notes: svn path=/head/; revision=19286
* Localize itAndrey A. Chernov1996-10-312-0/+29
| | | | Notes: svn path=/head/; revision=19285
* Replace collate_range_cmp call with its code (GNU version)Andrey A. Chernov1996-10-312-6/+34
| | | | Notes: svn path=/head/; revision=19284
* Replace collate_range_cmp call by its code (GNU version)Andrey A. Chernov1996-10-311-0/+16
| | | | Notes: svn path=/head/; revision=19283
* Replace collate_range_cmp with its code (GNU variant)Andrey A. Chernov1996-10-311-4/+17
| | | | Notes: svn path=/head/; revision=19279
* changes to gdb to:Gary Jennejohn1996-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. Notes: svn path=/head/; revision=19258
* oops, uninitialised variable.. -v mode depended on stack contents.Peter Wemm1996-10-291-2/+2
| | | | | | | Submitted by: Masafumi NAKANE <max@wide.ad.jp>, PR#1920 Notes: svn path=/head/; revision=19253
* Added ${DESTDIR} to the install target so bison.{simple,hairy}Joerg Wunsch1996-10-271-3/+5
| | | | | | | | | will also appear in our releases. ;) Forgotten by: peter Notes: svn path=/head/; revision=19215
* Fix the dependancies.Mark Murray1996-10-241-8/+9
| | | | | | | | Thanks Andrey! Submitted by: ache Notes: svn path=/head/; revision=19160
* Fix this so that dependancies work properly.Mark Murray1996-10-241-13/+10
| | | | | | | | Thanks Andrey! Submitted by: ache Notes: svn path=/head/; revision=19159
* If errors occur during the loading of the shared libraries required byJohn Polstra1996-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. Notes: svn path=/head/; revision=19158
* Remove local fnmatch() copy, we now compatible with GNU fnmatchAndrey A. Chernov1996-10-234-249/+2
| | | | Notes: svn path=/head/; revision=19135
* Removing old isdn stuff.Poul-Henning Kamp1996-10-2055-3436/+0
| | | | Notes: svn path=/head/; revision=19063
* Make it clear that a vendor-branch import adds something to theJoerg Wunsch1996-10-201-4/+4
| | | | | | | | | existing sources. Requested by: markm Notes: svn path=/head/; revision=19056
* BMakefile for gmp-2.0.2Mark Murray1996-10-201-28/+46
| | | | | | | | Requested by: ache Made world by: chuckr Notes: svn path=/head/; revision=19053
* BMakefiles for gmp-2.0.2Mark Murray1996-10-203-0/+135
| | | | | | | | Requested by: ache Made world by: chuckr Notes: svn path=/head/; revision=19052
* Remove the old libgmp. Version 2.0.2 is about to hit prime time.Mark Murray1996-10-20295-28803/+0
| | | | Notes: svn path=/head/; revision=19051
* Remove the old libgmp. Version 2.0.2 is about to hit prime time.Mark Murray1996-10-20145-32146/+0
| | | | Notes: svn path=/head/; revision=19050
* Import of GNU MP 2.0.2Mark Murray1996-10-20318-2026/+46237
| | | | | | | | | | | 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 Notes: svn path=/vendor/misc-GNU/dist2/; revision=19045
* Various fixes and FreeBSD modifications:Joerg Wunsch1996-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. Notes: svn path=/head/; revision=19039
* Fix two minor typos in the manual page.John Polstra1996-10-181-3/+3
| | | | Notes: svn path=/head/; revision=19010
* Build/install c++filt from g++, we already have all the sources andPeter Wemm1996-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> Notes: svn path=/head/; revision=18913
* Catch a situation where the tty speed might be 0 (in the case of UUCPJoerg Wunsch1996-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> Notes: svn path=/head/; revision=18880
* Add the search directories from the hints file only the first time it isJohn Polstra1996-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. Notes: svn path=/head/; revision=18862
* Add a new option "-f hints_file" to specify an alternate file instead ofJohn Polstra1996-10-102-37/+37
| | | | | | | | | | "/var/run/ld.so.hints". Delete an incorrect statement about LD_LIBRARY_PATH from the manual page. Notes: svn path=/head/; revision=18859
* Fix a bug that caused a segmentation violation if dlsym() was calledJohn Polstra1996-10-101-2/+2
| | | | | | | with its first argument equal to NULL. Notes: svn path=/head/; revision=18849
* Use ${INSTALL} -C instead of -c. I did it with -C originally, but duringPeter Wemm1996-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> Notes: svn path=/head/; revision=18800
* delete doubled words, e.g.: "the the" -> "the"Wolfram Schneider1996-10-053-5/+14
| | | | Notes: svn path=/head/; revision=18718
* Oops, an editing error at one point meant I had missed the osfcn.h headerPeter Wemm1996-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> Notes: svn path=/head/; revision=18688
* "CONTINUE" was just too long. Make it a nice "OK" now.Jordan K. Hubbard1996-10-042-2/+2
| | | | Notes: svn path=/head/; revision=18682
* To the Attic we go..Peter Wemm1996-10-04188-47889/+0
| | | | Notes: svn path=/head/; revision=18678
* Add genclass to the subdir listPeter Wemm1996-10-041-2/+2
| | | | Notes: svn path=/head/; revision=18673
* Add libstdc++ to the SUBDIR listPeter Wemm1996-10-041-2/+2
| | | | Notes: svn path=/head/; revision=18672
* Update to use the contrib/libg++ version, now that my (slow) 486 hasPeter Wemm1996-10-042-34/+58
| | | | | | | finished a 'make world'. Notes: svn path=/head/; revision=18671
* Initial attempt at a bmakefile for genclass.Peter Wemm1996-10-031-0/+52
| | | | Notes: svn path=/head/; revision=18670
* Initial shot at a bmakefile for libstdc++Peter Wemm1996-10-032-0/+364
| | | | Notes: svn path=/head/; revision=18666