Hello community, here is the log from the commit of package nfs-ganesha for openSUSE:Factory checked in at 2019-08-27 10:12:54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/nfs-ganesha (Old) and /work/SRC/openSUSE:Factory/.nfs-ganesha.new.7948 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "nfs-ganesha" Tue Aug 27 10:12:54 2019 rev:5 rq:725264 version:2.8.dev.29+git.1557746732.251ace12d Changes: -------- --- /work/SRC/openSUSE:Factory/nfs-ganesha/nfs-ganesha.changes 2019-05-14 13:43:21.492638882 +0200 +++ /work/SRC/openSUSE:Factory/.nfs-ganesha.new.7948/nfs-ganesha.changes 2019-08-27 10:12:55.351973390 +0200 @@ -1,0 +2,6 @@ +Tue Aug 6 21:04:20 UTC 2019 - Stefan BrĂ¼ns <[email protected]> + +- Fix build with CMake 3.15.1, https://github.com/nfs-ganesha/nfs-ganesha/issues/454 + + add-missing-CheckSymbolExists-include.patch + +------------------------------------------------------------------- New: ---- add-missing-CheckSymbolExists-include.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ nfs-ganesha.spec ++++++ --- /var/tmp/diff_new_pack.ohGD8u/_old 2019-08-27 10:12:56.035973345 +0200 +++ /var/tmp/diff_new_pack.ohGD8u/_new 2019-08-27 10:12:56.035973345 +0200 @@ -113,6 +113,8 @@ Url: https://github.com/nfs-ganesha/nfs-ganesha/wiki Source: %{name}-%{version}.tar.bz2 +# PATCH-FIX-UPSTREAM https://github.com/nfs-ganesha/nfs-ganesha/pull/455.patch +Patch0: add-missing-CheckSymbolExists-include.patch %if 0%{?suse_version} %if 0%{?is_opensuse} @@ -442,6 +444,7 @@ %prep %setup -q +%patch0 -p2 %build export LANGUAGE=en_US.UTF-8 ++++++ add-missing-CheckSymbolExists-include.patch ++++++ >From ddce6e86d87810225b81c40841cf16bda304adc7 Mon Sep 17 00:00:00 2001 From: StefanBruens <[email protected]> Date: Tue, 6 Aug 2019 23:00:59 +0200 Subject: [PATCH] Add explicit CheckSymbolExists include --- src/cmake/modules/FindCEPHFS.cmake | 1 + 1 file changed, 1 insertion(+) diff --git a/src/cmake/modules/FindCEPHFS.cmake b/src/cmake/modules/FindCEPHFS.cmake index e7266fb5ee..706b498b48 100644 --- a/src/cmake/modules/FindCEPHFS.cmake +++ b/src/cmake/modules/FindCEPHFS.cmake @@ -127,6 +127,7 @@ else (NOT CEPH_FS) endif(NOT CEPH_FS_GET_FS_CID) set(CMAKE_REQUIRED_INCLUDES ${CEPHFS_INCLUDE_DIR}) + include(CheckSymbolExists) check_symbol_exists(CEPH_STATX_INO "cephfs/libcephfs.h" CEPH_FS_CEPH_STATX) if(NOT CEPH_FS_CEPH_STATX) message("Cannot find CEPH_STATX_INO. Enabling backward compatibility for pre-ceph_statx APIs.")
