summaryrefslogtreecommitdiffstats
path: root/src/Makefile.am
diff options
context:
space:
mode:
authorKristian Høgsberg <krh@bitplanet.net>2013-04-18 15:07:23 -0400
committerKristian Høgsberg <krh@bitplanet.net>2013-05-07 09:10:49 -0400
commite920572e5cc120b3d03b0b2c40af67927fcb73d7 (patch)
tree77b4a0ad2b03486c6bb9377ff1fc3eae9f4dc66b /src/Makefile.am
parentconfigure.ac: Bump to 1.1.90 to open master for 1.2 work (diff)
downloadwayland-e920572e5cc120b3d03b0b2c40af67927fcb73d7.tar
wayland-e920572e5cc120b3d03b0b2c40af67927fcb73d7.tar.gz
wayland-e920572e5cc120b3d03b0b2c40af67927fcb73d7.tar.bz2
wayland-e920572e5cc120b3d03b0b2c40af67927fcb73d7.tar.lz
wayland-e920572e5cc120b3d03b0b2c40af67927fcb73d7.tar.xz
wayland-e920572e5cc120b3d03b0b2c40af67927fcb73d7.tar.zst
wayland-e920572e5cc120b3d03b0b2c40af67927fcb73d7.zip
Remove input structs
Looking at the functionality in the server library, it's clear (in hindsight) that there are two different "things" in there: 1) The IPC API, that is, everything that concerns wl_display, wl_client, wl_resource and 2) and half-hearted attempt at sharing input code and focus logic that leaves a lot of problematic structs in the API surface, only to share less than 1000 lines of code. We can just move those input structs and helper functions into weston and cut libwayland-server down to just the core server side IPC API. In the short term, compositors can copy those structs and functions into their source, but longer term, they're probably better off reimplementing those objects and logic their native framework (QObject, GObject etc).
Diffstat (limited to 'src/Makefile.am')
-rw-r--r--src/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index e1d04ea..4fa7425 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -19,11 +19,11 @@ libwayland_util_la_SOURCES = \
wayland-private.h
libwayland_server_la_LIBADD = $(FFI_LIBS) libwayland-util.la -lrt -lm
+libwayland_server_la_LDFLAGS = -version-info 1:0:1
libwayland_server_la_SOURCES = \
wayland-protocol.c \
wayland-server.c \
wayland-shm.c \
- data-device.c \
event-loop.c
libwayland_client_la_LIBADD = $(FFI_LIBS) libwayland-util.la -lrt -lm