OSDN Git Service

* configure.in: include nlist.h when checking for member som_addr
authorjtc <jtc>
Fri, 22 Jun 2001 16:01:30 +0000 (16:01 +0000)
committerjtc <jtc>
Fri, 22 Jun 2001 16:01:30 +0000 (16:01 +0000)
in struct so_map.
* configure: regenerate.

gdb/ChangeLog
gdb/configure
gdb/configure.in

index ffc8a1c..d6c4f5f 100644 (file)
@@ -1,3 +1,9 @@
+2001-06-22  J.T. Conklin  <jtc@redback.com>
+
+       * configure.in: include nlist.h when checking for member som_addr
+       in struct so_map.
+       * configure: regenerate.
+
 2001-06-21  Keith Seitz  <keiths@redhat.com>
 
        * cli-out.c (cli_out_new): Initialize new structure member
index 16e6a37..cee0573 100755 (executable)
@@ -5404,6 +5404,9 @@ else
 #line 5405 "configure"
 #include "confdefs.h"
 #include <sys/types.h>
+#ifdef HAVE_NLIST_H
+#include <nlist.h>
+#endif
 #include <link.h>
 int main() {
 struct so_map lm; (void) lm.som_addr;
index 8bbcb18..7a4020a 100644 (file)
@@ -341,6 +341,9 @@ if test ${host} = ${target} ; then
   AC_MSG_CHECKING(for member som_addr in struct so_map)
   AC_CACHE_VAL(gdb_cv_have_struct_so_map_with_som_members,
     [AC_TRY_COMPILE([#include <sys/types.h>
+#ifdef HAVE_NLIST_H
+#include <nlist.h>
+#endif
 #include <link.h>],
                     [struct so_map lm; (void) lm.som_addr;],
                     gdb_cv_have_struct_so_map_with_som_members=yes,