mirror of
https://github.com/ceph/ceph
synced 2024-12-11 22:18:18 +00:00
b3ceafe7d8
* 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>
21 lines
563 B
CMake
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)
|