[llvm-commits] [llvm] r83341 - /llvm/trunk/cmake/config-ix.cmake

Edward O'Callaghan eocallaghan at auroraux.org
Mon Oct 5 16:05:32 PDT 2009


Author: evocallaghan
Date: Mon Oct  5 18:05:32 2009
New Revision: 83341

URL: http://llvm.org/viewvc/llvm-project?rev=83341&view=rev
Log:
CMake misses a check for sbrk on NetBSD.

Modified:
    llvm/trunk/cmake/config-ix.cmake

Modified: llvm/trunk/cmake/config-ix.cmake
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/cmake/config-ix.cmake?rev=83341&r1=83340&r2=83341&view=diff

==============================================================================
--- llvm/trunk/cmake/config-ix.cmake (original)
+++ llvm/trunk/cmake/config-ix.cmake Mon Oct  5 18:05:32 2009
@@ -86,6 +86,7 @@
 check_symbol_exists(mkstemp unistd.h HAVE_MKSTEMP)
 check_symbol_exists(mktemp unistd.h HAVE_MKTEMP)
 check_symbol_exists(pthread_mutex_lock pthread.h HAVE_PTHREAD_MUTEX_LOCK)
+check_symbol_exists(sbrk unistd.h HAVE_SBRK)
 check_symbol_exists(strtoll stdlib.h HAVE_STRTOLL)
 check_symbol_exists(strerror string.h HAVE_STRERROR)
 check_symbol_exists(strerror_r string.h HAVE_STRERROR_R)





More information about the llvm-commits mailing list