summaryrefslogtreecommitdiffstats
path: root/redhat/kdesdk/kdesdk-3.5.13-fix_ftbfs_on_newer_svn.patch
diff options
context:
space:
mode:
authorFrançois Andriot <albator78@libertysurf.fr>2013-06-24 19:50:32 +0200
committerFrançois Andriot <albator78@libertysurf.fr>2013-06-24 19:50:32 +0200
commitb4359e8bf97799f83dc1ca62744db7cfcc81bc87 (patch)
tree3346872613490cc467c19e1645d0026c1221bce7 /redhat/kdesdk/kdesdk-3.5.13-fix_ftbfs_on_newer_svn.patch
parent4cc71d79c5718d59078d06c497a56d7c05b41576 (diff)
downloadtde-packaging-b4359e8bf97799f83dc1ca62744db7cfcc81bc87.tar.gz
tde-packaging-b4359e8bf97799f83dc1ca62744db7cfcc81bc87.zip
RPM Packaging: rename directories
Diffstat (limited to 'redhat/kdesdk/kdesdk-3.5.13-fix_ftbfs_on_newer_svn.patch')
-rw-r--r--redhat/kdesdk/kdesdk-3.5.13-fix_ftbfs_on_newer_svn.patch32
1 files changed, 0 insertions, 32 deletions
diff --git a/redhat/kdesdk/kdesdk-3.5.13-fix_ftbfs_on_newer_svn.patch b/redhat/kdesdk/kdesdk-3.5.13-fix_ftbfs_on_newer_svn.patch
deleted file mode 100644
index 38db4c083..000000000
--- a/redhat/kdesdk/kdesdk-3.5.13-fix_ftbfs_on_newer_svn.patch
+++ /dev/null
@@ -1,32 +0,0 @@
-commit 572169a2e18705e526990c52924a268b218ff52b
-Author: Timothy Pearson <kb9vqf@pearsoncomputing.net>
-Date: 1340737965 -0500
-
- Fix FTBFS on newer subversion libraries
- This closes Bug 872
-
-diff --git a/kioslave/svn/ConfigureChecks.cmake b/kioslave/svn/ConfigureChecks.cmake
-index 81358c6..3d46c74 100644
---- a/kioslave/svn/ConfigureChecks.cmake
-+++ b/kioslave/svn/ConfigureChecks.cmake
-@@ -19,12 +19,16 @@ endif( )
-
- # check for subversion library
-
--check_library_exists( "svn_client-1" "svn_pool_create_ex" "${SVN_LIBRARY_DIR}" HAVE_SVN_POOL_CREATE_EX )
--
--if( HAVE_SVN_POOL_CREATE_EX )
-+check_library_exists( "svn_client-1" "svn_pool_create_ex" "${SVN_LIBRARY_DIR}" HAVE_SVN_POOL_CREATE_EX_SVN_CLIENT )
-+if( HAVE_SVN_POOL_CREATE_EX_SVN_CLIENT )
- set( SVN_LIBRARIES "svn_client-1;svn_subr-1;svn_ra-1" )
- else( )
-- tde_message_fatal( "svn_client-1 library was not found on your system.\n Subversion is installed?\n Try to set SVN_LIBRARY_DIR to subversion library directory." )
-+ check_library_exists( "svn_subr-1" "svn_pool_create_ex" "${SVN_LIBRARY_DIR}" HAVE_SVN_POOL_CREATE_EX_SUBR )
-+ if( HAVE_SVN_POOL_CREATE_EX_SUBR )
-+ set( SVN_LIBRARIES "svn_client-1;svn_subr-1;svn_ra-1" )
-+ else( )
-+ tde_message_fatal( "svn_client-1 or svn_subr-1 library was not found on your system.\n Subversion is installed?\n Try to set SVN_LIBRARY_DIR to subversion library directory." )
-+ endif( )
- endif( )
-
-