2004-04-28 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>

Andrew Cagney  <cagney@redhat.com>

	* configure.in (mips-sgi-irix5*): Define _KMEMUSER for
	<sys/proc.h>.
	* acconfig.h: Provide default _KMEMUSER value.
	* config.in, configure: Re-generate.
	* NEWS: Mention fix.
This commit is contained in:
Andrew Cagney 2004-04-29 14:29:14 +00:00
parent 2f9636ba50
commit c960c18f1a
6 changed files with 176 additions and 139 deletions

View File

@ -1,3 +1,12 @@
2004-04-28 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
Andrew Cagney <cagney@redhat.com>
* configure.in (mips-sgi-irix5*): Define _KMEMUSER for
<sys/proc.h>.
* acconfig.h: Provide default _KMEMUSER value.
* config.in, configure: Re-generate.
* NEWS: Mention fix.
2004-04-24 Randolph Chung <tausq@debian.org>
* configure.host (hppa*-*-linux*): New target.

View File

@ -3,6 +3,11 @@
*** Changes since GDB 6.1:
* Fixed build problem on IRIX 5
Due to header problems with <sys/proc.h>, the file gdb/proc-api.c
wasn't able to compile compile on an IRIX 5 system.
* Added execute permission to gdb/gdbserver/configure
The shell script gdb/testsuite/gdb.stabs/configure lacked execute

View File

@ -165,3 +165,9 @@
/* nativefile */
#undef GDB_NM_FILE
/* Define to 1 so <sys/proc.h> gets a definition of anon_hdl. Works
around a <sys/proc.h> problem on IRIX 5. */
#ifndef _KMEMUSER
#undef _KMEMUSER
#endif

View File

@ -173,6 +173,12 @@
/* nativefile */
#undef GDB_NM_FILE
/* Define to 1 so <sys/proc.h> gets a definition of anon_hdl. Works
around a <sys/proc.h> problem on IRIX 5. */
#ifndef _KMEMUSER
#undef _KMEMUSER
#endif
/* Define if you have the __argz_count function. */
#undef HAVE___ARGZ_COUNT

285
gdb/configure vendored

File diff suppressed because it is too large Load Diff

View File

@ -632,6 +632,10 @@ if test "${target}" = "${host}"; then
*-*-solaris2.[[6789]])
AC_DEFINE(NEW_PROC_API)
;;
mips-sgi-irix5*)
# Work around <sys/proc.h> needing _KMEMUSER problem on IRIX 5.
AC_DEFINE([_KMEMUSER], 1)
;;
esac
fi