summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2012-06-12 03:46:45 +0200
committerSlávek Banko <slavek.banko@axis.cz>2012-06-12 04:05:06 +0200
commit32dd552ddaf993d299910f650946a0ac7f9ae5f7 (patch)
treef3f459faeb7e6309922061547e5a63846000cdca
parent4fe698b2813a9971615db63382a71e51ad22681d (diff)
downloadamarok-32dd552ddaf993d299910f650946a0ac7f9ae5f7.tar.gz
amarok-32dd552ddaf993d299910f650946a0ac7f9ae5f7.zip
Fix SDL detection on old distros (no pkgconfig file)
Thanks to Francois Andriot for the patch! (cherry picked from commit 06fabbf18e468c28039f7a87449ab73c55d2a9b6)
-rw-r--r--ConfigureChecks.cmake7
1 files changed, 6 insertions, 1 deletions
diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake
index 090c73b7..63d85389 100644
--- a/ConfigureChecks.cmake
+++ b/ConfigureChecks.cmake
@@ -106,7 +106,12 @@ if( WITH_LIBVISUAL )
pkg_search_module( SDL sdl )
if( NOT SDL_FOUND )
- tde_message_fatal( "SDL are required, but not found on your system" )
+ check_include_file( SDL/SDL.h HAVE_SDL_H )
+ if( NOT HAVE_SDL_H )
+ tde_message_fatal( "SDL are required, but not found on your system" )
+ endif ( )
+ set ( SDL_INCLUDE_DIRS /usr/include/SDL )
+ set ( SDL_LIBRARIES SDL pthread )
endif( )
pkg_search_module( LIBVISUAL libvisual-0.4 )