* configure.in (AC_CHECK_HEADERS): Add sys/file.h.
authorMichael Sokolov <msokolov@ivan.harhan.org>
Wed, 14 Feb 2001 18:48:40 +0000 (18:48 +0000)
committerMichael Sokolov <msokolov@ivan.harhan.org>
Wed, 14 Feb 2001 18:48:40 +0000 (18:48 +0000)
* configure, config.in: Regenerate.
* corelow.c: Include <sys/file.h> if present.

gdb/ChangeLog
gdb/config.in
gdb/configure
gdb/configure.in
gdb/corelow.c

index 95d879ce1ed1789be471bed40764ad45f115cf56..215fc1486189095cc5ee2a68021d073e489b4356 100644 (file)
@@ -1,3 +1,9 @@
+2001-02-14  Michael Sokolov  <msokolov@ivan.Harhan.ORG>
+
+       * configure.in (AC_CHECK_HEADERS): Add sys/file.h.
+       * configure, config.in: Regenerate.
+       * corelow.c: Include <sys/file.h> if present.
+
 2001-02-14  Andrew Cagney  <ac131313@redhat.com>
 
        * inflow.c (terminal_ours_1): Initialize ``osigtou''.  Only
index 402e9d070f2e84adf33537e6b598aa5e5a532b97..b66c7368246026aef82dcda1ebcb9d9bdc2d7b76 100644 (file)
 /* Define if you have the <sys/dir.h> header file.  */
 #undef HAVE_SYS_DIR_H
 
+/* Define if you have the <sys/file.h> header file.  */
+#undef HAVE_SYS_FILE_H
+
 /* Define if you have the <sys/ioctl.h> header file.  */
 #undef HAVE_SYS_IOCTL_H
 
index 96765ccb2e82d04cca8f268de344a67b46508edc..9032d82b60e8737ad2ca64557d0b3af91b059210 100755 (executable)
@@ -3384,7 +3384,7 @@ for ac_hdr in ctype.h endian.h link.h thread_db.h proc_service.h \
        string.h sys/procfs.h sys/ptrace.h sys/reg.h stdint.h \
        term.h termio.h termios.h unistd.h wait.h sys/wait.h \
        wchar.h wctype.h asm/debugreg.h sys/debugreg.h sys/select.h \
-       time.h sys/ioctl.h sys/user.h \
+       time.h sys/file.h sys/ioctl.h sys/user.h \
        dirent.h sys/ndir.h sys/dir.h ndir.h \
        curses.h ncurses.h \
        poll.h sys/poll.h
index 4c09049e9835d6d5ecd314aaa0567b1487845c32..ba2ced9eae6f6248ba00465750f059fcc469183d 100644 (file)
@@ -1,5 +1,6 @@
 dnl Autoconf configure script for GDB, the GNU debugger.
-dnl Copyright 1995, 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
+dnl Copyright 1995, 1996, 1997, 1998, 1999, 2000,
+dnl 2001 Free Software Foundation, Inc.
 dnl
 dnl This file is part of GDB.
 dnl 
@@ -122,7 +123,7 @@ AC_CHECK_HEADERS(ctype.h endian.h link.h thread_db.h proc_service.h \
        string.h sys/procfs.h sys/ptrace.h sys/reg.h stdint.h \
        term.h termio.h termios.h unistd.h wait.h sys/wait.h \
        wchar.h wctype.h asm/debugreg.h sys/debugreg.h sys/select.h \
-       time.h sys/ioctl.h sys/user.h \
+       time.h sys/file.h sys/ioctl.h sys/user.h \
        dirent.h sys/ndir.h sys/dir.h ndir.h \
        curses.h ncurses.h \
        poll.h sys/poll.h)
index 78e50ae4430ca8391ef09a972e7d16c7287d6ca2..05baf334cbdcbc27b120e6db267e7fb1b4eb64d5 100644 (file)
@@ -1,5 +1,5 @@
 /* Core dump and executable file functions below target vector, for GDB.
-   Copyright 1986, 87, 89, 91, 92, 93, 94, 95, 96, 97, 1998, 2000
+   Copyright 1986, 87, 89, 91, 92, 93, 94, 95, 96, 97, 1998, 2000, 2001
    Free Software Foundation, Inc.
 
    This file is part of GDB.
@@ -24,6 +24,9 @@
 #include <errno.h>
 #include <signal.h>
 #include <fcntl.h>
+#ifdef HAVE_SYS_FILE_H
+#include <sys/file.h>          /* needed for F_OK and friends */
+#endif
 #include "frame.h"             /* required by inferior.h */
 #include "inferior.h"
 #include "symtab.h"