diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2012-07-30 23:52:49 +0200 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2012-07-31 00:14:55 +0200 |
commit | 4339668ff27c839af1a1e4cfa5a2d034afe204f2 (patch) | |
tree | d2a48dca9a2a46a944e5091bf9b157cb2dc15e44 /meta-oe/recipes-support/iksemel | |
parent | f2afdd2b988af8d0b4d822c7c03529b725fe24ba (diff) | |
download | meta-openembedded-4339668ff27c839af1a1e4cfa5a2d034afe204f2.tar.gz |
fbreader, fltk, gpm, iksemel, joe, links, ode, openldap, opensync, xchat: import from meta-smartphone
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-support/iksemel')
-rw-r--r-- | meta-oe/recipes-support/iksemel/iksemel-1.4/r25.diff | 32 | ||||
-rw-r--r-- | meta-oe/recipes-support/iksemel/iksemel_1.4.bb | 16 |
2 files changed, 48 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/iksemel/iksemel-1.4/r25.diff b/meta-oe/recipes-support/iksemel/iksemel-1.4/r25.diff new file mode 100644 index 000000000..e666ce07b --- /dev/null +++ b/meta-oe/recipes-support/iksemel/iksemel-1.4/r25.diff | |||
@@ -0,0 +1,32 @@ | |||
1 | Taken from upstream subversion repository: | ||
2 | |||
3 | http://code.google.com/p/iksemel/source/detail?r=25 | ||
4 | |||
5 | =================================================================== | ||
6 | --- | ||
7 | configure.ac | 10 +++++++++- | ||
8 | 1 file changed, 9 insertions(+), 1 deletion(-) | ||
9 | |||
10 | --- iksemel-1.4.orig/configure.ac | ||
11 | +++ iksemel-1.4/configure.ac | ||
12 | @@ -43,11 +43,19 @@ AM_CONDITIONAL(DO_POSIX, test "x$defio" | ||
13 | dnl Checks for library functions | ||
14 | AC_SEARCH_LIBS(recv,socket) | ||
15 | AC_CHECK_FUNCS(getopt_long) | ||
16 | AC_CHECK_FUNCS(getaddrinfo) | ||
17 | |||
18 | -AM_PATH_LIBGNUTLS(,AC_DEFINE(HAVE_GNUTLS,,"Use libgnutls")) | ||
19 | +dnl Check GNU TLS | ||
20 | +PKG_CHECK_MODULES(GNUTLS, gnutls >= 2.0.0, have_gnutls=yes, have_gnutls=no) | ||
21 | +if test "x$have_gnutls" = "xyes"; then | ||
22 | + LIBGNUTLS_CFLAGS="$GNUTLS_CFLAGS" | ||
23 | + LIBGNUTLS_LIBS="$GNUTLS_LIBS" | ||
24 | + AC_SUBST(LIBGNUTLS_CFLAGS) | ||
25 | + AC_SUBST(LIBGNUTLS_LIBS) | ||
26 | + AC_DEFINE(HAVE_GNUTLS, 1, [whether to use GnuTSL support.]) | ||
27 | +fi | ||
28 | |||
29 | dnl Check -Wall flag of GCC | ||
30 | if test "x$GCC" = "xyes"; then | ||
31 | if test -z "`echo "$CFLAGS" | grep "\-Wall" 2> /dev/null`" ; then | ||
32 | CFLAGS="$CFLAGS -Wall" | ||
diff --git a/meta-oe/recipes-support/iksemel/iksemel_1.4.bb b/meta-oe/recipes-support/iksemel/iksemel_1.4.bb new file mode 100644 index 000000000..98691496e --- /dev/null +++ b/meta-oe/recipes-support/iksemel/iksemel_1.4.bb | |||
@@ -0,0 +1,16 @@ | |||
1 | DESCRIPTION = "Fast and portable XML parser and Jabber protocol library" | ||
2 | AUTHOR = "Gurer Ozen <meduketto at gmail.com>" | ||
3 | HOMEPAGE = "http://iksemel.googlecode.com" | ||
4 | SECTION = "libs" | ||
5 | LICENSE = "LGPLv2.1" | ||
6 | LIC_FILES_CHKSUM = "file://COPYING;md5=d8045f3b8f929c1cb29a1e3fd737b499" | ||
7 | DEPENDS = "gnutls" | ||
8 | |||
9 | PR = "r1" | ||
10 | |||
11 | SRC_URI = "http://iksemel.googlecode.com/files/${P}.tar.gz;name=archive \ | ||
12 | file://r25.diff" | ||
13 | SRC_URI[archive.md5sum] = "532e77181694f87ad5eb59435d11c1ca" | ||
14 | SRC_URI[archive.sha256sum] = "458c1b8fb3349076a6cecf26c29db1d561315d84e16bfcfba419f327f502e244" | ||
15 | |||
16 | inherit autotools pkgconfig | ||