Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 149739 | Differences between
and this patch

Collapse All | Expand All

(-)configure.ac.tmpl.orig (-1 / +6 lines)
Lines 15-20 Link Here
15
AM_GNU_GETTEXT
15
AM_GNU_GETTEXT
16
AM_PROG_AS
16
AM_PROG_AS
17
17
18
# gpgme requires LFS, see http://www.gnupg.org/documentation/manuals/gpgme/Largefile-Support-_0028LFS_0029.html
19
AC_SYS_LARGEFILE
20
AC_FUNC_FSEEKO
21
AC_TYPE_OFF_T
22
18
AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "gyachi", [ Define package name for gettext support, in case it differs from main package ])
23
AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "gyachi", [ Define package name for gettext support, in case it differs from main package ])
19
AC_SUBST(GETTEXT_PACKAGE)
24
AC_SUBST(GETTEXT_PACKAGE)
20
25
Lines 205-211 Link Here
205
210
206
dnl checks for plugin-gpgme
211
dnl checks for plugin-gpgme
207
if test "$enable_plugin_gpgme" != "no"; then
212
if test "$enable_plugin_gpgme" != "no"; then
208
	AC_CHECK_HEADER([gpgme.h], ,[AC_MSG_ERROR(cannot find include file gpgme.h. Perhaps you need to install the gpgme development package?)])
213
	AC_CHECK_HEADER([gpgme/gpgme.h], ,[AC_MSG_ERROR(cannot find include file gpgme/gpgme.h. Perhaps you need to install the gpgme development package?)])
209
	PLUGIN_DIRS="$PLUGIN_DIRS gpgme"
214
	PLUGIN_DIRS="$PLUGIN_DIRS gpgme"
210
else
215
else
211
	AC_MSG_NOTICE(gpgme plugin is disabled)
216
	AC_MSG_NOTICE(gpgme plugin is disabled)
(-)plugins/gpgme/gyachi-gpgme.c.orig (-1 / +1 lines)
Lines 24-30 Link Here
24
 *****************************************************************************/
24
 *****************************************************************************/
25
25
26
#include "plugin_api.h"
26
#include "plugin_api.h"
27
#include <gpgme.h>
27
#include <gpgme/gpgme.h>
28
#include <stdio.h>
28
#include <stdio.h>
29
#include <stdlib.h>
29
#include <stdlib.h>
30
#include <string.h>
30
#include <string.h>

Return to bug 149739