diff options
author | Ted Gould <ted@gould.cx> | 2012-08-21 14:14:14 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2012-08-21 14:14:14 -0500 |
commit | 4dd6128c153ea94ea70a22a5d8a4fc50ea59ddbd (patch) | |
tree | 5c623a2f112e8e33b730615b6757e5698204a0be | |
parent | 9e6e10bb3f0292449da3cdebc0da9921afe7e984 (diff) | |
download | lightdm-remote-session-x2go-4dd6128c153ea94ea70a22a5d8a4fc50ea59ddbd.tar.gz lightdm-remote-session-x2go-4dd6128c153ea94ea70a22a5d8a4fc50ea59ddbd.tar.bz2 lightdm-remote-session-x2go-4dd6128c153ea94ea70a22a5d8a4fc50ea59ddbd.zip |
Adding in the socket sucker build target
-rw-r--r-- | .bzrignore | 1 | ||||
-rw-r--r-- | Makefile.am | 5 | ||||
-rw-r--r-- | socket-sucker.c | 13 |
3 files changed, 19 insertions, 0 deletions
diff --git a/.bzrignore b/.bzrignore new file mode 100644 index 0000000..655e611 --- /dev/null +++ b/.bzrignore @@ -0,0 +1 @@ +socket-sucker diff --git a/Makefile.am b/Makefile.am index de9cedc..d31c18c 100644 --- a/Makefile.am +++ b/Makefile.am @@ -14,6 +14,11 @@ session_startdir = $(pkglibexecdir) session_start_SCRIPTS = \ freerdp-session +libexec_PROGRAMS = \ + socket-sucker +socket_sucker_SOURCES = \ + socket-sucker.c + EXTRA_DIST = \ $(pam_session_DATA) \ freerdp.desktop.in \ diff --git a/socket-sucker.c b/socket-sucker.c new file mode 100644 index 0000000..46af2d6 --- /dev/null +++ b/socket-sucker.c @@ -0,0 +1,13 @@ + +int +main (int argc, char * argv[]) +{ + + + + + + + + +} |