summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2011-03-09 13:01:54 -0500
committerColin Walters <walters@verbum.org>2011-03-09 13:05:14 -0500
commit153c86d356ec2f4f8916c1ad1c47fd946e85c5db (patch)
treec37e2dda22ecb591f3a3144b56095b6f7c07fb1d
parent98eaa797428aa84f784d4df78434ba56889c4fd0 (diff)
downloadgobject-introspection-153c86d356ec2f4f8916c1ad1c47fd946e85c5db.tar.gz
cairo-1.0.gir: Use fully qualified shared libraryGOBJECT_INTROSPECTION_0_10_4GOBJECT_INTROSPECTION_0.10.4
The .so link is for development, we need to reference the full soname; otherwise things will break without "cairo-devel" installed.
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index c45fea9b..ade925a2 100644
--- a/configure.ac
+++ b/configure.ac
@@ -137,10 +137,10 @@ if test x$have_cairo = xyes; then
fi
if test x$have_cairo_gobject = xyes; then
- CAIRO_SHARED_LIBRARY="libcairo-gobject.so"
+ CAIRO_SHARED_LIBRARY="libcairo-gobject.so.2"
CAIRO_GIR_PACKAGE="cairo-gobject"
elif test x$have_cairo = xyes; then
- CAIRO_SHARED_LIBRARY="libcairo.so"
+ CAIRO_SHARED_LIBRARY="libcairo.so.2"
CAIRO_GIR_PACKAGE="cairo"
fi
AC_SUBST(CAIRO_SHARED_LIBRARY)