aboutsummaryrefslogtreecommitdiff
path: root/gnu/usr.bin
Commit message (Collapse)AuthorAgeFilesLines
* .Os is now 5.1Scott Long2003-06-041-1/+1
| | | | Notes: svn path=/releng/5.1/; revision=115812
* This commit was manufactured by cvs2svn to create branch 'RELENG_5_1'.cvs2svn2003-05-311-31/+0
| | | | Notes: svn path=/releng/5.1/; revision=115436
* Add a temporary indirect patch for gcc when targeting amd64. This is toPeter Wemm2003-05-242-2/+67
| | | | | | | | | | | | | | | | | | | | | | | | | give the cvs tree a surviving a 'make world'. One of the two diff chunks is already in gcc-3.3, the other has been committed to gcc's HEAD and is in the pipeline for gcc-3.3.1 (but has not been committed yet). The first chunk simplifies an excessively complex assembler statement when generating switch jump tables. The use of '.' causes as(1) to choke on big files. Use a simpler form instead. This is only an issue for TARGET_64BIT mode. The second chunk fixes an internal compiler error when compiling libc/stdio/vfprinf.c. While this is supposedly only an issue for 64 bit mode, it does touch the 32 bit i386 code paths, so this patch is only applied for TARGET_ARCH == amd64 to keep the risks down. Breaking gcc at the 11th hour would suck. This will be removed when it is time to import gcc-3.3. Discussed with: kan Approved by: re (jhb) Notes: svn path=/head/; revision=115292
* Set the binutils arch for as/nm correctly on the amd64 platform.Peter Wemm2003-05-081-1/+6
| | | | | | | | | | As far as binutils is concerned, the amd64 platform is still called "x86-64"/"x86_64". Setting things from ${MACHINE_ARCH} breaks that. Approved by: re (scottl) Notes: svn path=/head/; revision=114834
* Enable GSSAPI/Kerberos 5 support (aka `gserver').Jacques Vidrine2003-05-051-9/+6
| | | | | | | MFC after: 1 month Notes: svn path=/head/; revision=114740
* Fix build on 4.x.Ruslan Ermilov2003-05-021-0/+4
| | | | Notes: svn path=/head/; revision=114525
* Re-enable building of Groff documentation; texinfo has just beenRuslan Ermilov2003-05-021-1/+0
| | | | | | | upgraded to version 4.5. Notes: svn path=/head/; revision=114480
* Update for texinfo 4.5.Ruslan Ermilov2003-05-021-1/+1
| | | | Notes: svn path=/head/; revision=114479
* catman(1) sources now live elsewhere.Ruslan Ermilov2003-05-013-579/+0
| | | | Notes: svn path=/head/; revision=114468
* Lock GCC w/o -m32 into 64-bit mode.David E. O'Brien2003-05-011-0/+4
| | | | Notes: svn path=/head/; revision=114425
* Upgrade to Groff 1.19.Ruslan Ermilov2003-05-0131-86/+155
| | | | Notes: svn path=/head/; revision=114412
* Replace beforeinstall: with plain FILES.Ruslan Ermilov2003-04-301-7/+2
| | | | Notes: svn path=/head/; revision=114327
* Wrap gperf in NO_CXX as it needs the C++ to compile.David E. O'Brien2003-04-271-4/+3
| | | | Notes: svn path=/head/; revision=114129
* We're changing the platform name from x86[_-]86 to amd64.David E. O'Brien2003-04-264-7/+7
| | | | Notes: svn path=/head/; revision=114083
* The AMD64 Hammer bits.David E. O'Brien2003-04-269-1/+4430
| | | | Notes: svn path=/head/; revision=114050
* Remove first attempt at x86-64 bits. We're going to call it "amd64" now.David E. O'Brien2003-04-267-4250/+0
| | | | | | | Sponsored by: Microsoft Notes: svn path=/head/; revision=114049
* Removed invasion into these makefiles by the "legacy" stuff;Ruslan Ermilov2003-04-1212-48/+36
| | | | | | | I have a better fix in the works. Notes: svn path=/head/; revision=113398
* libbinutils.a needs basename(3); when the latter is providedRuslan Ermilov2003-04-1112-36/+48
| | | | | | | by -legacy, liblegacy.a should come last in the LDADD list. Notes: svn path=/head/; revision=113369
* Migrate to a new way of dealing with building from old revisions ofWarner Losh2003-04-052-14/+1
| | | | | | | | | | | | | | | | | | | | FreeBSD. This method attempts to centralize all the necessary hacks or work arounds in one of two places in the tree (src/Makefile.inc1 and src/tools/build). We build a small compatibility library (libbuild.a) as well as selectively installing necessary include files. We then include this directory when building host binaries. This removes all the past release compatibilty hacks from various places in the tree. We still build on tip of stable and current. I will work with those that want to support more, although I anticipate it will just work. Many thanks to ru@, obrien@ and jhb@ for providing valuable input at various stage of implementation, as well as for working together to positively effect a change for the better. Notes: svn path=/head/; revision=113136
* Mark bits that do not require an object directory as such.Ruslan Ermilov2003-04-011-0/+2
| | | | Notes: svn path=/head/; revision=112940
* Document the MAIL_AGENT environment var.Giorgos Keramidas2003-03-261-0/+13
| | | | | | | | PR: 48277 Submitted by: Stefan Walter <sw@gegenunendlich.de> Notes: svn path=/head/; revision=112656
* Attempt to automatically read in kernel module symbols when a liveIan Dowse2003-03-214-2/+330
| | | | | | | | | | | | | | | | | | | | | | | | | | | or dead kernel core is loaded into gdb. This extends gdb's existing shared library support, so the "info sharedlibrary", "sharedlibrary" and "nosharedlibrary" commands can be used to view and change the list of loaded symbol files. The current implementation is more than a kludge however, and it will not always manage to find the .ko.debug file corresponding to the loaded module. In particular, for modules whose build directory cannot be easily guessed from the module name such as all the netgraph modules, the debug version of the .ko will not be found automatically. The logic for finding the module file first attempts to guess at the module build directory by parsing the version[] string. Then using that directory ($DIR), it tries the following paths in turn: ./<module>.ko.debug ./<module>.ko $DIR/<module>.ko.debug $DIR/<module>.ko /boot/kernel/<module>.ko.debug /boot/kernel/<module>.ko Approved by: obrien, mp Notes: svn path=/head/; revision=112454
* Shorten the URL to the problem-reports article.Dag-Erling Smørgrav2003-03-181-1/+1
| | | | Notes: svn path=/head/; revision=112374
* Fixed CLEANFILES.Ruslan Ermilov2003-02-252-2/+4
| | | | | | | Submitted by: cron Notes: svn path=/head/; revision=111490
* Install the gcov(1) manpage; kernbb(8) references it.Ruslan Ermilov2003-02-241-1/+0
| | | | Notes: svn path=/head/; revision=111451
* I thought groff was wrapped with NO_CXX. Oh well, it is now.David E. O'Brien2003-02-241-1/+5
| | | | Notes: svn path=/head/; revision=111401
* Some things don't build for PowerPC yet.David E. O'Brien2003-02-211-1/+5
| | | | | | | List from: benno Notes: svn path=/head/; revision=111204
* Recognize FreeBSD 5.1; libc_gen/signbit.3 has set the precedent.Ruslan Ermilov2003-02-141-0/+3
| | | | Notes: svn path=/head/; revision=110876
* Moved the libugidfw library definition out from contributed sourceRuslan Ermilov2003-02-141-0/+1
| | | | | | | | | to where it actually belongs. Submitted by: phantom Notes: svn path=/head/; revision=110864
* FreeBSD 5.x does not provide libskey anymore, remove referenceAlexey Zelkin2003-02-131-1/+0
| | | | Notes: svn path=/head/; revision=110808
* Add 'libgeom' to list of valid .Lb argumentsAlexey Zelkin2003-02-131-0/+1
| | | | Notes: svn path=/head/; revision=110807
* Add /usr/local/man as OPTIONAL_MANPATHAndrey A. Chernov2003-02-111-0/+1
| | | | Notes: svn path=/head/; revision=110662
* Install the OpenSSL man pages in /usr/share/openssl/manJacques Vidrine2003-02-101-0/+1
| | | | | | | and remove the WANT_OPENSSL_MANPAGES knob. Notes: svn path=/head/; revision=110655
* Finish update for cvs-1.11.5. Some build-time tunables were moved fromPeter Wemm2003-01-216-485/+39
| | | | | | | | | | | options.h to config.h.in and set via ./configure when built normally. Export some of the build knobs to the Makefile here, overridable from /etc/make.conf. Also get the version strings right. config.h was repocopied to config.h.proto, and we do a limited sed on it at build time now. Notes: svn path=/head/; revision=109667
* Dont bother with unused rules for version.cPeter Wemm2003-01-211-4/+1
| | | | Notes: svn path=/head/; revision=109666
* Update for cvs-1.11.5 import (note to self: gotta fix the version tags)Peter Wemm2003-01-212-4/+4
| | | | Notes: svn path=/head/; revision=109663
* The PowerPC-specfic scripttempl file was depreciated in favor of the genericDavid E. O'Brien2003-01-211-1/+1
| | | | | | | ELF one. Notes: svn path=/head/; revision=109618
* Reformat.David E. O'Brien2003-01-041-22/+24
| | | | Notes: svn path=/head/; revision=108674
* Add the ability to debug C++ programs using v2 and v3 of the G++ ABI.David E. O'Brien2003-01-041-1/+1
| | | | | | | Submitted by: Peter Edwards <pmedwards@eircom.net> Notes: svn path=/head/; revision=108673
* GC 'char sigmap[]' (it is no longer used)Max Khon2003-01-041-40/+0
| | | | | | | | Approved by: obrien MFC after: 3 days Notes: svn path=/head/; revision=108672
* Make minimal changes to point the users to the Texinfo documentationGiorgos Keramidas2002-12-141-0/+7
| | | | | | | | | | | for more detailed information about sdiff(1). Hopefully this will make it easier to find how `interactive merging' works with sdiff. PR: docs/30618 Submitted by: mark@summersault.com Notes: svn path=/head/; revision=107886
* Uniformly refer to a file system as "file system".Ruslan Ermilov2002-12-121-1/+1
| | | | | | | Approved by: re Notes: svn path=/head/; revision=107788
* We need to support the bfd_efi_app_ia64_vec vector for loader support.David E. O'Brien2002-12-051-0/+1
| | | | | | | | Submitted by: Marcel Approved by: RE Notes: svn path=/head/; revision=107644
* Change the default emulation to elf64_sparc_fbsd. This emulation knows theDavid E. O'Brien2002-12-051-10/+16
| | | | | | | correct spelling of our rtld. Notes: svn path=/head/; revision=107643
* Set WARNS=0 as a temp work around until I can get access to an IA-64 boxDavid E. O'Brien2002-12-051-0/+2
| | | | | | | | | to do this right. Approved by: RE Notes: svn path=/head/; revision=107642
* Change the default emulation to elf64_ia64_fbsd. This knows the properDavid E. O'Brien2002-12-051-5/+13
| | | | | | | spelling of our rtld. Notes: svn path=/head/; revision=107641
* Don't dike out ELF_DYNAMIC_INTERPRETER, we need this copy now.David E. O'Brien2002-12-051-2/+1
| | | | | | | | | This should have been committed with ia64/bfd.h rev 1.6. Approved by: RE Notes: svn path=/head/; revision=107640
* Gperf is usable again.David E. O'Brien2002-12-041-2/+6
| | | | Notes: svn path=/head/; revision=107614
* Sigh. Another wrong version string. However, this one isn't used in thePeter Wemm2002-12-042-2/+2
| | | | | | | | | build. Approved by: re Notes: svn path=/head/; revision=107568
* Oops. Use the correct version number. The number that was here was thePeter Wemm2002-12-032-2/+2
| | | | | | | | | one that I originally used on freefall etc. Approved by: re Notes: svn path=/head/; revision=107564