aboutsummaryrefslogtreecommitdiff
path: root/ld/configure.in
diff options
context:
space:
mode:
authorJoseph Myers <joseph@codesourcery.com>2011-03-28 10:27:07 +0000
committerJoseph Myers <joseph@codesourcery.com>2011-03-28 10:27:07 +0000
commitf31d24a0a1236c774e77b9bdb69eab870dddb8e9 (patch)
tree2cdc4512c7109357a08ba76d301ac478d05f0694 /ld/configure.in
parentf8eb4131aee97b9d8f41979d42b7358a0d1ecaae (diff)
downloadfsf-binutils-gdb-f31d24a0a1236c774e77b9bdb69eab870dddb8e9.zip
fsf-binutils-gdb-f31d24a0a1236c774e77b9bdb69eab870dddb8e9.tar.gz
fsf-binutils-gdb-f31d24a0a1236c774e77b9bdb69eab870dddb8e9.tar.bz2
* configure.in: Check for windows.h, not Windows.h.
* configure: Regenerate. * plugin.c: Include windows.h, not Windows.h.
Diffstat (limited to 'ld/configure.in')
-rw-r--r--ld/configure.in2
1 files changed, 1 insertions, 1 deletions
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])