summaryrefslogtreecommitdiffstats
path: root/ConfigureChecks.cmake
diff options
context:
space:
mode:
authorFrançois Andriot <francois.andriot@free.fr>2015-10-15 04:42:48 +0200
committerSlávek Banko <slavek.banko@axis.cz>2015-10-15 04:43:49 +0200
commitcf18d66ac5c3904f3f932848f761ec5d103a470c (patch)
tree3e240ef577e25f7547322734a60452dbe92ffa53 /ConfigureChecks.cmake
parent386d5647da414c477f7f045c2850bfb1854e2302 (diff)
downloadakode-cf18d66ac5c3904f3f932848f761ec5d103a470c.tar.gz
akode-cf18d66ac5c3904f3f932848f761ec5d103a470c.zip
Add pulseaudio support
[taken from Fedora patches]
Diffstat (limited to 'ConfigureChecks.cmake')
-rw-r--r--ConfigureChecks.cmake12
1 files changed, 6 insertions, 6 deletions
diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake
index df4d86a..635db2e 100644
--- a/ConfigureChecks.cmake
+++ b/ConfigureChecks.cmake
@@ -118,15 +118,15 @@ endif( WITH_OSS_SINK )
##### check polyp support #######################
-if( WITH_POLYP_SINK )
+if( WITH_PULSE_SINK )
- pkg_search_module( POLYP polyplib-simple>=0.70 )
+ pkg_search_module( PULSE libpulse-simple>=0.9.2 )
- if( NOT POLYP_FOUND )
- tde_message_fatal( "polyplib-simple >= 0.70 are required, but not found on your system" )
- endif( NOT POLYP_FOUND )
+ if( NOT PULSE_FOUND )
+ tde_message_fatal( "libpulse-simple >= 0.9.2 are required, but not found on your system" )
+ endif( NOT PULSE_FOUND )
-endif( WITH_POLYP_SINK )
+endif( WITH_PULSE_SINK )
##### check sun support #########################