aboutsummaryrefslogtreecommitdiff
path: root/contrib
Commit message (Collapse)AuthorAgeFilesLines
* Update for file 3.34.David E. O'Brien2001-03-251-4/+5
| | | | Notes: svn path=/head/; revision=74787
* This commit was generated by cvs2svn to compensate for changes in r74784,David E. O'Brien2001-03-2528-129/+773
|\ | | | | | | | | | | | | which included commits to RCS files with non-trunk default branches. Notes: svn path=/head/; revision=74785
| * Virgin import of Christos Zoulas's FILE 3.34.vendor/file/3.34David E. O'Brien2001-03-2528-129/+773
| | | | | | | | | | Notes: svn path=/vendor/file/dist/; revision=74784 svn path=/vendor/file/3.34/; revision=74786; tag=vendor/file/3.34
* | List of distfile contents to delete using `rm' and `find -delete'.David E. O'Brien2001-03-241-0/+71
| | | | | | | | | | | | | | | | | | Simular to the FREEBSD-Xlist used with `tar -X ... -xf'. This file is typically used when one starts with the GDB anoncvs repo rather than a release tarball. Notes: svn path=/head/; revision=74744
* | This commit was generated by cvs2svn to compensate for changes in r74722,David E. O'Brien2001-03-244-72/+140
|\ \ | | | | | | | | | | | | | | | | | | which included commits to RCS files with non-trunk default branches. Notes: svn path=/head/; revision=74723
| * | Import the setjump/longjump exception handling fixes from GCC 2.95.3.test3David E. O'Brien2001-03-244-72/+140
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | that were removed from GCC 2.95.3.test4 and the subsequent release due to problems on HP-UX. However, they work just fine on all the BSD's. W/o these patches the following program segmentation faults if compiled with -O2 (but not -Os or -O or -O0): #include <stdio.h> class A { public: A() { printf("c'tor A\n"); } ~A(){ printf("d'tor A\n"); } }; class foo : public A { public: foo() { printf("C'tor foo\n"); throw 8; } ~foo() { printf("D'tor foo\n"); } }; int main(){ try { foo fii; } catch (int){ printf("catch ...\n"); } return 0; } Notes: svn path=/vendor/gcc/dist/; revision=74722
* | | Don't attempt to parse %cAndrey A. Chernov2001-03-211-4/+27
| | | | | | | | | | | | Notes: svn path=/head/; revision=74602
* | | This commit was generated by cvs2svn to compensate for changes in r74485,David E. O'Brien2001-03-192-4/+11
|\| | | | | | | | | | | | | | | | | | | | which included commits to RCS files with non-trunk default branches. Notes: svn path=/head/; revision=74486
| * | Virgin import of GCC 2.95.3's libobjcDavid E. O'Brien2001-03-192-4/+11
| | | | | | | | | | | | Notes: svn path=/vendor/gcc/dist/; revision=74485
* | | This commit was generated by cvs2svn to compensate for changes in r74483,David E. O'Brien2001-03-197-246/+396
|\| | | | | | | | | | | | | | | | | | | | which included commits to RCS files with non-trunk default branches. Notes: svn path=/head/; revision=74484
| * | Virgin import of GCC 2.95.3's libstdc++David E. O'Brien2001-03-197-246/+396
| | | | | | | | | | | | Notes: svn path=/vendor/gcc/dist/; revision=74483
* | | This commit was generated by cvs2svn to compensate for changes in r74481,David E. O'Brien2001-03-1911-38/+95
|\| | | | | | | | | | | | | | | | | | | | which included commits to RCS files with non-trunk default branches. Notes: svn path=/head/; revision=74482
| * | Virgin import of GCC 2.95.3's libio -- the C++ iostream facility.David E. O'Brien2001-03-1911-38/+95
| | | | | | | | | | | | Notes: svn path=/vendor/gcc/dist/; revision=74481
* | | Remove some files that are no longer in the FSF branch.David E. O'Brien2001-03-191-26/+0
| | | | | | | | | | | | Notes: svn path=/head/; revision=74479
* | | Merge gcc-2.95.3 changes onto mainline. Update FreeBSD changes to convergeDavid E. O'Brien2001-03-1910-2670/+172
| | | | | | | | | | | | | | | | | | | | | with changes made in the FSF tree. Notes: svn path=/head/; revision=74478
* | | This commit was generated by cvs2svn to compensate for changes in r74473,David E. O'Brien2001-03-1910-151/+119
|\| | | | | | | | | | | | | | | | | | | | which included commits to RCS files with non-trunk default branches. Notes: svn path=/head/; revision=74474
| * | Virgin import of the GCC 2.95.3 compilersDavid E. O'Brien2001-03-1913-154/+122
| | | | | | | | | | | | Notes: svn path=/vendor/gcc/dist/; revision=74473
* | | Fix core noted in -stable with 'auth disable SRA'.Nick Sayer2001-03-181-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | I just mistakenly commited this to RELENG_4. I have contacted Jordan to see about how to fix this. Pass the pointy hat. Notes: svn path=/head/; revision=74411
* | | .St macro cleanup:Ruslan Ermilov2001-03-121-25/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - spell the abbreviation of 1003.1 as ``POSIX.1'' - fixed the description of -p1003.1-90; it was sold as ISO/IEC 9945-1:1990 - removed -p1003.1b; it only existed as 1003.1b-1993 (-p1003.1b-93), and is part of 1003.1 since 1003.1-1996. - replaced -p1003.1g (project) with -p1003.1g-2000 (approved draft) - changed abbreviation of -isoC from ``ISO C'' to ``ISO C89'' - removed -iso9899 alias for -isoC - IEC was missing from some names - added abbreviation for -susv2 (``SUSv2'') Notes: svn path=/head/; revision=74172
* | | enable auto-negotiation of encrypt and decryptAssar Westerlund2001-03-121-0/+13
| | | | | | | | | | | | Notes: svn path=/head/; revision=74138
* | | This commit was generated by cvs2svn to compensate for changes in r73569,Kris Kennaway2001-03-052-2/+2
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | which included commits to RCS files with non-trunk default branches. Notes: svn path=/head/; revision=73570
| * | | Import patch to fix non-constant format string abuses. This patch wasKris Kennaway2001-03-052-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | approved by the vendor and will be present in future releases. Notes: svn path=/vendor/opie/dist/; revision=73569
* | | | This commit was generated by cvs2svn to compensate for changes in r73393,Kris Kennaway2001-03-032-16/+35
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | which included commits to RCS files with non-trunk default branches. Notes: svn path=/head/; revision=73394
| * | | | Import vendor fix for buffer overflow in HOME environment variableKris Kennaway2001-03-032-16/+35
| | | | | | | | | | | | | | | | | | | | Notes: svn path=/vendor/tcsh/dist/; revision=73393
* | | | | setlocale(3) has been fixed to match POSIX standard:Ruslan Ermilov2001-03-024-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | LC_ALL takes precedence over other LC_* envariables. Notes: svn path=/head/; revision=73349
* | | | | Change "NO_PROFILE_DATA" to "NO_PROFILE_COUNTERS" to match the commit byDavid E. O'Brien2001-03-021-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | the FSF/GCC people in the stock 2.97 source that is like our custom change modulo the conditional compilation symbol. Notes: svn path=/head/; revision=73325
* | | | | Move the obvious bits of mixed ELF and a.out support down into this MDDavid E. O'Brien2001-03-021-0/+108
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | header to reduce the difference of our sources to the stock GNU/FSF ones. While the mix binary format support was nice to have in the FreeBSD MI header as a frame work, it just clutters up too much and makes the FreeBSD MI header more different from the FSF/GNU stock one than it needs to be. Notes: svn path=/head/; revision=73305
* | | | | Push as much as was easy of the mixed ELF & a.out support for the i386David E. O'Brien2001-03-021-130/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | into the i386 MD FreeBSD header. Also comment tweaking, continuation line style changes, and other minor changes to make this closer to the latest FSF/GNU 3.0 sources (to reduce my headache when 3.0 is imported). Notes: svn path=/head/; revision=73304
* | | | | Fixed undesirable hyphenation on the dash of a flag argument.Ruslan Ermilov2001-03-011-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Example: .Sh SYNOPSIS .Nm natd .Fl unregistered-only .Fl proxy-only .Fl deny-incoming .Fl use-sockets .Fl same-ports Ported from: mdocNG Notes: svn path=/head/; revision=73274
* | | | | Fixed two bugs with -tag lists.Ruslan Ermilov2001-03-011-10/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If the -tag list definition didn't have a -width modifier, the first .It call was supposed to set the width depending on the first argument type; if it is a macro name, use the macro's width value; otherwise, use width value of `No'. The following two lists should produce identical output: .Bl -tag -width Er -compact .It Er EINVAL invalid argument .El .Bl -tag -compact .It Er EINVAL invalid argument .El If the outermost -tag list definition did't have a -width modifier, the .It elements of inner lists might not work (producing a list where each successive element `walks' to the right). Example: .Bl -tag -compact .It outer .It outer .Bl -tag -compact .It inner .It inner .El .It outer .It outer .El Ported from: mdocNG Notes: svn path=/head/; revision=73273
* | | | | mdoc(7) police: misc fixes.Ruslan Ermilov2001-03-011-8/+5
| | | | | | | | | | | | | | | | | | | | Notes: svn path=/head/; revision=73272
* | | | | Stylistic changes mirroring ones done in the FSF/GNU 3.0 development sources.David E. O'Brien2001-02-281-50/+49
| | | | | | | | | | | | | | | | | | | | Notes: svn path=/head/; revision=73243
* | | | | Repair 8.11.3 merge conflictsGregory Neil Shapiro2001-02-2810-259/+308
| | | | | | | | | | | | | | | | | | | | Notes: svn path=/head/; revision=73191
* | | | | This commit was generated by cvs2svn to compensate for changes in r73188,Gregory Neil Shapiro2001-02-2839-253/+772
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | which included commits to RCS files with non-trunk default branches. Notes: svn path=/head/; revision=73189
| * | | | | Import sendmail 8.11.3Gregory Neil Shapiro2001-02-2849-513/+1080
| | | | | | | | | | | | | | | | | | | | | | | | Notes: svn path=/vendor/sendmail/dist/; revision=73188
* | | | | | Synch with NetBSD and OpenBSD: replace -iso9945-1 with -p1003.1-96.Ruslan Ermilov2001-02-261-6/+6
| | | | | | | | | | | | | | | | | | | | | | | | Notes: svn path=/head/; revision=73091
* | | | | | Revert part of rev 1.2: make -ansiC equivalent to -ansiC-89.Ruslan Ermilov2001-02-261-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | Notes: svn path=/head/; revision=73089
* | | | | | Do not output extra space after .Ef call.Ruslan Ermilov2001-02-261-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Ported from: mdocNG Notes: svn path=/head/; revision=73081
* | | | | | Resolve conflictsKris Kennaway2001-02-264-112/+263
| | | | | | | | | | | | | | | | | | | | | | | | Notes: svn path=/head/; revision=73068
* | | | | | This commit was generated by cvs2svn to compensate for changes in r73064,Kris Kennaway2001-02-2657-1434/+4380
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | which included commits to RCS files with non-trunk default branches. Notes: svn path=/head/; revision=73065
| * | | | | | Initial import of bc 1.0.6Kris Kennaway2001-02-2661-1549/+4644
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Notes: svn path=/vendor/bc/dist/; revision=73064
* | | | | | | Make ``groff -man'' work again for both man(7) and mdoc(7) manpages.Ruslan Ermilov2001-02-231-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The new Groff release will support this feature. Requested by: peter Notes: svn path=/head/; revision=72942
* | | | | | | Flip the default for CVS_RSH to "ssh". I am tired of getting asked thisPeter Wemm2001-02-231-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | all the time, and IMHO it is long overdue. Notes: svn path=/head/; revision=72936
* | | | | | | Return to the code as distributed by sendmail.org. This eliminates aGregory Neil Shapiro2001-02-221-3/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | warning on Alphas. It is still not the perfect solution for machines which sizeof(u_long) != sizeof(void *) but it is as close as we are going to get for now and consistent with the rest of the code. 8.12 has solved this problem by providing a portable snprintf() which understands %p. PR: bin/14142 Notes: svn path=/head/; revision=72910
* | | | | | | Document the vacation -d and -l optionsGregory Neil Shapiro2001-02-221-0/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PR: docs/22875 Notes: svn path=/head/; revision=72849
* | | | | | | Do not output extra comma before "and" for references with two authors.Ruslan Ermilov2001-02-191-11/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Example: .Rs .%A Author1 .%A Author2 .%B Book .Re Produced: Author1, and Author2, Book. Now produces: Author1 and Author2, Book. Ported from: mdocNG Notes: svn path=/head/; revision=72690
* | | | | | | This commit was generated by cvs2svn to compensate for changes in r72571,Jeroen Ruigrok van der Werven2001-02-176-19/+38
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | which included commits to RCS files with non-trunk default branches. Notes: svn path=/head/; revision=72572
| * | | | | | | Virgin import of ISC BIND v8.2.3-REL docsJeroen Ruigrok van der Werven2001-02-176-19/+38
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Notes: svn path=/vendor/bind/dist/; revision=72571
* | | | | | | | Remove old DNS setup document. We have long past the times whereJeroen Ruigrok van der Werven2001-02-171-1081/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | BIND 4 was the thing of the day. Notes: svn path=/head/; revision=72570
* | | | | | | | Merge rev 1.2 (-fformat-extensions); 1.{7,9} (complain about -O2 on theDavid E. O'Brien2001-02-171-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Alpha & FORCE_OPTIMIZATION_DOWNGRADE); 1.8 (-Wnon-const-format) into GCC 2.95.3(RC#3). Notes: svn path=/head/; revision=72566