Commit f74b4ee7 authored by Leif Walsh's avatar Leif Walsh Committed by Yoni Fogel

[t:4814] fix symbol existence checking

git-svn-id: file:///svn/toku/tokudb@43400 c7de825b-a66e-492c-adef-691d508d4ae1
parent 357b4981
...@@ -38,9 +38,9 @@ check_include_files(unistd.h HAVE_UNISTD_H) ...@@ -38,9 +38,9 @@ check_include_files(unistd.h HAVE_UNISTD_H)
include(CheckSymbolExists) include(CheckSymbolExists)
## check whether we can set the mmap threshold like we can in gnu libc's malloc ## check whether we can set the mmap threshold like we can in gnu libc's malloc
check_symbol_exists(M_MMAP_THRESHOLD "malloc.h;sys/malloc.h" HAVE_M_MMAP_THRESHOLD) check_symbol_exists(M_MMAP_THRESHOLD "malloc.h" HAVE_M_MMAP_THRESHOLD)
## check whether we have CLOCK_REALTIME ## check whether we have CLOCK_REALTIME
check_symbol_exists(CLOCK_REALTIME "time.h;sys/time.h" HAVE_CLOCK_REALTIME) check_symbol_exists(CLOCK_REALTIME "time.h" HAVE_CLOCK_REALTIME)
include(CheckFunctionExists) include(CheckFunctionExists)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment