summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gmail.com>2018-03-23 15:36:38 -0700
committerMatt Turner <mattst88@gmail.com>2018-03-23 15:36:38 -0700
commit218bf401fc9bffbfba0ec24e0501f25d4ef1874c (patch)
treeeafcfe1bc9e539522ffc54875c5080ac94e3f95a
parentef7320219e103fa53c4440686cfbed75dbda6e12 (diff)
configure: Depend on libXt
The programs use libXt, but we were not attempting to link with it. Signed-off-by: Matt Turner <mattst88@gmail.com>
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 844cff0..f4970c3 100644
--- a/configure.ac
+++ b/configure.ac
@@ -38,6 +38,6 @@ XORG_MACROS_VERSION(1.3)
XORG_DEFAULT_OPTIONS
# Checks for pkg-config packages
-PKG_CHECK_MODULES(XTRAP_APP, x11 xtrap)
+PKG_CHECK_MODULES(XTRAP_APP, x11 xtrap xt)
AC_OUTPUT([Makefile])