Page MenuHomeFreeBSD

x11/lightdm update to 1.30.0, fix crash and change default config
ClosedPublic

Authored by madpilot on Jun 6 2019, 7:19 PM.
Tags
None
Referenced Files
Unknown Object (File)
Sun, Mar 31, 8:37 AM
Unknown Object (File)
Mar 10 2024, 5:53 PM
Unknown Object (File)
Mar 10 2024, 5:53 PM
Unknown Object (File)
Mar 10 2024, 5:53 PM
Unknown Object (File)
Mar 10 2024, 5:41 PM
Unknown Object (File)
Feb 14 2024, 3:31 PM
Unknown Object (File)
Feb 13 2024, 10:35 PM
Unknown Object (File)
Dec 22 2023, 11:58 PM
Subscribers

Details

Summary

I have been doing some tests with lightdm and found out that version 1.28.0 actually respects the lock-memory configuration. I suspect my previous tests were performed with older versions which maybe were buggy.

Since I'd like to make lightdm the default window manager for xfce with the update to the upcoming version 4.14, I have patched the port set this option to false by default. This avoids the need for users to modify the login.conf file.

I also updated the pkg-message file to explain the change. please review my wording thoroughly, I'm not a native English speaker and I may have made mistakes. While here I also took advantage of the new UCL functionality to make this message appear only at installation time.

While testing all this on recent head I met crashes. I got this backtrace:

(gdb) bt
#0 0x00000008008f8420 in strncmp () at /lib/libc.so.7
#1 0x00000008008f3d1e in getenv () at /lib/libc.so.7
#2 0x000000080086cf36 in execvp () at /lib/libc.so.7
(rest of stack is all ?? () )

Unluckily the crashes were not repeatable with a debugging binary. Anyway something strange is happening with the environment, so I changed the way it is manipulated before calling execvp(). I'm not sure why but defining the extern char **environ at the start of the C file works better, and I left the code with environ = NULL since our C library checks for that too and does the right thing. This made the crashes disappear.

Not sure what prompted this new behavior, my suspect is something changed in the compiler.

Finally I noticed a new version 1.30.0 was available and updated the port.

Test Plan

I tested it in poudriere on all supported OS versions and am running it in my laptop and desktop systems.

Diff Detail

Repository
rP FreeBSD ports repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

madpilot retitled this revision from x11/lightdm update to 1.30.0, fix crash and change default coonfig to x11/lightdm update to 1.30.0, fix crash and change default config.Jun 6 2019, 7:20 PM
madpilot edited the summary of this revision. (Show Details)

Forgot to mention, I changed the OPTION VALA to VAPI. VALA misses a description and is not one of the common ones, the VAPI one has a description matching the actual option.

This revision was not accepted when it landed; it landed in state Needs Review.Jun 6 2019, 11:05 PM
This revision was automatically updated to reflect the committed changes.