diff options
author | Antonio Ospite <ospite@studenti.unina.it> | 2010-03-18 10:31:44 +0000 |
---|---|---|
committer | Stefan Schmidt <stefan@datenfreihafen.org> | 2010-03-27 13:08:34 +0100 |
commit | 6b2f9de0f34d89923bb3990e1708d18c740dcef0 (patch) | |
tree | b228da66cf850c4bed06d065cb22bb0a19394366 /recipes/gnutls/gnutls.inc | |
parent | c5bf860445fcea7897f19c82e081e96402e0857d (diff) |
gnutls: fix do_configure by depending on gtk-doc
building gnutls_2.8.5.bb fails in do_configure with these messages:
[..]
| automake: unknown warning category `cross'
| doc/Makefile.am:27: ENABLE_GTK_DOC does not appear in AM_CONDITIONAL
| gtk-doc.make:7: GTK_DOC_USE_LIBTOOL does not appear in AM_CONDITIONAL
| doc/reference/Makefile.am:135: `gtk-doc.make' included from here
| gtk-doc.make:50: ENABLE_GTK_DOC does not appear in AM_CONDITIONAL
| doc/reference/Makefile.am:135: `gtk-doc.make' included from here
| gtk-doc.make:173: ENABLE_GTK_DOC does not appear in AM_CONDITIONAL
| doc/reference/Makefile.am:135: `gtk-doc.make' included from here
| doc/reference/Makefile.am:147: ENABLE_GTK_DOC does not appear in AM_CONDITIONAL
| autoreconf: automake failed with exit status: 1
| FATAL: autoreconf execution failed.
NOTE: Task failed: /home/chris/oe/micro-dev/work/i686-oe-linux/gnutls-2.8.5-r0/temp/log.do_configure.14113
ERROR: TaskFailed event exception, aborting
ERROR: Build of /home/chris/oe/openembedded.org/recipes/gnutls/gnutls_2.8.5.bb do_configure failed
ERROR: Task 652 (/home/chris/oe/openembedded.org/recipes/gnutls/gnutls_2.8.5.bb, do_configure) failed
NOTE: Tasks Summary: Attempted 865 tasks of which 0 didn't need to be rerun and 1 failed.
ERROR: '/home/chris/oe/openembedded.org/recipes/gnutls/gnutls_2.8.5.bb' failed
Depending on gtk-doc fixes this.
Signed-off-by: Antonio Ospite <ospite@studenti.unina.it>
Acked-by: Holger Hans Peter Freyther <zecke@selfish.org>
Signed-off-by: Stefan Schmidt <stefan@datenfreihafen.org>
Diffstat (limited to 'recipes/gnutls/gnutls.inc')
-rw-r--r-- | recipes/gnutls/gnutls.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/recipes/gnutls/gnutls.inc b/recipes/gnutls/gnutls.inc index 60f7d33c47..ccf6f6942c 100644 --- a/recipes/gnutls/gnutls.inc +++ b/recipes/gnutls/gnutls.inc @@ -1,13 +1,13 @@ DESCRIPTION = "GNU Transport Layer Security Library" HOMEPAGE = "http://www.gnu.org/software/gnutls/" -DEPENDS = "zlib libgcrypt lzo guile-native gettext" +DEPENDS = "zlib libgcrypt lzo guile-native gettext gtk-doc" LICENSE = "LGPL" SRC_URI = "ftp://ftp.gnutls.org/pub/gnutls/gnutls-${PV}.tar.bz2;name=gnutls" inherit autotools binconfig pkgconfig -INC_PR = "r8" +INC_PR = "r9" EXTRA_OECONF = "--with-included-opencdk --with-included-libtasn1" |