diff options
author | Marcin Juszkiewicz <marcin@juszkiewicz.com.pl> | 2010-03-08 13:01:45 +0100 |
---|---|---|
committer | Marcin Juszkiewicz <marcin@juszkiewicz.com.pl> | 2010-03-09 18:34:20 +0100 |
commit | 6b128e9173588dbc744a7afbc27498f980665912 (patch) | |
tree | 095b3632792190a4cf725758a26b0e22b7b99152 /recipes/iksemel/iksemel-1.4 | |
parent | faae84f59f27cb13fc83a6ad87d360fabf20024f (diff) |
iksemel: make it build with GnuTLS 2.8.5 - from upstream SVN
Signed-off-by: Marcin Juszkiewicz <marcin@juszkiewicz.com.pl>
Diffstat (limited to 'recipes/iksemel/iksemel-1.4')
-rw-r--r-- | recipes/iksemel/iksemel-1.4/r25.diff | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/recipes/iksemel/iksemel-1.4/r25.diff b/recipes/iksemel/iksemel-1.4/r25.diff new file mode 100644 index 0000000000..e666ce07b6 --- /dev/null +++ b/recipes/iksemel/iksemel-1.4/r25.diff @@ -0,0 +1,32 @@ +Taken from upstream subversion repository: + +http://code.google.com/p/iksemel/source/detail?r=25 + +=================================================================== +--- + configure.ac | 10 +++++++++- + 1 file changed, 9 insertions(+), 1 deletion(-) + +--- iksemel-1.4.orig/configure.ac ++++ iksemel-1.4/configure.ac +@@ -43,11 +43,19 @@ AM_CONDITIONAL(DO_POSIX, test "x$defio" + dnl Checks for library functions + AC_SEARCH_LIBS(recv,socket) + AC_CHECK_FUNCS(getopt_long) + AC_CHECK_FUNCS(getaddrinfo) + +-AM_PATH_LIBGNUTLS(,AC_DEFINE(HAVE_GNUTLS,,"Use libgnutls")) ++dnl Check GNU TLS ++PKG_CHECK_MODULES(GNUTLS, gnutls >= 2.0.0, have_gnutls=yes, have_gnutls=no) ++if test "x$have_gnutls" = "xyes"; then ++ LIBGNUTLS_CFLAGS="$GNUTLS_CFLAGS" ++ LIBGNUTLS_LIBS="$GNUTLS_LIBS" ++ AC_SUBST(LIBGNUTLS_CFLAGS) ++ AC_SUBST(LIBGNUTLS_LIBS) ++ AC_DEFINE(HAVE_GNUTLS, 1, [whether to use GnuTSL support.]) ++fi + + dnl Check -Wall flag of GCC + if test "x$GCC" = "xyes"; then + if test -z "`echo "$CFLAGS" | grep "\-Wall" 2> /dev/null`" ; then + CFLAGS="$CFLAGS -Wall" |