gdb/
authorJan Kratochvil <jan.kratochvil@redhat.com>
Sat, 3 Dec 2011 18:32:29 +0000 (18:32 +0000)
committerJan Kratochvil <jan.kratochvil@redhat.com>
Sat, 3 Dec 2011 18:32:29 +0000 (18:32 +0000)
Fix compilation --without-expat.
* solib-svr4.c (svr4_free_so, svr4_free_library_list): Move them here
from ...
[HAVE_LIBEXPAT] (svr4_free_so, svr4_free_library_list): ... here.

gdb/ChangeLog
gdb/solib-svr4.c

index 5673a5610f789e4732d144064d444eb2f0ce3f25..256353ca43b2165e4146d2b308f0f7da5f47548e 100644 (file)
@@ -1,3 +1,10 @@
+2011-12-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
+
+       Fix compilation --without-expat.
+       * solib-svr4.c (svr4_free_so, svr4_free_library_list): Move them here
+       from ...
+       [HAVE_LIBEXPAT] (svr4_free_so, svr4_free_library_list): ... here.
+
 2011-12-02  Paul Pluzhnikov  <ppluzhnikov@google.com>
            Jan Kratochvil  <jan.kratochvil@redhat.com>
 
index 9be582c152b23ab3859f6a00996d403a0ec3b4f1..83d79046dd9a95aa017f080481bd2193eaa9c3a2 100644 (file)
@@ -961,6 +961,30 @@ struct svr4_library_list
   CORE_ADDR main_lm;
 };
 
+/* Implementation for target_so_ops.free_so.  */
+
+static void
+svr4_free_so (struct so_list *so)
+{
+  xfree (so->lm_info);
+}
+
+/* Free so_list built so far (called via cleanup).  */
+
+static void
+svr4_free_library_list (void *p_list)
+{
+  struct so_list *list = *(struct so_list **) p_list;
+
+  while (list != NULL)
+    {
+      struct so_list *next = list->next;
+
+      svr4_free_so (list);
+      list = next;
+    }
+}
+
 #ifdef HAVE_LIBEXPAT
 
 #include "xml-support.h"
@@ -1050,30 +1074,6 @@ static const struct gdb_xml_element svr4_library_list_elements[] =
   { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
 };
 
-/* Implementation for target_so_ops.free_so.  */
-
-static void
-svr4_free_so (struct so_list *so)
-{
-  xfree (so->lm_info);
-}
-
-/* Free so_list built so far (called via cleanup).  */
-
-static void
-svr4_free_library_list (void *p_list)
-{
-  struct so_list *list = *(struct so_list **) p_list;
-
-  while (list != NULL)
-    {
-      struct so_list *next = list->next;
-
-      svr4_free_so (list);
-      list = next;
-    }
-}
-
 /* Parse qXfer:libraries:read packet into *SO_LIST_RETURN.  Return 1 if
 
    Return 0 if packet not supported, *SO_LIST_RETURN is not modified in such