From 40796148b87eea991a9c624061a978821f108de6 Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Tue, 10 May 2005 14:54:48 +0000 Subject: [PATCH] Fix URLs for glitz and xlibs, (thanks to Jason Dorje Short ). --- ChangeLog | 5 +++++ configure.in | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 8f2684e5b..d9332d89d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-05-10 Carl Worth + + * configure.in: Fix URLs for glitz and xlibs, (thanks to Jason + Dorje Short ). + 2005-05-10 Carl Worth * configure.in: Update to current canonical URL for XCB. diff --git a/configure.in b/configure.in index 7246bc379..db2053f3a 100644 --- a/configure.in +++ b/configure.in @@ -60,7 +60,7 @@ if test "x$use_xlib" = "xyes"; then AC_PATH_XTRA XRENDER_LIBS="$X_LIBS -lXrender -lXext -lX11 $X_EXTRA_LIBS" use_xlib=yes], [ - use_xlib="no (requires Xrender http://freedesktop.org/software/xlibs)"])]) + use_xlib="no (requires Xrender http://freedesktop.org/Software/xlibs)"])]) fi AM_CONDITIONAL(CAIRO_HAS_XLIB_SURFACE, test "x$use_xlib" = "xyes") @@ -217,7 +217,7 @@ AC_ARG_ENABLE(glitz, if test "x$use_glitz" = "xyes"; then PKG_CHECK_MODULES(GLITZ, glitz >= 0.4.0, [ GLITZ_REQUIRES=glitz - use_glitz=yes], [use_glitz="no (requires glitz http://freedesktop.org/software/glitz)"]) + use_glitz=yes], [use_glitz="no (requires glitz http://freedesktop.org/Software/glitz)"]) fi AM_CONDITIONAL(CAIRO_HAS_GLITZ_SURFACE, test "x$use_glitz" = "xyes")