summaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authorKristian Høgsberg <krh@redhat.com>2008-12-11 23:18:45 -0500
committerKristian Høgsberg <krh@redhat.com>2008-12-11 23:18:45 -0500
commit5ee1a60f1a03b3176332f6d4f27744d0dfdb0601 (patch)
tree84afd32f96b8f045f24a382c06e6e585183ef877 /Makefile.in
parentd1c58d60f6c212c3de1f2c214745ef4db9623c7e (diff)
downloadwayland-5ee1a60f1a03b3176332f6d4f27744d0dfdb0601.tar.gz
wayland-5ee1a60f1a03b3176332f6d4f27744d0dfdb0601.tar.xz
wayland-5ee1a60f1a03b3176332f6d4f27744d0dfdb0601.zip
Rewrite input event delivery path.
Instead of having the input driver push the events into the core server, only to have the server call back out to the compositor hooks, the driver now just calls the compositor directly. The input drivers are always dependent on the type of compositor anyway so there was no point in passing the events through the server. Now the server is only involved when it's time to actually send the events to the clients.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index a5540f0..b0d6053 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -35,7 +35,7 @@ egl-compositor : \
wayland-util.o
egl-compositor : CFLAGS += @EGL_COMPOSITOR_CFLAGS@
-egl-compositor : LDLIBS += @EGL_COMPOSITOR_LIBS@ -L. -lwayland-server -rdynamic -lrt
+egl-compositor : LDLIBS += -L. -lwayland-server @EGL_COMPOSITOR_LIBS@ -rdynamic -lrt
flower : flower.o wayland-glib.o cairo-util.o
gears : gears.o window.o wayland-glib.o cairo-util.o
@@ -45,7 +45,7 @@ terminal : terminal.o window.o wayland-glib.o cairo-util.o
terminal : LDLIBS += -lutil
$(clients) : CFLAGS += @CLIENT_CFLAGS@
-$(clients) : LDLIBS += @CLIENT_LIBS@ -L. -lwayland -lrt
+$(clients) : LDLIBS += -L. -lwayland @CLIENT_LIBS@ -lrt
install : $(libs)
install -d @libdir@ @libdir@/pkgconfig