From: Lucian Petrut Date: Fri, 26 Mar 2021 08:15:37 +0000 (+0000) Subject: win32*.sh: disable libcephsqlite when targeting Windows X-Git-Tag: v16.2.5~39^2~5^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=d4e524092ddb14e1f4bc7babc397b93d02f4cba1;p=ceph.git win32*.sh: disable libcephsqlite when targeting Windows The Windows build is failing as sqlite can't be retrieved: http://paste.openstack.org/raw/803940/ We don't support libcephsqlite on Windows for the time being, so we'll just pass WITH_LIBCEPHSQLITE=OFF. Signed-off-by: Lucian Petrut (cherry picked from commit 03f1dabaea103a84fa9459d28466ddbf3ff363a1) --- diff --git a/win32_build.sh b/win32_build.sh index 34e87f54348e..0f6db56371c0 100755 --- a/win32_build.sh +++ b/win32_build.sh @@ -150,6 +150,7 @@ fi # or circular), we'll have to stick to static linking. cmake -D CMAKE_PREFIX_PATH=$depsDirs \ -D CMAKE_TOOLCHAIN_FILE="$MINGW_CMAKE_FILE" \ + -D WITH_LIBCEPHSQLITE=OFF \ -D WITH_RDMA=OFF -D WITH_OPENLDAP=OFF \ -D WITH_GSSAPI=OFF -D WITH_XFS=OFF \ -D WITH_FUSE=OFF -D WITH_DOKAN=ON \