]> git.sesse.net Git - vlc/blobdiff - bindings/phonon/cmake/modules/FindPhonon.cmake
phonon: Add support to detect the pulsesupport.h header from kdesupport phonon package
[vlc] / bindings / phonon / cmake / modules / FindPhonon.cmake
index daa457ad0fe130ee949e66c8d0ae5ead9eff54da..361b3fa4ff42c2e042c00a4504ec38fae2993c16 100644 (file)
@@ -43,6 +43,7 @@ else(PHONON_FOUND)
       set(PHONON_INCLUDES ${PHONON_INCLUDE_DIR}/KDE ${PHONON_INCLUDE_DIR})
       set(PHONON_FOUND TRUE)
       _phonon_find_version()
+      find_path(PHONON_PULSESUPPORT NAMES phonon/pulsesupport.h PATHS ${PHONON_INCLUDES})
    else(PHONON_INCLUDE_DIR AND PHONON_LIBRARY)
       set(PHONON_FOUND FALSE)
    endif(PHONON_INCLUDE_DIR AND PHONON_LIBRARY)
@@ -51,6 +52,11 @@ else(PHONON_FOUND)
       if(NOT PHONON_FIND_QUIETLY)
          message(STATUS "Found Phonon: ${PHONON_LIBRARY}")
          message(STATUS "Found Phonon Includes: ${PHONON_INCLUDES}")
+         if(PHONON_PULSESUPPORT)
+            message(STATUS "Found Phonon PulseAudio Support: Yes")
+         else(PHONON_PULSESUPPORT)
+            message(STATUS "Found Phonon PulseAudio Support: No")
+         endif(PHONON_PULSESUPPORT)
       endif(NOT PHONON_FIND_QUIETLY)
    else(PHONON_FOUND)
       if(Phonon_FIND_REQUIRED)