[llvm] r282785 - Fix HAVE_POSIX_FALLOCATE entry.

Joerg Sonnenberger via llvm-commits llvm-commits at lists.llvm.org
Thu Sep 29 14:39:54 PDT 2016


Author: joerg
Date: Thu Sep 29 16:39:53 2016
New Revision: 282785

URL: http://llvm.org/viewvc/llvm-project?rev=282785&view=rev
Log:
Fix HAVE_POSIX_FALLOCATE entry.

Modified:
    llvm/trunk/include/llvm/Config/config.h.cmake

Modified: llvm/trunk/include/llvm/Config/config.h.cmake
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Config/config.h.cmake?rev=282785&r1=282784&r2=282785&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Config/config.h.cmake (original)
+++ llvm/trunk/include/llvm/Config/config.h.cmake Thu Sep 29 16:39:53 2016
@@ -179,6 +179,9 @@
 /* Define to 1 if you have the <ndir.h> header file, and it defines `DIR'. */
 #cmakedefine HAVE_NDIR_H ${HAVE_NDIR_H}
 
+/* Define to 1 if you have the `posix_fallocate' function. */
+#cmakedefine HAVE_POSIX_FALLOCATE ${HAVE_POSIX_FALLOCATE}
+
 /* Define to 1 if you have the `posix_spawn' function. */
 #cmakedefine HAVE_POSIX_SPAWN ${HAVE_POSIX_SPAWN}
 
@@ -537,6 +540,4 @@
 /* Define to 1 if you have the `_chsize_s' function. */
 #cmakedefine HAVE__CHSIZE_S ${HAVE__CHSIZE_S}
 
-#cmakedefine HAVE_POSIX_FALLOCATE ${HAVE_POSIX_FALLOCATE}
-
 #endif




More information about the llvm-commits mailing list