57
by robert.ancell at gmail
Make a .theme format |
1 |
bin_PROGRAMS = lightdm |
2 |
||
140
by robert.ancell at gmail
Make persistent connection to remote server with proper authorization |
3 |
ldm-marshal.c: ldm-marshal.list |
4 |
@GLIB_GENMARSHAL@ --prefix=ldm_marshal $(srcdir)/ldm-marshal.list --header --body > ldm-marshal.c |
|
5 |
||
6 |
ldm-marshal.h: ldm-marshal.list |
|
7 |
@GLIB_GENMARSHAL@ --prefix=ldm_marshal $(srcdir)/ldm-marshal.list --header > ldm-marshal.h |
|
8 |
||
1
by robert.ancell at gmail
Compiles and does something |
9 |
lightdm_SOURCES = \ |
352
by robert.ancell at canonical
Split child process code out from session/xserver |
10 |
child-process.c \
|
11 |
child-process.h \
|
|
1
by robert.ancell at gmail
Compiles and does something |
12 |
display.c \
|
13 |
display.h \
|
|
14 |
display-manager.c \
|
|
15 |
display-manager.h \
|
|
361
by robert.ancell at canonical
Move greeter code into greeter.c |
16 |
greeter.c \
|
17 |
greeter.h \
|
|
396
by Robert Ancell
Fix more distcheck stuff |
18 |
greeter-protocol.h \
|
493
by Robert Ancell
Start laying foundations for guest accounts |
19 |
guest-manager.c \
|
20 |
guest-manager.h \
|
|
6
by robert.ancell at gmail
Move PAM thread into pam_authenticator.c |
21 |
lightdm.c \
|
140
by robert.ancell at gmail
Make persistent connection to remote server with proper authorization |
22 |
ldm-marshal.c \
|
23 |
ldm-marshal.h \
|
|
9
by robert.ancell at gmail
Use PAM sessions |
24 |
pam-session.c \
|
15
by robert.ancell at gmail
Move user database server-side. Fix up D-Bus object names |
25 |
pam-session.h \
|
115
by robert.ancell at gmail
Split session into separate file |
26 |
session.c \
|
27 |
session.h \
|
|
76
by robert.ancell at gmail
Split out theme loader |
28 |
theme.c \
|
29 |
theme.h \
|
|
137
by robert.ancell at gmail
Store authorization in files |
30 |
xauth.c \
|
31 |
xauth.h \
|
|
117
by robert.ancell at gmail
Add basic XDMCP support |
32 |
xdmcp-protocol.c \
|
33 |
xdmcp-protocol.h \
|
|
34 |
xdmcp-server.c \
|
|
35 |
xdmcp-server.h \
|
|
36 |
xdmcp-session.c \
|
|
37 |
xdmcp-session.h \
|
|
38 |
xdmcp-session-private.h \
|
|
75
by robert.ancell at gmail
Split the xserver into its own module |
39 |
xserver.c \
|
40 |
xserver.h |
|
1
by robert.ancell at gmail
Compiles and does something |
41 |
|
2
by robert.ancell at gmail
Got authentication API working |
42 |
BUILT_SOURCES = \ |
140
by robert.ancell at gmail
Make persistent connection to remote server with proper authorization |
43 |
ldm-marshal.c \
|
44 |
ldm-marshal.h |
|
2
by robert.ancell at gmail
Got authentication API working |
45 |
|
1
by robert.ancell at gmail
Compiles and does something |
46 |
lightdm_CFLAGS = \ |
47 |
$(LIGHTDM_CFLAGS) \ |
|
48 |
$(WARN_CFLAGS) \ |
|
183
by robert.ancell at gmail
Write greeter/session/xserver logs to files |
49 |
-DCONFIG_FILE=\"$(CONFIG_FILE)\" \ |
50 |
-DLOG_DIR=\"$(LOG_DIR)\" \ |
|
57
by robert.ancell at gmail
Make a .theme format |
51 |
-DTHEME_ENGINE_DIR=\"$(libexecdir)\" \ |
183
by robert.ancell at gmail
Write greeter/session/xserver logs to files |
52 |
-DXAUTH_DIR=\"$(XAUTH_DIR)\" \ |
250
by robert.ancell at canonical
Load user settings from ~/.dmrc |
53 |
-DCACHE_DIR=\"$(CACHE_DIR)\" \ |
310
by Robert Ancell
Fix themedir config |
54 |
-DTHEME_DIR=\"$(THEME_DIR)\" \ |
1
by robert.ancell at gmail
Compiles and does something |
55 |
-DLIGHTDM_BINARY=\"lightdm\" |
56 |
||
57 |
lightdm_LDADD = \ |
|
58 |
$(LIGHTDM_LIBS) \ |
|
59 |
-lpam |
|
60 |
||
146
by robert.ancell at gmail
Support theme properties, use this to find the gtkrc in GNOME theme |
61 |
EXTRA_DIST = ldm-marshal.list \ |
62 |
display-manager.xml \
|
|
80
by robert.ancell at gmail
Distribute some missing files |
63 |
user-manager.xml |
64 |
||
228
by robert.ancell at canonical
Correctly clean files on make clea |
65 |
CLEANFILES = \ |
66 |
$(BUILT_SOURCES) |
|
67 |
||
1
by robert.ancell at gmail
Compiles and does something |
68 |
DISTCLEANFILES = \ |
69 |
Makefile.in |