Author: rinrab
Date: Fri Oct 4 17:15:09 2024
New Revision: 1921113
URL: http://svn.apache.org/viewvc?rev=1921113&view=rev
Log:
cmake: Enable KWallet authentication when we build it.
This will enable search of this provider in
svn_auth_get_platform_specific_provider.
* CMakeLists.txt
(defines): Add 'SVN_HAVE_KWALLET' compile definition if KWallet auth
is enabled.
Modified:
subversion/trunk/CMakeLists.txt
Modified: subversion/trunk/CMakeLists.txt
URL:
http://svn.apache.org/viewvc/subversion/trunk/CMakeLists.txt?rev=1921113&r1=1921112&r2=1921113&view=diff
==============================================================================
--- subversion/trunk/CMakeLists.txt (original)
+++ subversion/trunk/CMakeLists.txt Fri Oct 4 17:15:09 2024
@@ -136,6 +136,10 @@ if (SVN_ENABLE_FS_X)
add_compile_definitions("SVN_LIBSVN_FS_LINKS_FS_X")
endif()
+if(SVN_ENABLE_AUTH_KWALLET)
+ add_compile_definitions("SVN_HAVE_KWALLET")
+endif()
+
if (SVN_DEBUG)
add_compile_definitions("SVN_DEBUG")
endif()