summaryrefslogtreecommitdiffstats
path: root/gnu
Commit message (Collapse)AuthorAgeFilesLines
* YAMF22jkh1997-03-291-2/+2
|
* generate c-exp.c, f-exp.c and m2-exp.c with yacc rather than usingpeter1997-03-292-4/+10
| | | | the generated ones in the gdb dist.
* Protect against multiple inclusion (All the CFLAGS+= items make the ccpeter1997-03-291-1/+4
| | | | command lines get rather long). (bsd.lib.mk is particularly bad at this)
* Support the ".p2align" directive, which is standard in newer versionsjdp1997-03-291-1/+2
| | | | | | | | | | | | | of binutils. For all architectures and object file formats, ".p2align n" aligns to the next multiple of 2**n. Thus for FreeBSD, it does exactly the same thing as the traditional ".align". The old ".align" directive has different meanings in different object formats, and even in different variants of a.out. Sometimes is aligns to a multiple of n, and other times it aligns to a multiple of 2**n. ".p2align" is preferable for use in assembly language sources, since it makes them more portable to object formats other than a.out.
* Change a "=" to "?=" to make it easier to override the binary formatjdp1997-03-281-3/+3
| | | | from the environment.
* FreeBSD modifications and notes for GNU cpio.obrien1997-03-261-0/+10
|
* Add a new "-f" option to the linker, to print the resolved pathsjdp1997-03-223-5/+43
| | | | | | of all the files and libraries in the command line. Submitted by: bde (Bruce Evans)
* Make makewhatis(1) happy.wosch1997-03-211-4/+2
|
* Fix initstate() cast to match Lite2ache1997-03-171-2/+2
|
* fix compilation warnings in patch... (with slight modification)jmg1997-03-175-6/+34
| | | | | | | | also remove -Wall that I acidentally committed last time I was here... Submitted-by: Philippe Charnier Closes PR#2998
* Remove unnecessary chmod()'s. This should likely go in other branches.guido1997-03-151-3/+1
| | | | Obtained from: aleph1@UNDERGROUND.ORG on Bugtraq
* delete the LINKS line (link gdb to kgdb) by popular demand.gj1997-03-152-6/+2
|
* Support german mdoc man pages (currently no german mdoc man page exists).wosch1997-03-141-3/+3
| | | | Support japanese FreeBSD man pages, Jpman Project.
* Support german Linux/GNU man pages.wosch1997-03-131-2/+2
|
* add LINKS line to Makefile to automatically produce a link to kgdbgj1997-03-124-2/+20
| | | | | | | define START_PROGRESS in nm.h to check whether gdb was invoked as kgdb and set the kernel_debugging flag in that case. 2.2 candidate ?
* Oops.. Missed this one too. getopt is in unistd.h now, not stdlib.hpeter1997-03-111-2/+2
|
* Fix the getopt() prototype to match the system one.peter1997-03-111-1/+1
|
* Build under Lite2 includespeter1997-03-111-1/+1
|
* Fix srandom arg type according to Lite2ache1997-03-111-2/+2
|
* Fixed style bugs in install rule (afterinstall -> beforeinstall, etc).bde1997-03-091-7/+3
| | | | Removed stale comment.
* Fix a number of typos, one of which is part of PR# 2917.mpp1997-03-091-4/+4
|
* Don't use a dot in the chown commands. In fact, don't use any commandsbde1997-03-081-20/+15
| | | | | | except `install'. Changed $() to ${}. Don't use the afterinstall target (it is only for things that must be done after the install target is built).
* Fixed substitution of @TMAC_S_PREFIX@ and @TMAC_M_PREFIX@.bde1997-03-081-5/+5
|
* Bugfix for man pages created by perlpod(1).wosch1997-03-011-1/+2
| | | | Submitted by: Slaven ReziƦ (TomiƦ) <eserte@cs.tu-berlin.de>
* Plug an old security hole: suidperl didn't honor MNT_NOSUID.joerg1997-03-012-2/+23
| | | | | | | | Strong 2.2 and 2.1.x candidate. Someone should review the patch before, however. The maintainer of the Perl5 port should probably introduce a similar patch there.
* Fix various overflows for items longer then menu width.ache1997-02-281-4/+6
| | | | | | | Fix cursor place after PgUp/PgDn. Should go into 2.2 Submitted by: "Anatoly A. Orehovsky" <tolik@mpeks.tomsk.su>
* Don't set the umask until after we have processed the argumentsmpp1997-02-251-1/+1
| | | | | | and opened the archive file. This allows "cpio -o -O output_file" to create the output file with the callers proper umask. Closes PR# 1391.
* Fix some $ Id$ in $ Log$ expansion problems. :-( (added spaces just inpeter1997-02-232-56/+8
| | | | | | case) Pointed out by: bde
* Revert $FreeBSD$ to $Id$peter1997-02-22281-290/+290
|
* Revert $FreeBSD$ to $Id$peter1997-02-22160-162/+198
|
* When wrong directory choosed and chdir failed, directory nameache1997-02-182-2/+5
| | | | | | | | | | | was not reset to old name causing any file choosen put error diagnostic about wrong directory, fix it by resetting back to old name after chdir failed. Add \r as alias to \n, some telnets have problem with that. Should go into 2.2 Submitted by: "Anatoly A. Orehovsky" <tolik@mpeks.tomsk.su> & me
* 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.
* Fix a problem with patch in that is will always default, even when thejmg1997-02-136-16/+37
| | | | | | | | | | | | | controlling terminal is closed. Now the function ask() will return 1 when th input is known to come from a file or terminal, or it will return 0 when ther was a read error. Modified the question "Skip patch?" so that on an error from ask it will skip the patch instead of looping. Closes PR#777 2.2 candidate
* Reorder the default man sections.joerg1997-02-091-1/+1
| | | | 2.2 candidate?
* Check return value from system() function.wosch1997-02-081-0/+10
| | | | Pointed out some months ago by: Bruce
* Correct the recommended option for "find" from "-depth" to "-d".jdp1997-02-081-1/+1
|
* Don't force postscript output when "man -t" is specified.mpp1997-02-051-1/+1
| | | | | | Closes PR# 2661. Submitted by: John-Mark Gurney <gurney_j@efn.org>
* Fix a bug involving alias (N_INDR) symbols. When building a sharedjdp1997-02-011-2/+8
| | | | | | | | | | | | | | | library with a shared object dependency that contained alias symbols, the linker incorrectly counted the number of symbols that would be written, resulting in a fatal internal error. Since our libc now contains some alias symbols (in "net/res_stubs.c"), this was sufficient to tickle the bug: "ld -Bshareable foo.so -lc". To fix it, I moved the accounting of alias symbols to a later point in the processing, where it is possible to count only those symbols that will actually be written to the output file. This fix is well-confined to affect alias symbols only. I have tested it with a full "make world". I am going to merge it into -2.2 after a few more days of living with it in -current.
* Use xmalloc instead of malloc in two places, so that out-of-memoryjdp1997-01-242-2/+2
| | | | | | conditions will be detected. Submitted by: Philippe Charnier <charnier@xp11.frmug.org>
* Remove incorrect use of double-negative since it means the same thingjkh1997-01-211-2/+2
| | | | to make but perhaps not to the human reading it.
* Pay attention to the environment variable "LD_IGNORE_MISSING_OBJECTS".jdp1997-01-172-1/+36
| | | | | | | | | If it is set to a nonempty string, then simply skip any missing shared libraries. This came up in a discussion long ago as a potentially useful feature at sysinstall time. For example, an X11 utility could be used without the X libraries being present, provided the utility had a mode in which no X functions were actually called.
* Add back the description of the "-v" option. It seems to have beenjdp1997-01-171-0/+4
| | | | | lost in the conflict resolution leading up to revision 1.4. 2.2 candidate.
* Go on one of my periodic rampages through this code, trying to makejkh1997-01-174-157/+189
| | | | | | | it DTRT. In the process, discover the usual 10-15 evil bogons which have been lurking in it for years. This closes, for one thing, the recent report Mike Smith made about nested checklist menus returning with the scrolling region messed up.
* Remove -lmalloc; it's no longer relevant.jkh1997-01-172-2/+2
| | | | Pointed-Out-By: jdp, dima and others.
* Simplify using SRCDIRache1997-01-161-3/+1
|
* Use SRCDIR instead of PATHache1997-01-161-1/+1
|
* Simplify using SRCDIRache1997-01-161-5/+1
|
* Use SRCDIR instead of PATHache1997-01-161-1/+1
|
* Simplify it using SRCDIRache1997-01-161-5/+3
|
OpenPOWER on IntegriCloud