summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Kuehling <fxkuehl@gmx.de>2005-11-21 04:24:07 +0000
committerFelix Kuehling <fxkuehl@gmx.de>2005-11-21 04:24:07 +0000
commit1c8c1179c0789e3e134d31a62dbb88bfdb594b26 (patch)
tree1a5da99b925d71bfb57ce625115f5d9a1ab09f46
parenta1f110bda80bb3b8e4f602385ca5ccd96cf3f786 (diff)
Fix Xprt library dependencies in the case that Xprint is auto-detected by
configure.
-rw-r--r--ChangeLog6
-rw-r--r--configure.ac2
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index e47069d88..ed9829ce7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2005-11-20 Felix Kuehling <fxkuehl@gmx.de>
+
+ * configure.ac:
+ Fix Xprt library dependencies in the case that Xprint is
+ auto-detected by configure.
+
2005-11-20 Alan Coopersmith <alan.coopersmith@sun.com>
* configure.ac:
diff --git a/configure.ac b/configure.ac
index 7531ed390..ad1050bdc 100644
--- a/configure.ac
+++ b/configure.ac
@@ -608,7 +608,7 @@ if test "x$XF86MISC" = xyes; then
fi
if test "x$XPRINT" = xauto; then
- PKG_CHECK_MODULES([XPRINT], [printproto], [XPRINT=yes], [XPRINT=no])
+ PKG_CHECK_MODULES([XPRINTPROTO], [printproto], [XPRINT=yes], [XPRINT=no])
fi
AM_CONDITIONAL(XPRINT, [test "x$XPRINT" = xyes])
if test "x$XPRINT" = xyes; then