diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2015-06-18 04:16:05 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2015-06-18 04:16:05 +0000 |
commit | e520b7069e1cda16708697ddd96199a5418c01c6 (patch) | |
tree | c298a6dbec4329f231c0452b275b478d5851c930 /autoconf | |
parent | 3c1e805769c39066e52772777b4b473325f97881 (diff) |
[autoconf] Detect OLE32 for mingw.
It has been done in CMake build.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@239989 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'autoconf')
-rw-r--r-- | autoconf/configure.ac | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/autoconf/configure.ac b/autoconf/configure.ac index 644c5aeaf2a..0942c8e4e38 100644 --- a/autoconf/configure.ac +++ b/autoconf/configure.ac @@ -1632,6 +1632,7 @@ dnl===-----------------------------------------------------------------------=== AC_CHECK_LIB(m,sin) if test "$llvm_cv_os_type" = "MingW" ; then AC_CHECK_LIB(imagehlp, main) + AC_CHECK_LIB(ole32, main) AC_CHECK_LIB(psapi, main) AC_CHECK_LIB(shell32, main) fi |