mirror of
https://github.com/swaywm/sway.git
synced 2025-04-03 02:47:46 +03:00
Address review comments
This commit is contained in:
parent
653853062f
commit
d39bda76c4
9 changed files with 50 additions and 71 deletions
|
@ -1,21 +1,16 @@
|
|||
deps = [
|
||||
cairo,
|
||||
pango,
|
||||
pangocairo,
|
||||
wlroots,
|
||||
wayland_client,
|
||||
]
|
||||
|
||||
if gdk_pixbuf.found()
|
||||
deps += [gdk_pixbuf]
|
||||
endif
|
||||
|
||||
lib_sway_client = static_library(
|
||||
'sway-client',
|
||||
files(
|
||||
'buffer-pool.c',
|
||||
'pool-buffer.c',
|
||||
),
|
||||
dependencies: deps,
|
||||
dependencies: [
|
||||
cairo,
|
||||
gdk_pixbuf,
|
||||
pango,
|
||||
pangocairo,
|
||||
wlroots,
|
||||
wayland_client,
|
||||
],
|
||||
link_with: [lib_sway_common],
|
||||
include_directories: sway_inc
|
||||
)
|
||||
|
|
|
@ -8,7 +8,8 @@
|
|||
#include <pango/pangocairo.h>
|
||||
#include <unistd.h>
|
||||
#include <wayland-client.h>
|
||||
#include "buffer_pool.h"
|
||||
#include "config.h"
|
||||
#include "pool-buffer.h"
|
||||
|
||||
static int create_pool_file(size_t size, char **name) {
|
||||
static const char template[] = "sway-client-XXXXXX";
|
Loading…
Add table
Add a link
Reference in a new issue