diff options
author | Kevin E Martin <kem@kem.org> | 2005-11-01 15:11:51 +0000 |
---|---|---|
committer | Kevin E Martin <kem@kem.org> | 2005-11-01 15:11:51 +0000 |
commit | 090314b101b9d3626dc0dc970be68aec7e382d0f (patch) | |
tree | 7fecc527831bc929638c5822e4aa716e2ff5b9ca | |
parent | 2deac5f213ee0a1cedccc721cd015691661b8002 (diff) |
Update pkgcheck dependencies to work with separate build roots.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | src/Makefile.am | 2 |
3 files changed, 8 insertions, 2 deletions
@@ -1,3 +1,9 @@ +2005-11-01 Kevin E. Martin <kem-at-freedesktop-dot-org> + + * configure.ac: + * src/Makefile.am: + Update pkgcheck dependencies to work with separate build roots. + 2005-10-18 Kevin E. Martin <kem-at-freedesktop-dot-org> * configure.ac: diff --git a/configure.ac b/configure.ac index 72aed01..4d616e5 100644 --- a/configure.ac +++ b/configure.ac @@ -44,7 +44,7 @@ AC_PROG_CC AC_PROG_LIBTOOL # Check for X -PKG_CHECK_MODULES(X, x11) +PKG_CHECK_MODULES(X, x11 xext xrender randrproto) # Check randr configuration, strip extra digits from package version to # find the required protocol version diff --git a/src/Makefile.am b/src/Makefile.am index 5f2865c..55c1457 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -4,7 +4,7 @@ libXrandr_la_SOURCES = \ Xrandr.c \ Xrandrint.h -libXrandr_la_LIBADD = @X_LIBS@ -lX11 -lXext -lXrender +libXrandr_la_LIBADD = @X_LIBS@ AM_CFLAGS = @X_CFLAGS@ INCLUDES = -I$(top_srcdir)/include/X11/extensions |