diff options
Diffstat (limited to 'xkbcomp')
-rw-r--r-- | xkbcomp/Makefile.am | 3 | ||||
-rw-r--r-- | xkbcomp/configure.ac | 8 | ||||
-rw-r--r-- | xkbcomp/xkbcomp.pc.in | 9 |
3 files changed, 18 insertions, 2 deletions
diff --git a/xkbcomp/Makefile.am b/xkbcomp/Makefile.am index d0e991df3..01632f1f0 100644 --- a/xkbcomp/Makefile.am +++ b/xkbcomp/Makefile.am @@ -60,6 +60,9 @@ xkbcomp_SOURCES = \ xkbpath.h \ xkbscan.c +pkgconfigdir = $(libdir)/pkgconfig +pkgconfig_DATA = xkbcomp.pc + MAINTAINERCLEANFILES = ChangeLog INSTALL .PHONY: ChangeLog INSTALL diff --git a/xkbcomp/configure.ac b/xkbcomp/configure.ac index 252eb1a0b..9c400b650 100644 --- a/xkbcomp/configure.ac +++ b/xkbcomp/configure.ac @@ -45,8 +45,11 @@ fi AC_CHECK_FUNCS([strdup strcasecmp]) +REQUIRED_MODULES="x11 xkbfile" + # Checks for pkg-config packages -PKG_CHECK_MODULES(XKBCOMP, x11 xkbfile) +PKG_CHECK_MODULES(XKBCOMP, [$REQUIRED_MODULES]) +AC_SUBST(REQUIRED_MODULES) AC_ARG_WITH([xkb_config_root], [AS_HELP_STRING([--with-xkb-config-root=<paths>], @@ -58,5 +61,6 @@ AC_SUBST([XKBCONFIGROOT]) AC_CONFIG_FILES([ Makefile - man/Makefile]) + man/Makefile + xkbcomp.pc]) AC_OUTPUT diff --git a/xkbcomp/xkbcomp.pc.in b/xkbcomp/xkbcomp.pc.in new file mode 100644 index 000000000..b8d60235c --- /dev/null +++ b/xkbcomp/xkbcomp.pc.in @@ -0,0 +1,9 @@ +prefix=@prefix@ +datarootdir=@datarootdir@ +datadir=@datadir@ +xkbconfigdir=@XKBCONFIGROOT@ + +Name: xkbcomp +Description: XKB keymap compiler +Version: @PACKAGE_VERSION@ +Requires.private: @REQUIRED_MODULES@ |