54 lines
2.2 KiB
Diff
54 lines
2.2 KiB
Diff
|
From c10866db66c0d462ea7c2c38bb01740bcfb4fcb4 Mon Sep 17 00:00:00 2001
|
||
|
From: Slava Dubrovskiy <dubrsl@altlinux.org>
|
||
|
Date: Tue, 14 Feb 2012 13:44:00 -0500
|
||
|
Subject: [PATCH] Fix not linked with libpulse (issue 418)
|
||
|
|
||
|
Signed-off-by: Slava Dubrovskiy <dubrsl@altlinux.org>
|
||
|
---
|
||
|
channels/drdynvc/audin/pulse/CMakeLists.txt | 2 +-
|
||
|
channels/drdynvc/tsmf/pulse/CMakeLists.txt | 2 +-
|
||
|
channels/rdpsnd/pulse/CMakeLists.txt | 2 +-
|
||
|
3 files changed, 3 insertions(+), 3 deletions(-)
|
||
|
|
||
|
diff --git a/channels/drdynvc/audin/pulse/CMakeLists.txt b/channels/drdynvc/audin/pulse/CMakeLists.txt
|
||
|
index 10d6afe..fd6e25e 100644
|
||
|
--- a/channels/drdynvc/audin/pulse/CMakeLists.txt
|
||
|
+++ b/channels/drdynvc/audin/pulse/CMakeLists.txt
|
||
|
@@ -28,7 +28,7 @@ add_library(audin_pulse ${AUDIN_PULSE_SRCS})
|
||
|
set_target_properties(audin_pulse PROPERTIES PREFIX "")
|
||
|
|
||
|
target_link_libraries(audin_pulse freerdp-utils)
|
||
|
-target_link_libraries(audin_pulse ${PULSE_LIBRARIES})
|
||
|
+target_link_libraries(audin_pulse ${PULSEAUDIO_LIBRARY})
|
||
|
|
||
|
install(TARGETS audin_pulse DESTINATION ${FREERDP_PLUGIN_PATH})
|
||
|
|
||
|
diff --git a/channels/drdynvc/tsmf/pulse/CMakeLists.txt b/channels/drdynvc/tsmf/pulse/CMakeLists.txt
|
||
|
index 373d4d3..144b5ff 100644
|
||
|
--- a/channels/drdynvc/tsmf/pulse/CMakeLists.txt
|
||
|
+++ b/channels/drdynvc/tsmf/pulse/CMakeLists.txt
|
||
|
@@ -28,7 +28,7 @@ add_library(tsmf_pulse ${TSMF_PULSE_SRCS})
|
||
|
set_target_properties(tsmf_pulse PROPERTIES PREFIX "")
|
||
|
|
||
|
target_link_libraries(tsmf_pulse freerdp-utils)
|
||
|
-target_link_libraries(tsmf_pulse ${PULSE_LIBRARIES})
|
||
|
+target_link_libraries(tsmf_pulse ${PULSEAUDIO_LIBRARY})
|
||
|
|
||
|
install(TARGETS tsmf_pulse DESTINATION ${FREERDP_PLUGIN_PATH})
|
||
|
|
||
|
diff --git a/channels/rdpsnd/pulse/CMakeLists.txt b/channels/rdpsnd/pulse/CMakeLists.txt
|
||
|
index 4460daf..bac3e51 100644
|
||
|
--- a/channels/rdpsnd/pulse/CMakeLists.txt
|
||
|
+++ b/channels/rdpsnd/pulse/CMakeLists.txt
|
||
|
@@ -28,6 +28,6 @@ add_library(rdpsnd_pulse ${RDPSND_PULSE_SRCS})
|
||
|
set_target_properties(rdpsnd_pulse PROPERTIES PREFIX "")
|
||
|
|
||
|
target_link_libraries(rdpsnd_pulse freerdp-utils)
|
||
|
-target_link_libraries(rdpsnd_pulse ${PULSE_LIBRARIES})
|
||
|
+target_link_libraries(rdpsnd_pulse ${PULSEAUDIO_LIBRARY})
|
||
|
|
||
|
install(TARGETS rdpsnd_pulse DESTINATION ${FREERDP_PLUGIN_PATH})
|
||
|
--
|
||
|
1.7.10
|
||
|
|