summaryrefslogtreecommitdiffstats
path: root/redhat/main/tdeaddons/tdeaddons-14.0.1-fix_sdl_detection.patch
diff options
context:
space:
mode:
Diffstat (limited to 'redhat/main/tdeaddons/tdeaddons-14.0.1-fix_sdl_detection.patch')
-rw-r--r--redhat/main/tdeaddons/tdeaddons-14.0.1-fix_sdl_detection.patch18
1 files changed, 0 insertions, 18 deletions
diff --git a/redhat/main/tdeaddons/tdeaddons-14.0.1-fix_sdl_detection.patch b/redhat/main/tdeaddons/tdeaddons-14.0.1-fix_sdl_detection.patch
deleted file mode 100644
index ca2fe2fcc..000000000
--- a/redhat/main/tdeaddons/tdeaddons-14.0.1-fix_sdl_detection.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake
-index 1fedc9a..f3872b9 100644
---- a/ConfigureChecks.cmake
-+++ b/ConfigureChecks.cmake
-@@ -74,7 +74,12 @@ if( BUILD_NOATUN_PLUGINS )
- if( WITH_SDL )
- pkg_search_module( SDL sdl )
- if( NOT SDL_FOUND )
-- tde_message_fatal( "SDL is requested, but was not found on your system" )
-+ check_include_file( SDL/SDL.h HAVE_SDL_H )
-+ if( NOT HAVE_SDL_H )
-+ tde_message_fatal( "SDL is requested, but was not found on your system" )
-+ endif ( )
-+ set ( SDL_INCLUDE_DIRS /usr/include/SDL )
-+ set ( SDL_LIBRARIES SDL pthread )
- endif( )
- endif( WITH_SDL )
-