Closed bogo-y closed 1 year ago
By the way, I can use remote desktop with X.Org X Server 1.20.13 and xorgxrdp 0.2.17-1 now. However the bad performance made me try to enable GPU.
We should add that to the check when building You can see what package provides a file on Debian with dpkg -S /usr/include/libdrm/drm_fourcc.h In this case it's in libdrm-dev
We should add that to the check when building You can see what package provides a file on Debian with dpkg -S /usr/include/libdrm/drm_fourcc.h In this case it's in libdrm-dev
I am using Manjaro and I can't find libdrm-dev in AUR. But libdrm can be installed and it also has drm_fourcc.h and drm.h. Is there any way to make it available when compiling?
two solutions:
export CFLAGS="$CFLAGS -I/usr/include/libdrm"
before running ./configure
.make EXTRA_FLAGS="-I/usr/include/libdrm"
instead of make
.libdrm has .pc file for pkg-config. Using pkg-config to adjust include path and library path would be better.
I want to use glamor, so I excuted "./configure --enable-glamor" and then excuted "make". But the process was interrupted due to could not be found. If I don't use "--enable-glamor" it will be compiled successfully. You can see the details in paste.ubuntu.com/p/DqrwcjQKRF/.