diff options
author | 2020-09-01 14:58:12 -0400 | |
---|---|---|
committer | 2020-09-01 14:58:12 -0400 | |
commit | c21fa21f38c9600fd6c8aaf216e411ef4dfe843f (patch) | |
tree | 4e1db4e0be168bd7cdfa126d52ec469b5a8f335a /media-tv/kodi/files | |
parent | media-plugins/kodi-audioencoder-vorbis: Keyword 3.0.1 arm, #734070 (diff) | |
download | gentoo-c21fa21f38c9600fd6c8aaf216e411ef4dfe843f.tar.gz gentoo-c21fa21f38c9600fd6c8aaf216e411ef4dfe843f.tar.bz2 gentoo-c21fa21f38c9600fd6c8aaf216e411ef4dfe843f.zip |
media-tv/kodi: Cleanup old versions
Package-Manager: Portage-3.0.5, Repoman-3.0.1
Signed-off-by: Craig Andrews <candrews@gentoo.org>
Diffstat (limited to 'media-tv/kodi/files')
-rw-r--r-- | media-tv/kodi/files/kodi-19.0_alpha1-conditional-TestHTTPDirectory.patch | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/media-tv/kodi/files/kodi-19.0_alpha1-conditional-TestHTTPDirectory.patch b/media-tv/kodi/files/kodi-19.0_alpha1-conditional-TestHTTPDirectory.patch deleted file mode 100644 index 096a4032628b..000000000000 --- a/media-tv/kodi/files/kodi-19.0_alpha1-conditional-TestHTTPDirectory.patch +++ /dev/null @@ -1,31 +0,0 @@ -From 3be79a564343886ade7e88f447944fd4b5452959 Mon Sep 17 00:00:00 2001 -From: Craig Andrews <candrews@integralblue.com> -Date: Fri, 31 Jul 2020 14:56:21 -0400 -Subject: [PATCH] [test] [webserver] Conditional TestHTTPDirectory - -TestHTTPDirectory.cpp requires microhttpd so only include it if microhttpd is found. - -TestHTTPDirectory.cpp includes network/WebServer.h which includes network/httprequesthandler/IHTTPRequestHandler.h which includes microhttpd.h ---- - xbmc/filesystem/test/CMakeLists.txt | 5 ++++- - 1 file changed, 4 insertions(+), 1 deletion(-) - -diff --git a/xbmc/filesystem/test/CMakeLists.txt b/xbmc/filesystem/test/CMakeLists.txt -index 235acc8549cf..9572459cf198 100644 ---- a/xbmc/filesystem/test/CMakeLists.txt -+++ b/xbmc/filesystem/test/CMakeLists.txt -@@ -1,10 +1,13 @@ - set(SOURCES TestDirectory.cpp - TestFile.cpp - TestFileFactory.cpp -- TestHTTPDirectory.cpp - TestZipFile.cpp - TestZipManager.cpp) - -+if(MICROHTTPD_FOUND) -+ list(APPEND SOURCES TestHTTPDirectory.cpp) -+endif() -+ - if(NFS_FOUND) - list(APPEND SOURCES TestNfsFile.cpp) - endif() |