aboutsummaryrefslogtreecommitdiff
path: root/gdb/configure.in
diff options
context:
space:
mode:
authorFred Fish <fnf@specifix.com>1996-04-05 04:22:08 +0000
committerFred Fish <fnf@specifix.com>1996-04-05 04:22:08 +0000
commit72ae15f6b0b419e5bb334a232f00f5710e8597ba (patch)
tree876ae6825109279adddc5811d37c6f7fb8e86d07 /gdb/configure.in
parentab1aa5cd6cd1e18814c20c8801e989fc260b8ee9 (diff)
downloadgdb-72ae15f6b0b419e5bb334a232f00f5710e8597ba.zip
gdb-72ae15f6b0b419e5bb334a232f00f5710e8597ba.tar.gz
gdb-72ae15f6b0b419e5bb334a232f00f5710e8597ba.tar.bz2
* configure.in: Check for setpgid function.
* config.in: Regenerate with autoheader. * configure: Regenerate with autoconf. * inflow.c (_initialize_inflow): Only try to use _SC_JOB_CONTROL if it is actually defined. (gdb_setpgid): Use HAVE_SETPGID. * ch-exp.c: Change include of <string.h> to "gdb_string.h". * c-exp.y: Ditto. * f-exp.y: Ditto. * m2-exp.y: Ditto. * c-exp.y: Include <ctype.h>. * serial.c: Ditto. * config/m68k/nm-news.h: Add typedef for pid_t which is apparently missing from <sys/types.h>. Enclose entire file in NM_NEWS_H ifndef and define when included. * config/mips/nm-news-mips.h: Ditto. * config/m68k/tm-m68k.h (REGISTER_CONVERT_TO_VIRTUAL, REGISTER_CONVERT_TO_RAW): Change name of temporary variable.
Diffstat (limited to 'gdb/configure.in')
-rw-r--r--gdb/configure.in2
1 files changed, 2 insertions, 0 deletions
diff --git a/gdb/configure.in b/gdb/configure.in
index a4c50f1..ddfca60 100644
--- a/gdb/configure.in
+++ b/gdb/configure.in
@@ -40,6 +40,8 @@ AC_HEADER_STDC
AC_CHECK_HEADERS(limits.h memory.h string.h strings.h unistd.h termios.h termio.h sgtty.h stddef.h sys/procfs.h link.h)
AC_HEADER_STAT
+AC_CHECK_FUNCS(setpgid)
+
AC_MSG_CHECKING([for gregset_t type])
AC_CACHE_VAL(gdb_cv_have_gregset_t,
[AC_TRY_LINK([#include <sys/procfs.h>],[gregset_t *gregsetp = 0],