From 18e3ff648356cf06a39372aa4a4bbf2732d9d0f4 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Tue, 12 Dec 2017 21:36:44 +0200 Subject: [PATCH] don't use bundled libvdpau headers --- CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0484179..e950707 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -9,16 +9,17 @@ find_package(PkgConfig REQUIRED) find_package(X11 REQUIRED) pkg_check_modules(LIBVA libva-x11 REQUIRED) pkg_check_modules(LIBGL gl REQUIRED) +pkg_check_modules(LIBVDPAU vdpau REQUIRED) set(DRIVER_NAME "vdpau_va_gl" CACHE STRING "driver name") set(LIB_SUFFIX "" CACHE STRING "library path suffix (if needed)") set(LIB_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/lib${LIB_SUFFIX}/vdpau" CACHE PATH "library installation path") include_directories ( - 3rdparty ${X11_INCLUDE_DIRS} ${LIBVA_INCLUDE_DIRS} ${LIBGL_INCLUDE_DIRS} + ${LIBVDPAU_INCLUDE_DIRS} ${GENERATED_INCLUDE_DIRS} ${CMAKE_BINARY_DIR} ) -- 2.15.1 guix/refs/?id=fc2b16fa9d6a0adfc3d0ded4cbaa1bfb49114128'>refslogtreecommitdiff
path: root/gnu/services/xorg.scm
AgeCommit message (Expand)Author
2024-09-01services: screen-locker: Migrate to (gnu system privilege)....* gnu/services/xorg.scm (screen-locker-setuid-programs): Rename from this… (screen-locker-privileged-programs): …to this. Use <privileged-program>. (screen-locker-service-type): Extend the PRIVILEGED-PROGRAM-SERVICE-TYPE. Change-Id: Icbd891def4fc90ed5365702731f009dec358c19e Tobias Geerinckx-Rice
2024-05-30services: xorg: Add startx-command-service-type....* gnu/services/xorg.scm (startx-command-profile-service, startx-command-service-type): New variables. * doc/guix.texi (X Window): Document startx-command-service-type. Change-Id: Ia2a7c3b2d5ebf6bcfff40cb2640b17d3baf6eba0 Signed-off-by: Arun Isaac <arunisaac@systemreboot.net> Tomas Volf
2024-05-30services: xorg: Add xorg-start-command-xinit procedure....When the user does not use any desktop environment, the typical sequence is to log in and then type `startx' into the tty to get a window manager running. Most distributions do provide a startx by default, but Guix has only an xorg-start-command that is not suitable for this. This commit adds a second procedure, xorg-start-command-xinit, that correctly picks a virtual terminal to use, sets up XAUTHORITY and starts xinit with the correct arguments. That should make running Guix without a desktop environment more approachable. * gnu/services/xorg.scm (xorg-start-command-xinit): New public procedure. * doc/guix.texi (X Window): Document it. Change-Id: I17cb16093d16a5c6550b1766754700d4fe014ae9 Signed-off-by: Arun Isaac <arunisaac@systemreboot.net> Tomas Volf
2024-04-28services: gdm: Use ‘make-forkexec-constructor’....* gnu/services/xorg.scm (gdm-shepherd-service): Use ‘make-forkexec-constructor’ directly. Change-Id: I4ede4c99996cea4421316411cf8d887d70ce4253 Ludovic Courtès
2024-03-20Merge remote-tracking branch 'savannah/master' into gnome-team...Change-Id: Iec8e15b79c6fde516294c2bfcaf8ee3575b1f745 Christopher Baines
2024-03-19services: sddm: Add extension for localed-service-type....* gnu/services/sddm.scm (sddm-service-type): Add extension for localed-service-type. * gnu/services/xorg.scm (xorg-configuration-keyboard-layout): Export it. Change-Id: I26e6475b733d69f1baf00786e302a3ec6d3c4a74 Signed-off-by: 宋文武 <iyzsong@member.fsf.org> Zheng Junjie
2024-02-24services: gdm: Enable wayland by default....* gnu/services/xorg.scm (<gdm-configuration>): Change the default value for wayland? from '#f' to '#t'. Change-Id: Ic966dfc462b1140894aa6c38c23e229d6252d340 Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com> Vivien Kraus
2024-01-05services: xorg: ‘dbus-daemon-wrapper’ handles Home profile....* gnu/services/xorg.scm (dbus-daemon-wrapper): Handle Home profile. Co-authored-by: Ludovic Courtès <ludo@gnu.org> Change-Id: Ib2f2330b7ea017ddf33d636de71aaa1c316808cb Feng Shu