summaryrefslogtreecommitdiffstats
path: root/gnu
Commit message (Collapse)AuthorAgeFilesLines
* Expand contractions.ru2005-02-151-1/+1
|
* Remove mention of the -k and -wcore options because they don'tmarcel2005-02-151-14/+0
| | | | | | | | exist anymore. PR: doc/70943 Submitted by: Jun <junsu at delphij dot net> Reviewed by: delphij
* Use the system gnuregex library vs. building GNU regex bits into libibertyobrien2005-02-145-7/+12
| | | | | | | and using them. Reviewed by: marcel,imp Desired by: ache
* Fix regression in output with -R compared to previous version.obrien2005-02-131-1/+1
| | | | | PR: 77466 Submitted by: Andre Guibert de Bruet <andy@siliconlandmark.com>
* Expand *n't contractions.ru2005-02-134-12/+12
|
* More math functions.kan2005-01-261-3/+3
| | | | Prodded by: stefanf
* We have floorl() now. Reflect this in the library config file.kan2005-01-261-1/+1
|
* Of all templates only lists need a special implmementation file compiledkan2005-01-261-8/+9
| | | | | to support __GLIBCXX_DEBUG. Add debug_list.cc to the list of files to compile.
* libpam is now standard.ru2005-01-251-1/+0
|
* Sort sections.ru2005-01-182-15/+16
|
* Fold two ENVIRONMENT sections into one.ru2005-01-181-32/+33
|
* Add -frandom-seed=RepeatabilityConsideredGood to CFLAGS for building thiscperciva2005-01-171-0/+1
| | | | | | | | | | | | | library. As the value suggests, this allows the library to be built repeatably; without this flag, gcc uses a random value in its parsing. Since the random seed is only used when handling files which do not have any externally-visible symbols, this change is not needed for any other libraries in the FreeBSD base system. Discussed on: freebsd-arch (in early November) Approved by: kan MFC after: 1 week
* Added the EXIT STATUS section where appropriate.ru2005-01-171-1/+1
|
* Markup nits.ru2005-01-131-4/+3
|
* When grabbing registers for an lwp, fake the inferior's pid using thepeadar2005-01-111-2/+6
| | | | | | | | | | | | | lwp ID before invoking the underlying target operation. For corefiles, we rely on gdb internals to do this, and it uses the pid as an index, rather than the lwpid, so previously, backtraces for multithreaded core files wasn't working correctly. For processes, we currently use ptrace directly, so fixup that code to also use the pid directly. Discussed With: marcel, davidxu MFC After: 4 days
* Scheduled mdoc(7) sweep.ru2005-01-091-1/+1
|
* Add a usb category for USB PRs.ceri2005-01-051-0/+1
| | | | | Requested by: Craig Rodrigues on behalf of usb@ MFC After: 1 day
* Fix 'redraw' of checklist box. It is occurs in situation when size ofphantom2005-01-041-0/+9
| | | | | | | | | checklist box is strictly set via command line, but amount of checklist items less than height of checklist box. In this case bottom part of box was not redrawn (occurs when passing focus behind of 'Cancel' button while configuring any FreeBSD port OPTIONS) MFC after: 3 days
* A lot of people may want to submit PRs from systems that are notkeramida2004-12-291-0/+7
| | | | | | | | | | connected to the Internet or systems that do not have a correctly configured email subsystem. Now that the send-pr web interface has antispam protection, mention that it is ok to use it for submitting problem reports. Ok by: linimon Submitted by: Rob <spamrefuse@yahoo.com> on freebsd-doc
* NOHTML -> NO_HTMLru2004-12-211-1/+1
|
* NOCRYPT -> NO_CRYPTru2004-12-211-1/+1
|
* NOSHARED -> NO_SHAREDru2004-12-219-9/+9
|
* NODOCCOMPRESS -> NO_DOCCOMPRESSru2004-12-215-11/+11
| | | | | | | | NOINFO -> NO_INFO NOINFOCOMPRESS -> NO_INFOCOMPRESS NOLINT -> NO_LINT NOPIC -> NO_PIC NOPROFILE -> NO_PROFILE
* Start the dreaded NOFOO -> NO_FOO conversion.ru2004-12-2121-21/+21
| | | | OK'ed by: core
* Uncomment an upcoming 5.4-RELEASE.ru2004-12-181-1/+1
|
* Uncomment entries for FreeBSD 6.0 and 4.11.jkoshy2004-12-181-2/+2
| | | | Requested by: ru
* Add removal of MKTEMP_SH_FUNCTION to processing for cvsbug script.kensmith2004-12-101-0/+1
| | | | | Approved by: peter (a while ago) MFC After: 1 week
* Source changes to allow building a cross-debugger. Move solib.c andmarcel2004-12-0516-5/+29
| | | | | | | | solib-svr4.c to the MD makefiles because they are native files for alpha and sparc64, but target files for amd64, i386 and ia64. Note that kgdb(1) does not yet build as a cross-debugger due to libkvm.
* Fix previous commit. GDB_CROSS_DEBUGGER needs to be defined for allmarcel2004-12-052-9/+5
| | | | subdirectories.
* Makefile (only) changes to allow building a cross debugger.marcel2004-11-3010-21/+50
|
* s/MACHINE_ARCH/TARGET_ARCH/. We use TARGET_ARCH to pick the MD filesmarcel2004-11-301-1/+1
| | | | for libgdb and should do so here as well.
* [Sorry, forgot to commit my source changes in my previous commit.]joerg2004-11-221-2/+5
| | | | | | | | | | | | | | Document all options and general usage. Implement the -a option to bump the annotation_level. This improves the Emacs gud behaviour. You can now supply the following function (defun gud-gdb-massage-args (file args) (cons "-a" args)) (e.g. by evaluating it from the *scratch* buffer) and get the normal jump to the source window when browsing the stack. We should probably eventually supply our own kgdb submode to gud.el.
* Document all options and general usage.joerg2004-11-221-0/+67
| | | | | | | | | | | | Implement the -a option to bump the annotation_level. This improves the Emacs gud behaviour. You can now supply the following function (defun gud-gdb-massage-args (file args) (cons "-a" args)) (e.g. by evaluating it from the *scratch* buffer) and get the normal jump to the source window when browsing the stack. We should probably eventually supply our own kgdb submode to gud.el.
* Fix the abuse of Ar macros for designating flag options, use Fl instead.joerg2004-11-221-4/+4
|
* Always set current thread when activating thread debugger,davidxu2004-11-151-1/+1
| | | | | the current thread may already be added by fbsd_find_new_threads, this can result that current thread is not set correctly.
* The correct name of the long option is --line-buffered,keramida2004-11-091-2/+3
| | | | | | | | not --line-bufferring. PR: docs/72985 Submitted by: John Engelhart <johne@zang.com> MFC after: 1 week
* Whitespace fix.marcel2004-11-091-1/+1
|
* Prepare for a subsequent import: If the first letter of the filenamemarcel2004-11-091-35/+43
| | | | | | | | | | | changes, start on a new line. Insertion of a filename will keep the diff limited to the block of filenames that have the same first letter instead of creating a huge diff. While here, move remote.c after the remote-*.c files and move tui.c after the tui-*.c files. This matches the order of ls(1) and makes it easier to compare object files created by a stock gdb(1) build with the list of files we have here. This is a non-functional change only.
* Remove trailing whitespace.kan2004-11-071-1/+1
| | | | Pointed out by: ru
* Reconnect c++filt to the build.kan2004-11-071-2/+2
|
* Unbreak c++filt. It was disconnected from the build and never fixed duringkan2004-11-071-8/+1
| | | | | | GCC 3.4.2 work unintentioanlly. Reminded by: bms
* For variables that are only checked with defined(), don't provideru2004-10-2431-33/+33
| | | | any fake value.
* Utilize SCRIPTS.ru2004-10-181-4/+1
|
* Replaced afterinstall: with FILES.ru2004-10-181-5/+2
|
* Update to readline 5.0ache2004-10-181-3/+7
|
* Back out termcap -> ncurses change in LDADD/DPADDache2004-10-181-2/+2
| | | | It expand functions scope too wide
* Upgrade to 5.0ache2004-10-181-1/+1
|
* Upgrade to 5.0ache2004-10-182-8/+6
|
* Update for 5.0ache2004-10-181-6/+23
|
* Bump the library version numbers for the following libraries:kensmith2004-10-011-1/+1
| | | | | | | | | | | /lib/{libm,libreadline} /usr/lib/{libhistory,libopie,libpcap} in preparation for doing the same thing to RELENG_5. HUGE amounts of help for determining what to bump provided by kris. Discussed on: freebsd-current Approved by: re (not required for commit but something like this should be)
OpenPOWER on IntegriCloud