Compare commits
2 commits
f5299ad7ae
...
143af553ea
Author | SHA1 | Date | |
---|---|---|---|
143af553ea | |||
0fe255c3ce |
3 changed files with 4 additions and 4 deletions
|
@ -10,8 +10,8 @@
|
||||||
XCBLIB = -lX11-xcb
|
XCBLIB = -lX11-xcb
|
||||||
PIXMAN = -lpixman-1
|
PIXMAN = -lpixman-1
|
||||||
DRM = -ldrm
|
DRM = -ldrm
|
||||||
DRMFOURCCH = $(INCROOT)/drm/drm_fourcc.h
|
DRMFOURCCH = $(INCROOT)/libdrm/drm_fourcc.h
|
||||||
DRMINCLUDES = -I$(INCROOT)/drm
|
DRMINCLUDES = -I$(INCROOT)/libdrm
|
||||||
PIXMANINCLUDES = -I$(INCROOT)/pixman-1
|
PIXMANINCLUDES = -I$(INCROOT)/pixman-1
|
||||||
XPRESENTLIB = -lXpresent
|
XPRESENTLIB = -lXpresent
|
||||||
WAYLAND_SCANNER = wayland-scanner
|
WAYLAND_SCANNER = wayland-scanner
|
||||||
|
|
2
output.c
2
output.c
|
@ -274,7 +274,7 @@ HandleBind (struct wl_client *client, void *data,
|
||||||
|
|
||||||
/* Send the output name. I think it is supposed to be unique. */
|
/* Send the output name. I think it is supposed to be unique. */
|
||||||
|
|
||||||
if (wl_resource_get_version (resource) >= 3)
|
if (wl_resource_get_version (resource) >= 4)
|
||||||
wl_output_send_name (resource, output->name);
|
wl_output_send_name (resource, output->name);
|
||||||
|
|
||||||
if (wl_resource_get_version (resource) >= 2)
|
if (wl_resource_get_version (resource) >= 2)
|
||||||
|
|
|
@ -19,7 +19,7 @@ along with 12to11. If not, see <https://www.gnu.org/licenses/>. */
|
||||||
|
|
||||||
#include <xf86drm.h>
|
#include <xf86drm.h>
|
||||||
#include <gbm.h>
|
#include <gbm.h>
|
||||||
#include <drm/drm_fourcc.h>
|
#include <drm_fourcc.h>
|
||||||
|
|
||||||
#include <sys/mman.h>
|
#include <sys/mman.h>
|
||||||
#include <sys/fcntl.h>
|
#include <sys/fcntl.h>
|
||||||
|
|
Loading…
Add table
Reference in a new issue