summaryrefslogtreecommitdiffstats
path: root/gnu
Commit message (Collapse)AuthorAgeFilesLines
...
* Include `dbxelf.h' via tm.h (the approved FSF/GNU way) vs. in our MI header.obrien2001-03-021-1/+2
|
* Define "FREEBSD_NATIVE" in the freebsd-native header to reduce the amountobrien2001-03-022-1/+4
| | | | | | | of stuff (and thus length of error output) we put on the invocation command line. Also follow the new FSF/GNU style of giving the symbol a value so it can be used in `if()' statements in addition to `#if' so seldomly compiled in code (on some platforms) gets compiled always, to help reduce bit-rot.
* Do not need to define "VERSION" here -- we do it on the command line.obrien2001-03-011-3/+0
|
* Allow "NOSHARED" to be overridden.obrien2001-02-286-6/+6
| | | | Submitted by: bde
* Make critical toolchain binaries staticly linked in this developmentobrien2001-02-274-0/+4
| | | | version of the OS.
* Update for bc 1.06kris2001-02-261-6/+16
|
* Properly orient the buttons for yes/no and no/yes so that POLA isjkh2001-02-241-19/+11
| | | | | | | observed. This fixes the "no/yes box jumps buttons around" problem. PR: gnu/24487 Submitted by: Gerhard Sittig <Gerhard.Sittig@gmx.net>
* Make ``groff -man'' work again for both man(7) and mdoc(7) manpages.ru2001-02-233-8/+13
| | | | | | The new Groff release will support this feature. Requested by: peter
* Our OS name is "freebsd", not "freebsdelf"obrien2001-02-2112-28/+28
|
* Implement one nice feature of original BSD man(1):ru2001-02-192-1/+44
| | | | | | | | | : As some manual pages are intended only for specific architectures, : man searches any subdirectories, with the same name as the current : architecture, in every directory which it searches. Machine specific : areas are checked before general areas. The current machine type may : be overridden by setting the environment variable MACHINE to the name : of a specific architecture.
* Fixed the order of environment variables list.ru2001-02-191-9/+6
|
* Introduce $TAR_RSH to enable use of ssh as transport.ume2001-02-183-9/+28
|
* Quick fix for attempts to free non-malloc()ed memory. The variablesbde2001-02-181-0/+4
| | | | | | | | | | current_file_name and current_link_name sometimes point into the middle of malloc()ed memory and sometimes point to alloca()ed memory, but free() is sometimes called on them. This seems to be harmless for the usual tar operations, but it is usually fatal for `tar -W'. E.g., for `cd /etc; tar Wcf /tmp/foo rc', at the start of verify_volume(), current_file_name points to alloca()ed memory, and tar attempts to free it.
* Make `cc' and `cpp0' staticly linked binaries in this development versionobrien2001-02-172-0/+2
| | | | of the OS.
* Fix broken -L for short locale names.ru2001-02-161-0/+2
|
* Do not ever try to look into nonexisting locale subdirectories.ru2001-02-151-6/+6
| | | | | (is_directory() returns -1 if the file does not exist, 1 if it is a directory or a symlink to a directory, and 0 otherwise.)
* If both full-locale-name and short-locale-name searchesru2001-02-142-32/+98
| | | | | | | | fail, look the manpage in the en.<charset> subdirectory. See the manpage for details. Suggested by: ache
* Backout 1.38->1.41 (functional) changes pending the proper solution.ru2001-02-141-17/+13
| | | | | | /usr/share/man/cat? is only allowed to store -Tascii formatted data. Requested by: ache
* Do not allow non-absolute pathnames in the manpath.ru2001-02-131-0/+8
|
* Make it possible for any given locale to use differentru2001-02-131-8/+17
| | | | | | | | | | groff(1) devices for localized and non-localized pages. Currently, for *.ISO_8859-1 locales the device in both cases is "latin1", and for KOI8-R locale it is "koi8-r" for localized and "ascii" for non-localized pages. Discussed with: des
* When setproctitle() moved from libutil to libc, we forgot to back thepeter2001-02-132-4/+4
| | | | | | | change out that made libperl.so dynamically depend on libutil.so to pick up setproctitle() in its old location. This breaks changes involving incomptabable libc's because ld looks for the dynamic dependency (which it has no business doing anyway) in the wrong place - /usr/lib!
* Finish draining any input prior to closing the pipe, to prevent unsightlydillon2001-02-051-0/+3
| | | | 'Broken pipe' messages from gzcat.
* mdoc(7) police: split punctuation characters + misc fixes.ru2001-02-016-43/+48
|
* Revert part of previous commit and initialize locale_nroff to " -Tascii"des2001-01-281-4/+6
| | | | | | so man(1) works properly when no locale is set. Spotted by: bde
* Make an effort to actually pass the correct device to groff.des2001-01-271-13/+6
|
* mdoc(7) police: Ft/Vt now accept punctuation-type arguments.ru2001-01-121-4/+4
|
* - Add #defines for the symbol names of the kernel interrupt, systemjake2001-01-102-58/+94
| | | | | | | | | | call and trap entry points so they're easy to find and change - Use the cpuhead and allcpu list to locate globaldata for the current cpu, rather than SMP_prvspace or __globaldata - Use offsets into struct globaldata directly to find per-cpu variables, rather than symbols in globals.o Glanced at by: peter
* Assume that the submitter knows what he is doing and order then_hibma2001-01-071-1/+1
| | | | suggested actions accordingly. S)end should be the first one.
* Fix gdb -k after jake's most recent commit. The gd_XXX symbols are nowpeter2001-01-072-2/+2
| | | | | offsets in all cases, and we have to find the base address (&__globaldata) ourselves for the UP case as well as SMP.
* Use a unified libgcc rather than a seperate one for threaded andobrien2001-01-063-10/+9
| | | | | | | | non-threaded programs. This provides threaded programs with the needed exception frame symbols. parts submitted by: Max Khon <fjoe@iclub.nsu.ru> PR: 23252
* The preprocessor used by the `cc' driver is now named `ccp0' to make itobrien2001-01-041-1/+1
| | | | | clear this is the 1st pass of compilation and to make clear this particular cpp is for `cc's use only.
* s/rsa0/sa0/gobrien2001-01-012-8/+8
|
* Use macro API to <sys/queue.h>phk2000-12-312-2/+2
| | | | | Submitted by: Dima Dorfman <dima@unixfreak.org> Reviewed by: phk
* Prepare for mdoc(7)NG.ru2000-12-276-36/+40
|
* Fix an annoying message ``gdb: ptrace(PT_GETDBREGS) failed: No such process''joerg2000-12-261-0/+15
| | | | | | | | | | | when using gdb on a remote target. The fix is to restrict PT_GETDBREGS calls to `child' and `freebsd-uthreads' targets solely. I've been in some conversation with Brian about this, and this solution seems to be the most appropriate one. PR: gnu/21685 Submitted by: bsd
* Add these files that were used from contrib/gcc/. They are taken fromobrien2000-12-263-3/+3115
| | | | | | | GCC 2.7.2.3 as that was the version of GCC in active use before the switch to ELF. The GCC 2.9[67] versions of these files carry more baggage and I'm not sure the are appropriate for this linker.
* mdoc(7) police: formatting fixes.ru2000-12-251-87/+177
|
* Clean up the -j/-y/--bzip entry in usage().obrien2000-12-245-7/+140
| | | | | | | | Add the -U and --unlink-first options which are the offical verions of our --unlink localism. Add support for the "TAR_OPTIONS" environmental variable. Obtained from: GNU tar 1.13.18
* Add -j as the offical "pipe thru bzip2 compression program" option.obrien2000-12-242-24/+37
| | | | | | Make -I equivalent to -T for compatiblity with Solaris. Obtained from: GNU tar 1.13.18
* Add `gcov' to the mix.obrien2000-12-232-0/+15
| | | | | Requested by: David Malone <dwmalone@maths.tcd.ie> PR: 18574
* Teach man(1) how to look inside compressed manualsru2000-12-222-70/+56
| | | | | | for preprocessor directives. Avoid use of cat(1). PR: bin/23585
* Update the date of last change.obrien2000-12-221-1/+1
| | | | Submitted by: ru
* Add the -bzip and -I flags as aliases for -y for Red Hat compatibility.obrien2000-12-222-1/+5
|
* Our OS name is "freebsd", not "freebsdelf".obrien2000-12-151-1/+3
|
* Only build the a.out `as' and `ld' if "WANT_AOUT" is defined.obrien2000-12-151-0/+2
| | | | | | | | | | | | Looking in src/Makfile* it looks like all the "WANT_AOUT" support has been removed, maybe these should just go away... Note that the a.out `ld' reaches over into src/contrib/gcc for libiberty bits. This is biting us because the libiberty bits have evolved beyond what the a.out `ld' can handle. This change fixes the broken world, but only because very few have "WANT_AOUT" defined.
* mdoc(7) police: removed history info from the .Os call.ru2000-12-142-2/+2
|
* Add a new function, dialog_noyes(), for sysinstall to be able tojkh2000-12-143-13/+45
| | | | | | | present questinos with a different default answer. Somebody submitted a patch to me once which did something this but I lost it (my bad) so I'm just going to re-implement it with thanks to whomever it was who gave me the idea.
* This file was not regenerated for the latest import, thus theru2000-12-131-1/+1
| | | | reported grep version is wrong. The correct version is 2.4d.
* Catch up to the new kinfo_proc.jhb2000-12-123-5/+5
|
* mdoc(7) police: use canonical form of .Dd macro.ru2000-12-115-5/+5
|
OpenPOWER on IntegriCloud