File tree 5 files changed +77
-2
lines changed
5 files changed +77
-2
lines changed Original file line number Diff line number Diff line change 1
1
ACLOCAL_AMFLAGS = -I m4
2
2
3
- SUBDIRS = src
3
+ SUBDIRS = src instfiles
4
4
EXTRA_DIST = bootstrap.sh
Original file line number Diff line number Diff line change @@ -80,5 +80,6 @@ AC_TYPE_UINT32_T
80
80
AC_CHECK_FUNCS ( [ memset socket] )
81
81
82
82
AC_CONFIG_FILES ( [ Makefile
83
- src/Makefile] )
83
+ src/Makefile
84
+ instfiles/Makefile] )
84
85
AC_OUTPUT
Original file line number Diff line number Diff line change
1
+ EXTRA_DIST = \
2
+ load_pa_modules.sh \
3
+ pulseaudio-xrdp.desktop.in
4
+
5
+ #
6
+ # substitute directories in service file
7
+ #
8
+ CLEANFILES = \
9
+ pulseaudio-xrdp.desktop
10
+
11
+ SUBST_VARS = sed \
12
+ -e 's|@pkglibexecdir[@]|$(pkglibexecdir ) |g'
13
+
14
+ subst_verbose = $(subst_verbose_@AM_V@ )
15
+ subst_verbose_ = $(subst_verbose_@AM_DEFAULT_V@ )
16
+ subst_verbose_0 = @echo " SUBST $@ ";
17
+
18
+ SUFFIXES = .in
19
+ .in :
20
+ $(subst_verbose )$(SUBST_VARS ) $< > $@
21
+
22
+ #
23
+ # files for all platforms
24
+ #
25
+
26
+ # Don't use sysconfdir for this one as it won't work!
27
+ xdgautostartdir =/etc/xdg/autostart
28
+
29
+ xdgautostart_DATA = \
30
+ pulseaudio-xrdp.desktop
31
+
32
+ pkglibexec_SCRIPTS = \
33
+ load_pa_modules.sh
Original file line number Diff line number Diff line change
1
+ #! /bin/sh
2
+
3
+ PACTL=/usr/bin/pactl
4
+
5
+ if [ -n " $XRDP_SESSION " -a -n " $XRDP_SOCKET_PATH " ]; then
6
+ # These values are not present on xrdp versions before v0.9.8
7
+ if [ -z " $XRDP_PULSE_SINK_SOCKET " -o \
8
+ -z " $XRDP_PULSE_SOURCE_SOCKET " ]; then
9
+ displaynum=${DISPLAY##*: }
10
+ displaynum=${displaynum% .* }
11
+ XRDP_PULSE_SINK_SOCKET=xrdp_chansrv_audio_out_socket_$displaynum
12
+ XRDP_PULSE_SOURCE_SOCKET=xrdp_chansrv_audio_in_socket_$displaynum
13
+ fi
14
+
15
+ # Don't check for the presence of the sockets, as if the modules
16
+ # are loaded they won't be there
17
+
18
+ # Unload modules
19
+ $PACTL unload-module module-xrdp-sink > /dev/null 2>&1
20
+ $PACTL unload-module module-xrdp-source > /dev/null 2>&1
21
+
22
+ # Reload modules
23
+ $PACTL load-module module-xrdp-sink \
24
+ xrdp_socket_path=$XRDP_SOCKET_PATH \
25
+ xrdp_pulse_sink_socket=$XRDP_PULSE_SINK_SOCKET && \
26
+ \
27
+ $PACTL load-module module-xrdp-source \
28
+ xrdp_socket_path=$XRDP_SOCKET_PATH \
29
+ xrdp_pulse_source_socket=$XRDP_PULSE_SOURCE_SOCKET
30
+ fi
31
+
32
+ exit $?
Original file line number Diff line number Diff line change
1
+ [Desktop Entry]
2
+ Version =1.0
3
+ Name =PulseAudio xrdp modules
4
+ Comment =Load PulseAudio Modules for xrdp
5
+ Exec =@pkglibexecdir@/load_pam_modules.sh
6
+ Terminal =false
7
+ Type =Application
8
+ Categories =
9
+ GenericName =
You can’t perform that action at this time.
0 commit comments