diff options
author | Kevin E Martin <kem@kem.org> | 2005-11-19 07:15:36 +0000 |
---|---|---|
committer | Kevin E Martin <kem@kem.org> | 2005-11-19 07:15:36 +0000 |
commit | e35111966e6d66c176ed0955c1c25942c567632b (patch) | |
tree | 63ff67e9743c0dc15fa692659fd2a259cd51aad1 | |
parent | d90d5ab54582b04ad93e9cf6182652fdd6d3b4a3 (diff) |
Update pkgconfig files to separate library build-time dependencies from
application build-time dependencies, and update package deps to work
with separate build roots.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | Makefile.am | 1 | ||||
-rw-r--r-- | configure.ac | 3 |
3 files changed, 7 insertions, 3 deletions
@@ -1,3 +1,9 @@ +2005-11-19 Kevin E. Martin <kem-at-freedesktop-dot-org> + + * Makefile.am: + * configure.ac: + Update dependencies to work with separate build roots. + 2005-10-18 Kevin E. Martin <kem-at-freedesktop-dot-org> * configure.ac: diff --git a/Makefile.am b/Makefile.am index 64465cd..b24924b 100644 --- a/Makefile.am +++ b/Makefile.am @@ -21,7 +21,6 @@ bin_PROGRAMS = sessreg sessreg_CFLAGS = $(SESSREG_CFLAGS) -sessreg_LDADD = $(SESSREG_LIBS) sessreg_SOURCES = \ sessreg.c diff --git a/configure.ac b/configure.ac index 0f647a3..d1a86ee 100644 --- a/configure.ac +++ b/configure.ac @@ -42,9 +42,8 @@ AC_DEFINE_UNQUOTED(HAVE_UTMPX_UT_SYSLEN,$HAVE_SYSLEN, AC_SYS_LARGEFILE # Checks for pkg-config packages -PKG_CHECK_MODULES(SESSREG, xproto) +PKG_CHECK_MODULES(SESSREG, x11) AC_SUBST(SESSREG_CFLAGS) -AC_SUBST(SESSREG_LIBS) XORG_MANPAGE_SECTIONS XORG_RELEASE_VERSION |