diff options
author | Joel Brobecker <brobecker@gnat.com> | 2013-05-08 06:10:03 +0000 |
---|---|---|
committer | Joel Brobecker <brobecker@gnat.com> | 2013-05-08 06:10:03 +0000 |
commit | 814a3ff71b0e90f67eb9003ca37fa90094204152 (patch) | |
tree | f2cdfd05d2d0fd21bb46cef37c59d8e92eab8027 /gdb | |
parent | 2874cb8393678a041dc533fa54debd5e862d7616 (diff) | |
download | gdb-814a3ff71b0e90f67eb9003ca37fa90094204152.zip gdb-814a3ff71b0e90f67eb9003ca37fa90094204152.tar.gz gdb-814a3ff71b0e90f67eb9003ca37fa90094204152.tar.bz2 |
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.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/solib-aix.c | 7 |
2 files changed, 12 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 2506ce5..f830db6 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -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> PR breakpoints/15413: diff --git a/gdb/solib-aix.c b/gdb/solib-aix.c index d930769..9fa5de9 100644 --- a/gdb/solib-aix.c +++ b/gdb/solib-aix.c @@ -141,6 +141,13 @@ solib_aix_parse_libraries (const char *library) return NULL; } +/* Dummy implementation if XML support is not compiled in. */ + +static void +solib_aix_free_library_list (void *p) +{ +} + #else /* HAVE_LIBEXPAT */ #include "xml-support.h" |