summaryrefslogtreecommitdiff
path: root/autoconf
diff options
context:
space:
mode:
authorKeno Fischer <kfischer@college.harvard.edu>2015-11-28 00:54:12 +0000
committerKeno Fischer <kfischer@college.harvard.edu>2015-11-28 00:54:12 +0000
commit66f5f81e893a1d7a92fd846801f1dfc3c183a957 (patch)
tree1583c63520671eae0aa289ca619ca4a7ab24a276 /autoconf
parente29bf07833fd270aeda5cf9f3c77d0ecd0b42307 (diff)
[autoconf] Fix MinGW build
This is the autoconf analog of r251201. I realize autoconf is deprecated, but while it's in tree, it should at least be kept working. Also add the deprecation message to configure.ac such that AutoRegen actually picks ip up. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@254215 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'autoconf')
-rw-r--r--autoconf/configure.ac12
1 files changed, 12 insertions, 0 deletions
diff --git a/autoconf/configure.ac b/autoconf/configure.ac
index 3b22eb9c6d5..16535dfba4a 100644
--- a/autoconf/configure.ac
+++ b/autoconf/configure.ac
@@ -1643,6 +1643,7 @@ if test "$llvm_cv_os_type" = "MingW" ; then
AC_CHECK_LIB(ole32, main)
AC_CHECK_LIB(psapi, main)
AC_CHECK_LIB(shell32, main)
+ AC_CHECK_LIB(uuid,main)
fi
dnl dlopen() is required for plugin support.
@@ -2241,3 +2242,14 @@ AC_CONFIG_MAKEFILE(bindings/ocaml/Makefile.ocaml)
dnl Finally, crank out the output
AC_OUTPUT
+echo ""
+echo ""
+echo "################################################################################"
+echo "################################################################################"
+echo "The LLVM project has deprecated building with configure & make."
+echo "The autoconf-based makefile build system will be removed in the 3.9 release."
+echo ""
+echo "Please migrate to the CMake-based build system."
+echo "For more information see: http://llvm.org/docs/CMake.html"
+echo "################################################################################"
+echo "################################################################################"