mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-03 04:12:10 +08:00
0200359f12
(AC_FUNC_SETPGRP): Add. * aclocal.m4, configure, config.in: Regenerated. * inflow.c (gdb_setpgid): Get rid of NEED_POSIX_SETPGID and SETPGRP_ARGS. Always use setpgid if it is available, fall back on setpgrp if it isn't. Use SETPGRP_VOID (defined by autoconf) to distinguish between the two setpgrp flavours. * config/xm-sysv4.h, config/arm/xm-linux.h, config/i386/xm-i386aix.h, config/i386/xm-sco.h, config/i386/xm-linux.h, config/i386/xm-ptx.h, config/m68k/xm-linux.h, config/powerpc/xm-linux.h, config/sparc/xm-linux.h, config/sparc/xm-sun4sol2.h, config/ia64/xm-linux.h (NEED_POSIX_SETPGID): Remove. * config/rs6000/xm-rs6000.h (SETPGRP_ARGS): Remove.
42 lines
1.5 KiB
C
42 lines
1.5 KiB
C
/* Macro definitions for running gdb on a Sun 4 running Solaris 2.
|
|
Copyright 1989, 1992, 1993, 1994, 1995, 1996, 1998, 2000
|
|
Free Software Foundation, Inc.
|
|
|
|
This file is part of GDB.
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 59 Temple Place - Suite 330,
|
|
Boston, MA 02111-1307, USA. */
|
|
|
|
/* Most of what we know is generic to SPARC hosts. */
|
|
|
|
#include "sparc/xm-sparc.h"
|
|
|
|
/* Pick up more stuff from the generic SVR4 host include file. */
|
|
|
|
#include "xm-sysv4.h"
|
|
|
|
/* These are not currently used in SVR4 (but should be, FIXME!). */
|
|
#undef DO_DEFERRED_STORES
|
|
#undef CLEAR_DEFERRED_STORES
|
|
|
|
/* solaris doesn't have siginterrupt, though it has sigaction; however,
|
|
in this case siginterrupt would just be setting the default. */
|
|
#define NO_SIGINTERRUPT
|
|
|
|
/* On sol2.7, <curses.h> emits a bunch of 'macro redefined'
|
|
warnings, which makes autoconf think curses.h doesn't
|
|
exist. Compensate for that here. */
|
|
#define HAVE_CURSES_H 1
|