aboutsummaryrefslogtreecommitdiff
path: root/bfd
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2009-10-23 05:45:27 +0000
committerAlan Modra <amodra@gmail.com>2009-10-23 05:45:27 +0000
commit98950613d80b6b340f11115cd9920b6d56e4dcfd (patch)
tree8f61a25ff4c218d85544866cbd9ab19dd27bdded /bfd
parent07f1e47a64cf333e0484c235be7a91f7d62732e2 (diff)
downloadgdb-98950613d80b6b340f11115cd9920b6d56e4dcfd.zip
gdb-98950613d80b6b340f11115cd9920b6d56e4dcfd.tar.gz
gdb-98950613d80b6b340f11115cd9920b6d56e4dcfd.tar.bz2
* plugin.c: Produce empty object if not BFD_SUPPORTS_PLUGINS.
Diffstat (limited to 'bfd')
-rw-r--r--bfd/ChangeLog4
-rw-r--r--bfd/plugin.c5
2 files changed, 9 insertions, 0 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index f3aedb6..6fabb76 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,3 +1,7 @@
+2009-10-23 Alan Modra <amodra@bigpond.net.au>
+
+ * plugin.c: Produce empty object if not BFD_SUPPORTS_PLUGINS.
+
2009-10-20 Alan Modra <amodra@bigpond.net.au>
PR binutils/10802
diff --git a/bfd/plugin.c b/bfd/plugin.c
index a81db6f..2874fa6 100644
--- a/bfd/plugin.c
+++ b/bfd/plugin.c
@@ -20,6 +20,10 @@
MA 02110-1301, USA. */
#include "config.h"
+#include "bfd.h"
+
+#if BFD_SUPPORTS_PLUGINS
+
#include <assert.h>
#include <dlfcn.h>
#include <stdarg.h>
@@ -492,3 +496,4 @@ const bfd_target plugin_vec =
NULL /* backend_data. */
};
+#endif /* BFD_SUPPORTS_PLUGIN */