summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README8
-rw-r--r--configure.ac2
-rw-r--r--src/cairo_lablgtk.mli1
3 files changed, 5 insertions, 6 deletions
diff --git a/README b/README
index 8e999dc..337a299 100644
--- a/README
+++ b/README
@@ -20,10 +20,10 @@ If you want to disable LablGTK support, run configure with
Dependencies
============
- ocaml 3.08
- cairo 0.6.0
- libsvg-cairo optional 0.1.5
- LablGTK optional
+ ocaml >= 3.08
+ cairo >= 1.2.0
+ libsvg-cairo optional >= 0.1.5
+ LablGTK optional, GTK+ >= 2.8
Documentation
diff --git a/configure.ac b/configure.ac
index 6bd902a..2269dfa 100644
--- a/configure.ac
+++ b/configure.ac
@@ -20,7 +20,7 @@ if test $use_gtk = yes ; then
if test "$LABLGTKDIR" ; then
# Check for gdk-pixbuf
- PKG_CHECK_MODULES(GDK, cairo gdk-2.0 gdk-pixbuf-2.0, :, use_gtk=no)
+ PKG_CHECK_MODULES(GDK, cairo gdk-2.0 >= 2.8 gdk-pixbuf-2.0, :, use_gtk=no)
else
use_gtk=no
fi
diff --git a/src/cairo_lablgtk.mli b/src/cairo_lablgtk.mli
index 98e9890..02fd7b9 100644
--- a/src/cairo_lablgtk.mli
+++ b/src/cairo_lablgtk.mli
@@ -9,7 +9,6 @@
(** GTK/Cairo integration *)
(** These functions are available with GTK+ 2.8.
- For older versions of GTK+, an implementation is provided, except for [region].
cf. {{:http://developer.gnome.org/doc/API/2.0/gdk/gdk-Cairo-Interaction.html}Cairo Interaction} in the GDK Reference Manual. *)