summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier Andrieu <oandrieu@gmail.com>2006-11-13 21:08:38 +0000
committerHezekiah M. Carty <hcarty@atmos.umd.edu>2009-06-18 14:01:47 -0400
commit581693784b96f015b9e1c386eb1f8604b6d8425a (patch)
tree15d50b5bde51f2ee16f2963c1c9a80f7a7fd6c1c
parent97fa99d6bc1939a961a1f7660c0ade1f6a7fc29e (diff)
README, configure.ac: update dependencies: need GTK+ >= 2.8
src/cairo_lablgtk.mli: fix doc (no more alternate implementation for GTK+ < 2.8)
-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. *)