aboutsummaryrefslogtreecommitdiff
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
commit12df4d3c6b87641f9289d604c4f7e211c0bc5eb4 (patch)
tree383c7d93f9b7085b4e2c550fece3c44ca3426dc4
parentca04024df18bf147c2a648ac086cde66a8a7d895 (diff)
downloadfsf-binutils-gdb-12df4d3c6b87641f9289d604c4f7e211c0bc5eb4.zip
fsf-binutils-gdb-12df4d3c6b87641f9289d604c4f7e211c0bc5eb4.tar.gz
fsf-binutils-gdb-12df4d3c6b87641f9289d604c4f7e211c0bc5eb4.tar.bz2
* 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 798ed4d..475f23d 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 aea6366..9cd12c0 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 */