* plugin.cc: Don't include dlfcn.h when ENABLE_PLUGINS is not
authorIan Lance Taylor <ian@airs.com>
Fri, 9 Oct 2009 23:07:30 +0000 (23:07 +0000)
committerIan Lance Taylor <ian@airs.com>
Fri, 9 Oct 2009 23:07:30 +0000 (23:07 +0000)
defined.

gold/ChangeLog
gold/plugin.cc

index 05320fa..098d347 100644 (file)
@@ -1,5 +1,10 @@
 2009-10-09  Andrew Pinski  <andrew_pinski@playstation.sony.com>
 
+       * plugin.cc: Don't include dlfcn.h when ENABLE_PLUGINS is not
+       defined.
+
+2009-10-09  Andrew Pinski  <andrew_pinski@playstation.sony.com>
+
        * dwarf_reader.cc (Sized_dwarf_line_info::Sized_dwarf_line_info):
        Change read_shndx type to unsigned int.
        (Sized_dwarf_line_info::read_lines): Change shndx type to unsigned
index ccbcffd..104ac5c 100644 (file)
 #include <cstring>
 #include <string>
 #include <vector>
+
+#ifdef ENABLE_PLUGINS
 #include <dlfcn.h>
+#endif
 
 #include "gold.h"
 #include "parameters.h"