http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47528

--- Comment #9 from Dongsheng Song <dongsheng.song at gmail dot com> 2011-02-08 
10:04:25 UTC ---
Thanks, with the following patch (Windows.h => windows.h),
the building OK now:

$ git diff ld/configure.in ld/plugin.c
diff --git a/ld/configure.in b/ld/configure.in
index 2836545..bd5040e 100644
--- a/ld/configure.in
+++ b/ld/configure.in
@@ -173,7 +173,7 @@ AC_SEARCH_LIBS([dlopen],[dl],[],[enable_plugins=no],[])
 AC_CHECK_FUNCS([dlopen dlsym dlclose],[],[enable_plugins=no])
 # We also support plugins on Windows (MinGW).
 if test x$enable_plugins = xno ; then
-  AC_CHECK_HEADERS([Windows.h],[enable_plugins=yes],[],[AC_INCLUDES_DEFAULT])
+  AC_CHECK_HEADERS([windows.h],[enable_plugins=yes],[],[AC_INCLUDES_DEFAULT])
 fi
 AM_CONDITIONAL([ENABLE_PLUGINS], [test x$enable_plugins = xyes])

diff --git a/ld/plugin.c b/ld/plugin.c
index b285787..8631d25 100644
--- a/ld/plugin.c
+++ b/ld/plugin.c
@@ -33,7 +33,7 @@
 #include "plugin-api.h"
 #include "elf-bfd.h"
 #if !defined (HAVE_DLFCN_H) && defined (HAVE_WINDOWS_H)
-#include <Windows.h>
+#include <windows.h>
 #endif

 /* The suffix to append to the name of the real (claimed) object file

Reply via email to