ceph/cmake/modules/Finduuid.cmake
Kefu Chai b3ceafe7d8 cmake,rpm,deb: update to accommodate SPDK v17.10
* cmake/modules/BuildSPDK.cmake: add lvol
* cmake/modules/BuildDPDK.cmake: add pci and bus_pci
* ceph.spec.in, cmake/modules/BuildSPDK.cmake, debian/control:
  re-introduce libuuid dependency, as 17.07 added lvol. and the latter
  depends on uuid.
* cmake/modules/BuildSPDK.cmake: avoid introducing local variable of
  `iface_libs`.
* cmake/modules/patch-dpdk-conf.sh: disable
  CONFIG_RTE_EAL_NUMA_AWARE_HUGEPAGES, this option introduces the
  balanced allocation of memory. but it also requires libnuma-dev.
  let's disable it for now.

Signed-off-by: Kefu Chai <kchai@redhat.com>
2017-11-29 18:03:23 +08:00

21 lines
563 B
CMake

# Try to find libuuid
# Once done, this will define
#
# UUID_FOUND - system has Profiler
# UUID_INCLUDE_DIR - the Profiler include directories
# UUID_LIBRARIES - link these to use Profiler
if(UUID_INCLUDE_DIR AND UUID_LIBRARIES)
set(UUID_FIND_QUIETLY TRUE)
endif()
find_path(UUID_INCLUDE_DIR NAMES uuid/uuid.h)
find_library(UUID_LIBRARIES NAMES uuid)
set(UUID_LIBRARIES ${LIBUUID})
include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(uuid
DEFAULT_MSG UUID_LIBRARIES UUID_INCLUDE_DIR)
mark_as_advanced(UUID_LIBRARIES UUID_INCLUDE_DIR)