aboutsummaryrefslogtreecommitdiff
path: root/gnu
Commit message (Collapse)AuthorAgeFilesLines
* mdoc(7) police: Nm macro remembers its argument on the firstRuslan Ermilov2001-03-051-1/+1
| | | | | | | call, punctuation characters should be separated by whitespace. Notes: svn path=/head/; revision=73754
* setlocale(3) has been fixed to match POSIX standard:Ruslan Ermilov2001-03-024-19/+7
| | | | | | | LC_ALL takes precedence over other LC_* envariables. Notes: svn path=/head/; revision=73349
* Include `dbxelf.h' via tm.h (the approved FSF/GNU way) vs. in our MI header.David E. O'Brien2001-03-021-1/+2
| | | | Notes: svn path=/head/; revision=73307
* Define "FREEBSD_NATIVE" in the freebsd-native header to reduce the amountDavid E. O'Brien2001-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. Notes: svn path=/head/; revision=73306
* Do not need to define "VERSION" here -- we do it on the command line.David E. O'Brien2001-03-011-3/+0
| | | | Notes: svn path=/head/; revision=73297
* Allow "NOSHARED" to be overridden.David E. O'Brien2001-02-286-6/+6
| | | | | | | Submitted by: bde Notes: svn path=/head/; revision=73218
* Make critical toolchain binaries staticly linked in this developmentDavid E. O'Brien2001-02-274-0/+4
| | | | | | | version of the OS. Notes: svn path=/head/; revision=73146
* Update for bc 1.06Kris Kennaway2001-02-261-6/+16
| | | | Notes: svn path=/head/; revision=73069
* Properly orient the buttons for yes/no and no/yes so that POLA isJordan K. Hubbard2001-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> Notes: svn path=/head/; revision=72986
* Make ``groff -man'' work again for both man(7) and mdoc(7) manpages.Ruslan Ermilov2001-02-233-8/+13
| | | | | | | | | The new Groff release will support this feature. Requested by: peter Notes: svn path=/head/; revision=72942
* Our OS name is "freebsd", not "freebsdelf"David E. O'Brien2001-02-2112-28/+28
| | | | Notes: svn path=/head/; revision=72798
* Implement one nice feature of original BSD man(1):Ruslan Ermilov2001-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. Notes: svn path=/head/; revision=72696
* Fixed the order of environment variables list.Ruslan Ermilov2001-02-191-9/+6
| | | | Notes: svn path=/head/; revision=72695
* Introduce $TAR_RSH to enable use of ssh as transport.Hajimu UMEMOTO2001-02-183-9/+28
| | | | Notes: svn path=/head/; revision=72666
* Quick fix for attempts to free non-malloc()ed memory. The variablesBruce Evans2001-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. Notes: svn path=/head/; revision=72584
* Make `cc' and `cpp0' staticly linked binaries in this development versionDavid E. O'Brien2001-02-172-0/+2
| | | | | | | of the OS. Notes: svn path=/head/; revision=72567
* Fix broken -L for short locale names.Ruslan Ermilov2001-02-161-0/+2
| | | | Notes: svn path=/head/; revision=72534
* Do not ever try to look into nonexisting locale subdirectories.Ruslan Ermilov2001-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.) Notes: svn path=/head/; revision=72522
* If both full-locale-name and short-locale-name searchesRuslan Ermilov2001-02-142-32/+98
| | | | | | | | | | | fail, look the manpage in the en.<charset> subdirectory. See the manpage for details. Suggested by: ache Notes: svn path=/head/; revision=72488
* Backout 1.38->1.41 (functional) changes pending the proper solution.Ruslan Ermilov2001-02-141-17/+13
| | | | | | | | | /usr/share/man/cat? is only allowed to store -Tascii formatted data. Requested by: ache Notes: svn path=/head/; revision=72481
* Do not allow non-absolute pathnames in the manpath.Ruslan Ermilov2001-02-131-0/+8
| | | | Notes: svn path=/head/; revision=72449
* Make it possible for any given locale to use differentRuslan Ermilov2001-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 Notes: svn path=/head/; revision=72444
* When setproctitle() moved from libutil to libc, we forgot to back thePeter Wemm2001-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! Notes: svn path=/head/; revision=72426
* Finish draining any input prior to closing the pipe, to prevent unsightlyMatthew Dillon2001-02-051-0/+3
| | | | | | | 'Broken pipe' messages from gzcat. Notes: svn path=/head/; revision=72029
* mdoc(7) police: split punctuation characters + misc fixes.Ruslan Ermilov2001-02-016-43/+48
| | | | Notes: svn path=/head/; revision=71895
* Revert part of previous commit and initialize locale_nroff to " -Tascii"Dag-Erling Smørgrav2001-01-281-4/+6
| | | | | | | | | so man(1) works properly when no locale is set. Spotted by: bde Notes: svn path=/head/; revision=71744
* Make an effort to actually pass the correct device to groff.Dag-Erling Smørgrav2001-01-271-13/+6
| | | | Notes: svn path=/head/; revision=71715
* mdoc(7) police: Ft/Vt now accept punctuation-type arguments.Ruslan Ermilov2001-01-121-4/+4
| | | | Notes: svn path=/head/; revision=70974
* - Add #defines for the symbol names of the kernel interrupt, systemJake Burkholder2001-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 Notes: svn path=/head/; revision=70898
* Assume that the submitter knows what he is doing and order theNick Hibma2001-01-071-1/+1
| | | | | | | suggested actions accordingly. S)end should be the first one. Notes: svn path=/head/; revision=70755
* Fix gdb -k after jake's most recent commit. The gd_XXX symbols are nowPeter Wemm2001-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. Notes: svn path=/head/; revision=70743
* Use a unified libgcc rather than a seperate one for threaded andDavid E. O'Brien2001-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 Notes: svn path=/head/; revision=70703
* The preprocessor used by the `cc' driver is now named `ccp0' to make itDavid E. O'Brien2001-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. Notes: svn path=/head/; revision=70649
* s/rsa0/sa0/gDavid E. O'Brien2001-01-012-8/+8
| | | | Notes: svn path=/head/; revision=70563
* Use macro API to <sys/queue.h>Poul-Henning Kamp2000-12-312-2/+2
| | | | | | | | Submitted by: Dima Dorfman <dima@unixfreak.org> Reviewed by: phk Notes: svn path=/head/; revision=70539
* Prepare for mdoc(7)NG.Ruslan Ermilov2000-12-276-36/+40
| | | | Notes: svn path=/head/; revision=70395
* Fix an annoying message ``gdb: ptrace(PT_GETDBREGS) failed: No such process''Joerg Wunsch2000-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 Notes: svn path=/head/; revision=70377
* Add these files that were used from contrib/gcc/. They are taken fromDavid E. O'Brien2000-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. Notes: svn path=/head/; revision=70359
* mdoc(7) police: formatting fixes.Ruslan Ermilov2000-12-251-87/+177
| | | | Notes: svn path=/head/; revision=70347
* Clean up the -j/-y/--bzip entry in usage().David E. O'Brien2000-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 Notes: svn path=/head/; revision=70327
* Add -j as the offical "pipe thru bzip2 compression program" option.David E. O'Brien2000-12-242-24/+37
| | | | | | | | | Make -I equivalent to -T for compatiblity with Solaris. Obtained from: GNU tar 1.13.18 Notes: svn path=/head/; revision=70326
* Add `gcov' to the mix.David E. O'Brien2000-12-232-0/+15
| | | | | | | | Requested by: David Malone <dwmalone@maths.tcd.ie> PR: 18574 Notes: svn path=/head/; revision=70318
* Teach man(1) how to look inside compressed manualsRuslan Ermilov2000-12-222-70/+56
| | | | | | | | | for preprocessor directives. Avoid use of cat(1). PR: bin/23585 Notes: svn path=/head/; revision=70281
* Update the date of last change.David E. O'Brien2000-12-221-1/+1
| | | | | | | Submitted by: ru Notes: svn path=/head/; revision=70279
* Add the -bzip and -I flags as aliases for -y for Red Hat compatibility.David E. O'Brien2000-12-222-1/+5
| | | | Notes: svn path=/head/; revision=70268
* Our OS name is "freebsd", not "freebsdelf".David E. O'Brien2000-12-151-1/+3
| | | | Notes: svn path=/head/; revision=70065
* Only build the a.out `as' and `ld' if "WANT_AOUT" is defined.David E. O'Brien2000-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. Notes: svn path=/head/; revision=70062
* mdoc(7) police: removed history info from the .Os call.Ruslan Ermilov2000-12-142-2/+2
| | | | Notes: svn path=/head/; revision=70013
* Add a new function, dialog_noyes(), for sysinstall to be able toJordan K. Hubbard2000-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. Notes: svn path=/head/; revision=70004
* This file was not regenerated for the latest import, thus theRuslan Ermilov2000-12-131-1/+1
| | | | | | | reported grep version is wrong. The correct version is 2.4d. Notes: svn path=/head/; revision=69983