diff options
author | Dodji Seketeli <dodji@gnome.org> | 2004-06-08 23:21:53 +0000 |
---|---|---|
committer | Dodji Seketeli <dodji@src.gnome.org> | 2004-06-08 23:21:53 +0000 |
commit | fb8f816e5573709ebdc0691871c9c893cc8bb6af (patch) | |
tree | 6188bb6a26fc3e7e3d515fa974ed934821eee149 | |
parent | e12258f408da969e60a0259a43c3991b01c2103e (diff) | |
download | librsvg-fb8f816e5573709ebdc0691871c9c893cc8bb6af.tar.gz |
several versions of libcroco can now be installed in parallel. We compile
2004-06-09 Dodji Seketeli <dodji@gnome.org>
* configure.in: several versions of libcroco can now be
installed in parallel. We compile and link against the 0.6.xx
serie.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | configure.in | 4 |
2 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,8 @@ +2004-06-09 Dodji Seketeli <dodji@gnome.org> + + * configure.in: several versions of libcroco can now be + installed in parallel. We compile and link against the 0.6.xx serie. + 2004-06-08 Caleb Moore <c.moore@student.unsw.edu.au> * rsvg.c, rsvg-styles.c: made stop colours inheritable diff --git a/configure.in b/configure.in index edd08254..6a76ae02 100644 --- a/configure.in +++ b/configure.in @@ -166,12 +166,12 @@ AC_ARG_WITH(croco,[ --with-croco Use libcroco for CSS parsing],[ fi ]) if test "x$test_croco" = "xtrue"; then - PKG_CHECK_MODULES(LIBCROCO,[libcroco >= 0.6.0], test_croco=true, test_croco=false) + PKG_CHECK_MODULES(LIBCROCO,[libcroco-0.6 >= 0.6.0], test_croco=true, test_croco=false) fi if test "x$test_croco" = "xtrue"; then LIBCROCO_CFLAGS="$LIBCROCO_CFLAGS -DHAVE_LIBCROCO=1" - LIBCROCOPKG="libcroco" + LIBCROCOPKG="libcroco-0.6" else AC_MSG_WARN([LibCroco support disabled, as requested (Use --with-croco to enable)]) croco_warning=" |