From d16f429335240a8094e7f16ff1e7d79c97628f73 Mon Sep 17 00:00:00 2001 From: David Herrmann Date: Wed, 26 Sep 2012 23:45:02 +0200 Subject: [PATCH] wlterm: add hard-dependency to xkbcommon wlterm needs xkbcommon as the wayland protocol depends on XKB states. Hence, we add a hard-dependency for wlterm. Signed-off-by: David Herrmann --- Makefile.am | 6 ++++-- configure.ac | 1 + 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/Makefile.am b/Makefile.am index cf2ad01..8537040 100644 --- a/Makefile.am +++ b/Makefile.am @@ -456,10 +456,12 @@ wlterm_SOURCES = \ src/pty.c wlterm_CPPFLAGS = \ $(AM_CPPFLAGS) \ - $(WAYLAND_CFLAGS) + $(WAYLAND_CFLAGS) \ + $(XKBCOMMON_CFLAGS) wlterm_LDADD = \ libeloop.la \ libtsm.la \ libtext-font.la \ -lpthread \ - $(WAYLAND_LIBS) + $(WAYLAND_LIBS) \ + $(XKBCOMMON_LIBS) diff --git a/configure.ac b/configure.ac index 3fd6b73..fdd4205 100644 --- a/configure.ac +++ b/configure.ac @@ -280,6 +280,7 @@ if test x$enable_wlterm = xyes ; then enable_eloop=yes enable_tsm=yes enable_wayland=yes + enable_xkbcommon=yes fi AM_CONDITIONAL([BUILD_ENABLE_WLTERM],