Skip to content

Commit 9abdf89

Browse files
committed
Add install files to the build
1 parent b4d03c5 commit 9abdf89

5 files changed

+77
-2
lines changed

Makefile.am

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
ACLOCAL_AMFLAGS = -I m4
22

3-
SUBDIRS = src
3+
SUBDIRS = src instfiles
44
EXTRA_DIST = bootstrap.sh

configure.ac

+2-1
Original file line numberDiff line numberDiff line change
@@ -80,5 +80,6 @@ AC_TYPE_UINT32_T
8080
AC_CHECK_FUNCS([memset socket])
8181

8282
AC_CONFIG_FILES([Makefile
83-
src/Makefile])
83+
src/Makefile
84+
instfiles/Makefile])
8485
AC_OUTPUT

instfiles/Makefile.am

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
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

instfiles/load_pa_modules.sh

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
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 $?

instfiles/pulseaudio-xrdp.desktop.in

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
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=

0 commit comments

Comments
 (0)