summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDieter Verfaillie <dieterv@optionexplicit.be>2011-09-05 15:53:15 +0200
committerDieter Verfaillie <dieterv@optionexplicit.be>2011-09-07 21:38:05 +0200
commita7cd6bf0602ebb519a5f71abf933ed1e54e0c482 (patch)
treeabc9cc1d13cc6dbc96d9193cb790061eeba92a3f
parente01556aaaf4b1623ed932585611c5c3908e66448 (diff)
downloadgobject-introspection-a7cd6bf0602ebb519a5f71abf933ed1e54e0c482.tar.gz
Windows port: set CAIRO_SHARED_LIBRARY in configure.ac
Both when x$have_cairo_gobject = xyes and x$have_cairo = xyes. https://bugzilla.gnome.org/show_bug.cgi?id=620566
-rw-r--r--configure.ac6
1 files changed, 6 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index 29dab339..75c0e4e5 100644
--- a/configure.ac
+++ b/configure.ac
@@ -146,6 +146,9 @@ if test x$have_cairo_gobject = xyes; then
*-*-darwin*)
CAIRO_SHARED_LIBRARY="libcairo-gobject.2.dylib"
;;
+ *-*-mingw*)
+ CAIRO_SHARED_LIBRARY="libcairo-gobject-2.dll"
+ ;;
*)
CAIRO_SHARED_LIBRARY="libcairo-gobject.so.2"
;;
@@ -156,6 +159,9 @@ elif test x$have_cairo = xyes; then
*-*-darwin*)
CAIRO_SHARED_LIBRARY="libcairo.2.dylib"
;;
+ *-*-mingw*)
+ CAIRO_SHARED_LIBRARY="libcairo-2.dll"
+ ;;
*)
CAIRO_SHARED_LIBRARY="libcairo.so.2"
;;