summaryrefslogtreecommitdiffstats
path: root/gnu
Commit message (Collapse)AuthorAgeFilesLines
* Add "NO_CXX" knob to match src/gnu/usr.bin/cc/Makefile.obrien2000-10-241-1/+5
|
* Include sys/types.hbrian2000-10-161-0/+2
|
* include <sys/types.h>brian2000-10-151-0/+4
|
* Adjust to reflect recent changes in the internal layout of a structdeischen2000-10-131-26/+46
| | | | | | pthread in libc_r. Reviewed by: dfr
* Style tweaks.obrien2000-10-131-7/+4
|
* Regenerated. There are a bunch of changes from this round of ./configurepeter2000-10-022-48/+102
| | | | | but none of them are used or make any difference (at least in the FreeBSD version).
* Stop the freebsd hardwired version of send-pr from requestingpeter2000-09-251-30/+7
| | | | | submitter-id's and try and stop people sending 'Confidential: yes' PRs. The gnats database is public.
* Removed files not present in v1_15 import.ru2000-09-221-2/+2
|
* Spelling fixesache2000-09-171-2/+2
| | | | Submitted by: "Peter Avalos" <pavalos@theshell.com>
* Remove unneded -lmytinfoache2000-09-162-4/+4
|
* Gosh. I managed to commit the wrong version of this file. Darn;markm2000-09-151-4/+4
| | | | | | I must remember not to do that again. (This fixes broken install and distribute targets)
* Silence the perl build a lot; particularly in the case where amarkm2000-09-141-4/+4
| | | | | | | "make all" is being done on top of a "make buildworld", and nothing needs making. Asked for by: jkh
* Fixes and cleanups to the perl build; don't error out when NOCLEAN ismarkm2000-08-207-10/+20
| | | | | | set and directories are being (re)made; build the procname ($0) stuff, don't install miniperl. (Miniperl needs a revisit).
* Silence -Wall; main()'s second argument was "unsigned char **",markm2000-08-191-6/+8
| | | | and this had filtered down into too many other places.
* Implement the GDB counterpart to use hardware watchpoints in connectionjoerg2000-08-172-0/+256
| | | | | | | | | | | | | | | | | | | | | with Brian's kernel support for i386 debug registers. This makes watchpoints actually usable for real-life problems. Note: you can only set watchpoints on 1-, 2- or 4-byte locations, gdb automatically falls back to [sloooow] software watchpoints when attempting to use them on variables which don't fit into this category. To circumvent this, one can use the following hack: watch *(int *)0x<some address> David O'Brien is IMHO considering to get this fully integrated into the official GDB, but as long as we've got the i386/* files sitting around in our private FreeBSD tree here, the feature can now be tested more extensively, so i'm committing this for the time being. This work has been done in order to debug a tix toolkit problem, thus it has been sponsored by teh Deutsche Post AG. Reviewed by: bsd (not the operating system, but Brian :-)
* Update for the newly-updated gawk-3.0.6.sheldonh2000-08-151-0/+230
|
* Update for the newly-updated gawk-3.0.6.sheldonh2000-08-151-2/+2
|
* Always build and install suidperl. Only install suidperl setuid whenimp2000-08-132-5/+5
| | | | | | | | | ENABLE_SUIDPERL is set to true. When perl is updated to remove the fork mail code, additional warnings will enable the users to know what is gonig on and how to correct it. Markm will make those commits as part of his perl patch integration. suidperl is installed with execute permissions so that markm's added error messages wil be seen by the user.
* Don't build suidperl by default. Make users specifically enable itsimp2000-08-101-1/+1
| | | | building.
* Fix previous commit such that only -S/--skip ignores errors when applyingkbyanc2000-08-021-0/+7
| | | | | | a patch, returning -f/--force and -t/--batch to their previous semantics. Pointed out by: asami
* Fix patch such that skipping files does not count as a failure.kbyanc2000-08-022-2/+1
| | | | | | | | | | | | | | | Previously, using -S/--skip, -f/--force, or -t/--batch to skip a patch in a patchset still registers a failure which causes patch to return a non-zero exit code. This is particularly undesirable with regards to ports as there is no way to ignore the non-zero code. (Luckily, we don't currently have any ports that make use of any of these options.) The PR (yes, my own) is slightly incorrect: It states that -f does indeed properly skip patches. It does, but it still sets the failure flag causing patch to return non-zero. PR: 19638 Submitted by: kbyanc@posi.net
* Make style match the surrounding style. Use memset() instead of bzero()green2000-07-311-1/+1
| | | | | | because it's standard (bah, show me a real system without bzero()...) Noted by: bde
* Fix a bug in keyed sorting due to malloc abuse.kris2000-07-311-0/+3
| | | | Submitted by: green
* Don't call fprintf() without a format string.kris2000-07-121-1/+3
|
* Install the general binutils (such as `nm') info files.obrien2000-07-101-1/+6
| | | | | | Patch submitted by: nbm PR: 16585 Submitted by: Assar Westerlund <assar@sics.se>
* Correct the usage printed for --exclude, which takes a globbing patternsheldonh2000-07-051-1/+1
| | | | | | | and not a file name. PR: 19698 Reported by: Jeff Blaine <jblaine@mitre.org>
* Perl's version number needs upating.markm2000-07-021-1/+1
|
* Bunch-o'-tweaks.markm2000-07-026-149/+149
| | | | | | | | | | | | | | 1) (Biggest) I tried long-and-hard to keep the version number (5.006) backwards compatible with FreeBSD; I have lost this battle, and must defer to the Perl convention (5.6.0). Victims include suidperl. this means that dirs with a name of 5.006 will be replaced with dirs named 5.6.0 in both /usr/libdata/perl and /usr/local/lib/perl. 2) Errno module is added. 3) Alpha bits extensively tweeked after a Beast-build. Other commits to follow.
* Fix manpath for new perlache2000-07-021-1/+1
|
* Fix the perl build on the Alpha. int32 is 'int' not 'long'. int64 ispeter2000-06-302-8/+8
| | | | 'long', not 'long long'. Maybe the intXX_t types should have been used.
* Tweaks to the build to allow "make -DNOCLEAN" and "make release" tomarkm2000-06-293-2/+10
| | | | work.
* Fix the upgrade-build case.markm2000-06-2715-28/+40
|
* Fix for bootstrapping. Grr. Pointy Hat Please?markm2000-06-263-2/+14
|
* Thread support for v5.6.0markm2000-06-262-154/+566
|
* Userland build stuff for Perl5.006.markm2000-06-2539-999/+984
| | | | | This is cleaned up quite a lot since 5.00502, and the library modules are broken out into individual dirs. This should please a lot folk.
* /etc/weekly -> /etc/periodic/weekly/320.whatisalex2000-06-201-1/+1
| | | | | PR: 19272 Submitted by: Uwe Pierau <uwe.pierau@tu-clausthal.de>
* We are now at version 2.10 release.obrien2000-06-201-1/+1
|
* Remove libxpg4ache2000-06-042-4/+4
|
* Scoot things over to the temporary *.295 source while I do major constructionobrien2000-06-045-6/+6
| | | | on the mainline sources.
* Restore backwards compatible -R option.ru2000-05-301-1/+1
| | | | | | Broken in revision 1.17. Noticed by: hoek
* Back out the previous change to the queue(3) interface.jake2000-05-261-2/+2
| | | | | | It was not discussed and should probably not happen. Requested by: msmith and others
* IPv6 support.ume2000-05-257-95/+239
| | | | Add $FreeBSD$.
* Move c-decl.c out of the common libcc_int.a into the binary Makefilesobrien2000-05-243-3/+4
| | | | | | | | | | | | | | where it is used. c-decl has symbols that conflict with several of the cc1plus sources. GNU `ld' was changed in Dec 1999 to be more be compatable with the way that other linkers work (specifically in the Solaris linker). The 2.9.1 `ld', did the Wrong Thing in that if a library contained a common symbol that matched a definition of that symbol in another (already linked in object) it would also be linked in, even if there was no other reason to do so. This is wrong. The library should only be linked in if it contains non-common, non-weak symbols which are needed by previously linked in objects.
* Don't allow people to create new PRs with a 'wish' class.steve2000-05-242-3/+3
| | | | Requested by: Sheldon Hearn <sheldonh@uunet.co.za>
* Change the way that the queue(3) structures are declared; don't assume thatjake2000-05-231-2/+2
| | | | | | | | the type argument to *_HEAD and *_ENTRY is a struct. Suggested by: phk Reviewed by: phk Approved by: mdodd
* Updated 2.10 headers.obrien2000-05-222-71/+1187
|
* Tweaks to match those done in the Binutils mainline code.obrien2000-05-221-1/+4
|
* version 2.10 config file.obrien2000-05-221-71/+200
|
* Conditionally define "CROSS_COMPILE" here.obrien2000-05-224-2/+15
|
* Pull the switch and activate our Binutils to a snapshot of the up andobrien2000-05-2222-300/+2609
| | | | comming 2.10 release.
OpenPOWER on IntegriCloud