This is the mail archive of the gdb-cvs@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

src/gdb ChangeLog config.in configure configur ...


CVSROOT:	/cvs/src
Module name:	src
Changes by:	palves@sourceware.org	2013-07-01 11:24:17

Modified files:
	gdb            : ChangeLog config.in configure configure.ac 
	                 go32-nat.c top.c top.h 

Log message:
	Reimplement DJGPP's .gdbinit -> gdb.ini renaming.
	
	This simplifies the .gdbinit filename selection logic.
	
	We have a GDBINIT_FILENAME define that supposedly configurations would
	override, but none do so.  Instead, the only configuration that wants
	a different file name instead of ".gdbinit", djgpp, does a strcpy over
	the gdbinit global array.  This means the array needs to be sized, and
	the code that does that is doing the usual
	'PATH_MAX/FILENAME_MAX/fallback constant/etc.' mess.
	
	Instead of all that, it's much simpler to have configure specificy the
	.gdbinit filename.  As bonus, we can then make the "gdbinit" global
	array const.
	
	gdb/
	2013-07-01  Pedro Alves  <palves@redhat.com>
	
	* configure.ac (GDBINIT): Define, depending on host.
	* go32-nat.c (init_go32_ops): Don't override gdbinit here.
	* top.c (PATH_MAX): Delete fallback definition.
	(GDBINIT_FILENAME): Delete.
	(gdbinit): Reimplement as const char array set to the GDBINIT
	string constant.
	* top.h (gdbinit): Make const.

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/src/gdb/ChangeLog.diff?cvsroot=src&r1=1.15771&r2=1.15772
http://sourceware.org/cgi-bin/cvsweb.cgi/src/gdb/config.in.diff?cvsroot=src&r1=1.155&r2=1.156
http://sourceware.org/cgi-bin/cvsweb.cgi/src/gdb/configure.diff?cvsroot=src&r1=1.394&r2=1.395
http://sourceware.org/cgi-bin/cvsweb.cgi/src/gdb/configure.ac.diff?cvsroot=src&r1=1.206&r2=1.207
http://sourceware.org/cgi-bin/cvsweb.cgi/src/gdb/go32-nat.c.diff?cvsroot=src&r1=1.95&r2=1.96
http://sourceware.org/cgi-bin/cvsweb.cgi/src/gdb/top.c.diff?cvsroot=src&r1=1.236&r2=1.237
http://sourceware.org/cgi-bin/cvsweb.cgi/src/gdb/top.h.diff?cvsroot=src&r1=1.37&r2=1.38


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]