aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2012-09-14 15:48:44 -0500
committerTed Gould <ted@gould.cx>2012-09-14 15:48:44 -0500
commit0a2d6eaca5d8b3db9a1b6e1b9b964453cbe2e394 (patch)
treec80ce19710204506e9e6dbbe3203f4ab8173def0
parent27eb25f42c3f3d0780e03881f8899e0df61d7a84 (diff)
downloadlightdm-remote-session-freerdp2-0a2d6eaca5d8b3db9a1b6e1b9b964453cbe2e394.tar.gz
lightdm-remote-session-freerdp2-0a2d6eaca5d8b3db9a1b6e1b9b964453cbe2e394.tar.bz2
lightdm-remote-session-freerdp2-0a2d6eaca5d8b3db9a1b6e1b9b964453cbe2e394.zip
Adding in the session wrapper
-rw-r--r--Makefile.am10
-rw-r--r--freerdp-session-wrapper.c32
2 files changed, 41 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am
index 1af5934..76b9eec 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -26,7 +26,9 @@ lightdm-remote-session-freerdp: lightdm-remote-session-freerdp.in
@sed -e "s|\@pkglibexecdir\@|$(pkglibexecdir)|" $< > $@
pkglibexec_PROGRAMS = \
- socket-sucker
+ socket-sucker \
+ freerdp-session-wrapper
+
socket_sucker_SOURCES = \
socket-sucker.c
socket_sucker_CFLAGS = \
@@ -35,6 +37,12 @@ socket_sucker_CFLAGS = \
socket_sucker_LDFLAGS = \
-pie
+freerdp_session_wrapper_SOURCES = \
+ freerdp-session-wrapper.c
+freerdp_session_wrapper_CFLAGS = \
+ -DPKGDATADIR="\"$(pkgdatadir)\"" \
+ -Wall -Werror
+
EXTRA_DIST = \
$(pam_session_DATA) \
freerdp.desktop.in \
diff --git a/freerdp-session-wrapper.c b/freerdp-session-wrapper.c
new file mode 100644
index 0000000..8c31fab
--- /dev/null
+++ b/freerdp-session-wrapper.c
@@ -0,0 +1,32 @@
+/*
+ * Copyright © 2012 Canonical Ltd.
+ *
+ * This program is free software: you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License version 3, as
+ * published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranties of
+ * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
+ * PURPOSE. See the GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
+ * Author: Ted Gould <ted@canonical.com>
+ */
+
+#include <stdlib.h>
+#include <unistd.h>
+
+int
+main (int argc, char * argv[])
+{
+ char * args[2];
+ args[0] = PKGDATADIR "/freerdp-session";
+ args[1] = NULL;
+
+ execvp(args[0], args);
+
+ return 0;
+}