summaryrefslogtreecommitdiff
path: root/include/llvm
diff options
context:
space:
mode:
authorJeffrey Yasskin <jyasskin@google.com>2009-09-25 21:07:20 +0000
committerJeffrey Yasskin <jyasskin@google.com>2009-09-25 21:07:20 +0000
commitb7a8d400be7ce9e275c6e09a2a90fbacd0566476 (patch)
treee6672c6bfcfbd36acec8558a0dd83d5378e22474 /include/llvm
parent9d06175a15a61b977ebbabd0d9cc738ebfa7870c (diff)
downloadllvm-b7a8d400be7ce9e275c6e09a2a90fbacd0566476.tar.gz
llvm-b7a8d400be7ce9e275c6e09a2a90fbacd0566476.tar.bz2
llvm-b7a8d400be7ce9e275c6e09a2a90fbacd0566476.tar.xz
Fix a compile failure introduced by r82675 on MinGW which doesn't have
setenv(). This patch just disables the test rather than getting putenv() to work. Thanks to Sandeep Patel for reporting the problem. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@82797 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm')
-rw-r--r--include/llvm/Config/config.h.cmake3
-rw-r--r--include/llvm/Config/config.h.in3
2 files changed, 6 insertions, 0 deletions
diff --git a/include/llvm/Config/config.h.cmake b/include/llvm/Config/config.h.cmake
index 360ca5d9c1..d8de146c8c 100644
--- a/include/llvm/Config/config.h.cmake
+++ b/include/llvm/Config/config.h.cmake
@@ -291,6 +291,9 @@
/* Define to 1 if you have the `sbrk' function. */
#undef HAVE_SBRK
+/* Define to 1 if you have the `setenv' function. */
+#cmakedefine HAVE_SETENV ${HAVE_SETENV}
+
/* Define to 1 if you have the `setjmp' function. */
#undef HAVE_SETJMP
diff --git a/include/llvm/Config/config.h.in b/include/llvm/Config/config.h.in
index f32f4038ff..5257df97b2 100644
--- a/include/llvm/Config/config.h.in
+++ b/include/llvm/Config/config.h.in
@@ -321,6 +321,9 @@
/* Define to 1 if you have the `sbrk' function. */
#undef HAVE_SBRK
+/* Define to 1 if you have the `setenv' function. */
+#undef HAVE_SETENV
+
/* Define to 1 if you have the `setjmp' function. */
#undef HAVE_SETJMP