summaryrefslogtreecommitdiffstats
path: root/gnu
Commit message (Collapse)AuthorAgeFilesLines
* Enable the new libmp in the build, and disable libgmp and itsdd2001-07-291-1/+1
| | | | henchmen.
* Hook up the manpage.obrien2001-07-291-1/+0
|
* Properly update cursor position when the list is scrolled.eric2001-07-262-8/+12
|
* Handle keys consistently.eric2001-07-262-1/+4
|
* Add lbasename which is used in the `LD' fix for -current.obrien2001-07-201-1/+1
|
* Update the version string so I can identify this new variant.obrien2001-07-201-1/+1
|
* Improve the interface provided by libdialog. Move a cursor around overeric2001-07-186-105/+280
| | | | | | | the components and trigger actions based on its position. This reduces the need to remember the functions of various keys, and makes the interface more consistant across library. ~
* Restore vendor CVS keywords; eliminate troff(1) warnings.ru2001-07-121-1/+3
|
* Use the real structure names explicitly. Note that this is mostly forpeter2001-07-121-0/+8
| | | | | | | reading old a.out core files, which are totally 100% non-understandable to the gdb floating-point reader if you have SSE turned on. This should be the last of the world build breakers...
* Restore UUCP VCS IDs; eliminate troff(1) warnings.ru2001-07-1213-14/+20
|
* Fixed CLEANFILES.ru2001-07-121-1/+2
|
* mdoc(7) police: removed punctuation after the last SEE ALSO xref.ru2001-07-101-1/+1
|
* Add $FreeBSD$ CVS tag.ru2001-07-101-0/+3
|
* Upgrade to Groff 1.17.2.ru2001-07-102-4/+4
|
* mdoc(7) police: removed HISTORY info from the .Os call.ru2001-07-106-6/+6
|
* mdoc(7) police: remove extraneous .Pp before and/or after .Sh.dd2001-07-095-8/+1
|
* Fix the type of the NULL arg to execl()brian2001-07-093-4/+8
| | | | Idea from: Theo de Raadt <deraadt@openbsd.org>
* mdoc(7) police: sort SEE ALSO xrefs (sort -b -f +2 -3 +1 -2).ru2001-07-061-2/+2
|
* Silence a non-constant format string warning.kris2001-07-051-1/+1
| | | | MFC after: 1 week
* Upgrade to Binutils 2.11.2.obrien2001-06-291-2/+25
|
* Style fix.obrien2001-06-261-1/+2
|
* Add the IA-64 unwind handling (needed for readelf).obrien2001-06-261-1/+1
|
* Upgrade to Binutils 2.11.2.obrien2001-06-261-4/+27
|
* Upgrade to 2.11.2.obrien2001-06-261-1/+1
|
* Rewrite locale handling using nl_langinfo(CODESET), so aliases not needed hereache2001-06-251-44/+77
| | | | now
* When processing -a, strip off the path of the argument before copyingdd2001-06-181-3/+4
| | | | | | it to the output. Reviewed by: alex
* Document the -a flag.alex2001-06-171-0/+12
|
* Add an -a option which will make send-pr copy the specified file intodd2001-06-171-1/+21
| | | | | | | the Fix: section. Binary files (as determined by file(1)) are uuencode'd. Submitted by: alex
* Fix the build of C programs that link against libperl, and use thetobez2001-06-137-14/+14
| | | | | | | | | | | blessed way of doing this: cc -o interp interp.c `perl -MExtUtils::Embed -e ccopts -e ldopts` In order for this to work, ldopts should contain -lcrypt. PR: 21804 Reviewed by: markm
* In debug mode don't print error for C,POSIX,ASCII,US-ASCII localesache2001-06-101-2/+7
|
* Fix for new locale namesache2001-06-101-1/+1
|
* Fix for new locale namesache2001-06-102-4/+7
|
* Don't allow the user to change the subject; instead, always generatedd2001-06-071-10/+19
| | | | | | | | | | it from the Synopsis field. There's no reason for the subject to be different, since all that does is cause confusion. Users may get confused because they may think the subject and synopsis are supposed to be different, and developers may get confused because it may look like there are two different problems. Requested by: ru
* Put the originator's full name in the From and Reply-to fields, anddd2001-06-031-3/+3
| | | | | | | stick their username (which sendmail will make into an e-mail address) inside '<>'. Sendmail will still DTRT with this, and it conveniently puts the submitter's name and e-mail address on one line, just like it should be after "Submitted by" in a commit message.
* Minor style reformatting.obrien2001-06-011-12/+12
|
* Upgrade to Binutils 2.11.0.obrien2001-06-015-546/+704
|
* For the time being, Perl threading is considered dangerous. How, whenmarkm2001-05-318-4625/+1
| | | | and why this is re-enabled will be addressed again in the future.
* Upgrade to Binutils 2.11.0.obrien2001-05-2817-608/+747
|
* `\<space>' (unpaddable space) does not work in groff_font(5) files,ru2001-05-281-2/+1
| | | | | | | it is taken as a single escape (`\') character. This prevented \e from being output correctly in -Tkoi8-r case. Noticed by: Andrey Simonenko <simon@comsys.ntu-kpi.kiev.ua>
* From the submitter:markm2001-05-262-3/+2
| | | | | | | | | | | | | | | | | | | | $ PERL_DL_NONLAZY=1 perl -MPOSIX -e '' Can't load '/usr/libdata/perl/5.6.0/mach/auto/POSIX/POSIX.so' for module POSIX: /usr/libdata/perl/5.6.0/mach/auto/POSIX/POSIX.so: Undefined symbol "sv_setptrobj" at /usr/libdata/perl/5.6.0/XSLoader.pm line 73. at /usr/libdata/perl/5.6.0/mach/POSIX.pm line 24 Compilation failed in require. BEGIN failed--compilation aborted. This problem only exists in -CURRENT. Most often it is reproduced when compiling some perl extension manually. Make test uses PERL_DL_NONLAZY, and if a tested module uses POSIX, boom! Luckily, we don't see it very often, mostly because the vast majority of p5 ports do not perform the `make test' step. Submitted by: Anton Berezin <tobez@tobez.org> Needs to be a committer already: Anton Berezin <tobez@tobez.org>
* CURRENT no longer needs -pthreadmarkm2001-05-261-1/+0
|
* Use pw(8) instead of grep'ing through /etc/passwd. This fixesdd2001-05-241-3/+3
| | | | | | automatic filling of the "Originator" field for NIS users. PR: 24372
* Add support for FreeBSD 4.4.ru2001-05-151-0/+2
|
* Fix typo introduced in a comment in the previous commitkris2001-05-121-1/+1
|
* Only load KOI8-R-specific bits if document language is setru2001-05-071-2/+4
| | | | | | via the \*[lang] register, not if just device is `koi8-r'. Reviewed by: ache
* Create temporary files securely using mkstemp() instead of mktemp()kris2001-05-063-2/+13
| | | | | Reviewed by: mikeh, audit@ MFC after: 1 week
* Total hack to fix broken bootstrap. Add -I/usr/src/include at the tailobrien2001-05-031-0/+1
| | | | | | end of the include searching. We really need a real fix for the issue of which set of headers to use in compiling the cross-tools -- /usr/include, or /usr/src/include.
* like i386, add inclusion of lock.hmjacob2001-05-032-1/+4
|
* - Avoid circular `use Config', which may lead to random synax errorsmarkm2001-05-022-9/+13
| | | | | | | | | | produced by miniperl during buildworld phase. - While at it, do loading of SelfLoader only when it is needed, and in place where it is needed. Submitted by: tobez@tobez.org (who is doing way too much good work and is in need of the Commit Bit punishment)
* * Add Config.pm to fight situations when perldoc(1) showed a manual pagejoe2001-05-016-10/+94
| | | | | | | | | | | | for a module overridden by BSDPAN instead of the original module. * Fix wrong manual section numbers in SEE ALSO. * Add `Revision 42' to the beer-ware license. The BSDPAN author did not originally get the reference and removed the revision from original phk's version. Submitted by: Anton Berezin <tobez@tobez.org>
OpenPOWER on IntegriCloud