summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2000-06-01 10:09:30 +0000
committerAndrew Cagney <cagney@redhat.com>2000-06-01 10:09:30 +0000
commitcc83bdad849a47f8b60dbda9f4ecc0b916765e12 (patch)
tree1166e9645653a6d0c3ec6672163af6ecdc2595e8
parentc62f87a6e57af825bc24867023c09060dceae95f (diff)
downloadgdb-cc83bdad849a47f8b60dbda9f4ecc0b916765e12.tar.gz
* trad-core.c: From hpux-core.c, include <dirent.h> or
<sys/ndir.h> when possible.
-rw-r--r--bfd/ChangeLog5
-rw-r--r--bfd/trad-core.c14
2 files changed, 18 insertions, 1 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index 798ed4d58d0..475f23d44ce 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,3 +1,8 @@
+Tue May 30 15:39:04 2000 Andrew Cagney <cagney@b1.cygnus.com>
+
+ * trad-core.c: From hpux-core.c, include <dirent.h> or
+ <sys/ndir.h> when possible.
+
2000-05-31 Nick Clifton <nickc@cygnus.com>
* opintl.h (_(String)): Explain why dgettext is used instead
diff --git a/bfd/trad-core.c b/bfd/trad-core.c
index aea6366795b..9cd12c04aee 100644
--- a/bfd/trad-core.c
+++ b/bfd/trad-core.c
@@ -25,7 +25,19 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
#include "libaout.h" /* BFD a.out internal data structures */
#include <sys/param.h>
-#include <sys/dir.h>
+#ifdef HAVE_DIRENT_H
+# include <dirent.h>
+#else
+# ifdef HAVE_SYS_NDIR_H
+# include <sys/ndir.h>
+# endif
+# ifdef HAVE_SYS_DIR_H
+# include <sys/dir.h>
+# endif
+# ifdef HAVE_NDIR_H
+# include <ndir.h>
+# endif
+#endif
#include <signal.h>
#include <sys/user.h> /* After a.out.h */