Summary: | plasma-desktop cmake error | ||
---|---|---|---|
Product: | [Plasma] plasmashell | Reporter: | Wood <w00dp> |
Component: | general | Assignee: | Aleix Pol <aleixpol> |
Status: | RESOLVED FIXED | ||
Severity: | normal | CC: | aleixpol, bhush94, chrisb2244, jlp, luis.davila.pc, plasma-bugs, sebas, simonandric5, w00dp |
Priority: | NOR | ||
Version: | master | ||
Target Milestone: | 1.0 | ||
Platform: | Compiled Sources | ||
OS: | Linux | ||
Latest Commit: | http://commits.kde.org/plasma-desktop/543652303260945ba0ca0190184d3a72aa4097b7 | Version Fixed In: | |
Sentry Crash Report: |
Description
Wood
2015-06-27 15:31:43 UTC
Plasma 4 bugs goes to plasma4 product.. plasmashell is for Plasma 5 That's partly the reason for putting int the error message. Before it was just silently failing breaking part of system settings, now you're seeing it's wrong. cmake -DXLIBDIR /usr/lib64/X11 should set it correctly. It never worked, many people had a broken build directory. Feel free to redefine some_x_program meanwhile. Seems like (at least for me?) the command cmake -DXLIBDIR=/usr/lib64/X11/ .. executed from within a 'build' subdirectory still throws me a 'Couldn't find X11 prefix XLIBDIR: /usr/lib/X11' error, and gives 'Configuring incomplete, errors occured!' Changing the 'ConfigureChecks.cmake' file avoids this problem. Why is this? cmake -DXLIBDIR=/usr/lib64/X11/ .. also breaks for Debian multiarch systems. What's the reason to not use KDEInstallDirs from ECM? Maybe what you want to call is with -Dsome_x_program=/usr/bin/xterm. Anyway, I'll try to spend some time fixing the X11 lookup this week... It would be good if somebody could test the following patch: https://git.reviewboard.kde.org/r/124215/ Works for me - patched and the cmake/make/make install cycle had no problems. If there's something you want me to check to ensure it behaves as expected otherwise, just say and I'll take a look. Additionally, looks like it cuts out a bunch of contortions in the xkb rules file, which has to be nice. It also worked for me on Gentoo builds fine with patch and works without problem in Archlinux (only an issue about "logout", nothing happens, but I don't know if is about this package or another issue, I need confirm why) Git commit 543652303260945ba0ca0190184d3a72aa4097b7 by Aleix Pol, on behalf of Aleix Pol Gonzalez. Committed on 07/07/2015 at 14:39. Pushed by apol into branch 'master'. Explicitly look for XKB instead of juggling paths in base of a prefix Instead of looking for X11 libraries and then looking stuff up, just find the directory we're looking for. Also drop XBINDIR, as it wasn't being used at all. REVIEW: 124215 M +3 -11 ConfigureChecks.cmake M +2 -5 config-workspace.h.cmake M +1 -23 kcms/keyboard/xkb_rules.cpp http://commits.kde.org/plasma-desktop/543652303260945ba0ca0190184d3a72aa4097b7 |