mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-10-16 20:32:21 +08:00
Dummy implementation of solib_aix_free_library_list if libexpat missing.
gdb/ChangeLog: * solib-aix.c (solib_aix_free_library_list): New function for the case where HAVE_LIBEXPAT is not defined.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2013-05-08 Joel Brobecker <brobecker@adacore.com>
|
||||||
|
|
||||||
|
* solib-aix.c (solib_aix_free_library_list): New function
|
||||||
|
for the case where HAVE_LIBEXPAT is not defined.
|
||||||
|
|
||||||
2013-05-07 Sergio Durigan Junior <sergiodj@redhat.com>
|
2013-05-07 Sergio Durigan Junior <sergiodj@redhat.com>
|
||||||
|
|
||||||
PR breakpoints/15413:
|
PR breakpoints/15413:
|
||||||
|
@ -141,6 +141,13 @@ solib_aix_parse_libraries (const char *library)
|
|||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Dummy implementation if XML support is not compiled in. */
|
||||||
|
|
||||||
|
static void
|
||||||
|
solib_aix_free_library_list (void *p)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
#else /* HAVE_LIBEXPAT */
|
#else /* HAVE_LIBEXPAT */
|
||||||
|
|
||||||
#include "xml-support.h"
|
#include "xml-support.h"
|
||||||
|
Reference in New Issue
Block a user