- update to 1.32.0: * Overwrite existing X authority files to avoid corruption * Change logind-check-graphical default config value to true * Block autologin if shell in nologin or false * Fix failure if with greeters sending two login requests quickly. * Drop Qt 4 support, it's been unsupported since 2015 * Fix lightdm_set_layout * Improve method of determining a session is Wayland * Don't call setenv with a NULL value - the behaviour is undefined * Replace deprecated QAbstractItemModel::setRoleNames * Move D-Bus conf file to $(datadir)/dbus-1/system.d * Fix tests failing when compiled with --with-greeter-user * Use Python 3 in tests * Disable compiler optimizations for test programs * Compilation fix for glibc 2.33 * Remove deprecated use of G_TYPE_INSTANCE_GET_PRIVATE, G_PARAM_PRIVATE * Fix compile failure due to use of clearenv on FreeBSD * Use a size_t to resolve a compile warning * Fix DesktopManager typo in man page - drop lightdm-glibc-2.33-fix.patch (upstream) OBS-URL: https://build.opensuse.org/request/show/992388 OBS-URL: https://build.opensuse.org/package/show/X11:Utilities/lightdm?expand=0&rev=137
18 lines
749 B
Diff
18 lines
749 B
Diff
# HG changeset patch
|
|
# Parent 286765d233568af58a49fd0b2c79b63fcabaf9f4
|
|
Use /run instead of localstatedir/run/lightdm
|
|
|
|
Index: lightdm-1.32.0/src/Makefile.am
|
|
===================================================================
|
|
--- lightdm-1.32.0.orig/src/Makefile.am
|
|
+++ lightdm-1.32.0/src/Makefile.am
|
|
@@ -82,7 +82,7 @@ lightdm_CFLAGS = \
|
|
-DSBIN_DIR=\"$(sbindir)\" \
|
|
-DUSERS_DIR=\"$(localstatedir)/lib/lightdm-data\" \
|
|
-DLOG_DIR=\"$(localstatedir)/log/lightdm\" \
|
|
- -DRUN_DIR=\"$(localstatedir)/run/lightdm\" \
|
|
+ -DRUN_DIR=\"/run/lightdm\" \
|
|
-DCACHE_DIR=\"$(localstatedir)/cache/lightdm\" \
|
|
-DSESSIONS_DIR=\"$(pkgdatadir)/sessions:$(datadir)/xsessions:$(datadir)/wayland-sessions\" \
|
|
-DREMOTE_SESSIONS_DIR=\"$(pkgdatadir)/remote-sessions\"
|