diff options
author | Hadrien Boutteville <hadrien.boutteville@gmail.com> | 2014-10-13 14:54:23 +0200 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2014-10-15 14:52:23 +0200 |
commit | c4ec97d505e080298c2225c123d1f3ec560018e6 (patch) | |
tree | f74302cca3c7255a71e5686c6f8aa00eeeb92fc7 /package/libgtk3/libgtk3-0001-no-gtk-doc.patch | |
parent | ced34ea1036ab5360146ca80fd7816060e3783b5 (diff) | |
download | buildroot-c4ec97d505e080298c2225c123d1f3ec560018e6.tar.gz buildroot-c4ec97d505e080298c2225c123d1f3ec560018e6.zip |
libgtk3: new package
This package provides Gtk+ 3.0, a graphical toolkit.
[Peter: fix Config.in deps, ensure atleast 1 backend, remove redundant info]
Signed-off-by: Hadrien Boutteville <hadrien.boutteville@gmail.com>
Signed-off-by: Eric Le Bihan <eric.le.bihan.dev@free.fr>
[Eric: added backend support, use of pkgconf for host-libgtk3]
Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Cc: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/libgtk3/libgtk3-0001-no-gtk-doc.patch')
-rw-r--r-- | package/libgtk3/libgtk3-0001-no-gtk-doc.patch | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/package/libgtk3/libgtk3-0001-no-gtk-doc.patch b/package/libgtk3/libgtk3-0001-no-gtk-doc.patch new file mode 100644 index 0000000000..6dede7348a --- /dev/null +++ b/package/libgtk3/libgtk3-0001-no-gtk-doc.patch @@ -0,0 +1,25 @@ +Same patch as for systemd in commit +http://git.buildroot.net/buildroot/commit/?id=7144f2f04b70553 + +Fix deactivation of gtk-doc + +The tarball contains the Makefile for building documentation with gtk-doc, +Unfortunately the AM_CONDITIONAL variable is not the correct one, which +results in an error when running autoreconf. + +This patch fixes this issue. + +Signed-off-by: Eric Le Bihan <eric.le.bihan.dev@free.fr> +Signed-off-by: Hadrien Boutteville <hadrien.boutteville@gmail.com> + +--- a/gtk-doc.make ++++ b/gtk-doc.make +@@ -267,7 +267,7 @@ + # + # Require gtk-doc when making dist + # +-if HAVE_GTK_DOC ++if ENABLE_GTK_DOC + dist-check-gtkdoc: docs + else + dist-check-gtkdoc: |