diff options
author | Dan Nicholson <dbn.lists@gmail.com> | 2011-03-07 14:21:09 -0800 |
---|---|---|
committer | Dan Nicholson <dbn.lists@gmail.com> | 2011-03-13 18:34:01 -0700 |
commit | 41689f150904be690f3aa96c283a7ee632d566ce (patch) | |
tree | 31f5a56a56fbd3a2df8015cf95bbfc0df9d5742c | |
parent | 223851b68fedad730747652bc6560e40ca695ea7 (diff) |
Drop dependency on xcb-atom/xcb-util
With commit 223851b6, the atom names from xcb/xproto.h are being used
and xcb-atom is no longer needed.
Signed-off-by: Dan Nicholson <dbn.lists@gmail.com>
Reviewed-by: Jon TURNEY <jon.turney@dronecode.org.uk>
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | xlsclients.c | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 39204e8..987ca2b 100644 --- a/configure.ac +++ b/configure.ac @@ -45,7 +45,7 @@ fi XORG_DEFAULT_OPTIONS # Checks for pkg-config packages -PKG_CHECK_MODULES(XLSCLIENTS, xcb xcb-atom) +PKG_CHECK_MODULES(XLSCLIENTS, xcb) AC_CONFIG_FILES([ Makefile diff --git a/xlsclients.c b/xlsclients.c index 15d3f1a..691f868 100644 --- a/xlsclients.c +++ b/xlsclients.c @@ -37,7 +37,6 @@ in this Software without prior written authorization from The Open Group. #include <inttypes.h> #include <xcb/xcb.h> #include <xcb/xproto.h> -#include <xcb/xcb_atom.h> #ifndef HAVE_STRNLEN #include "strnlen.h" #endif |