bug-anubis
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [bug-anubis] This, I think, is strang


From: Sergey Poznyakoff
Subject: Re: [bug-anubis] This, I think, is strang
Date: Wed, 22 Jun 2011 14:32:10 +0300

> Ok, I compiled anubis with:
>       CPPFLAGS="-I/usr/include/gpgme" ./configure --prefix=/usr
> --with-gnutls --with-socks-proxy --with-guile --includedir=/usr/include

It is better to do so:

  ./configure CPPFLAGS="-I/usr/include/gpgme" --prefix=/usr \
             --with-gnutls --with-socks-proxy --with-guile \
             --includedir=/usr/include

It is very important to give any makefile variable assignments as arguments
to configure, instead of setting them as envars before invoking it.

>       /usr/include/gpgme/gpgme.h:89:2: error: #error GPGME was compiled
> with _FILE_OFFSET_BITS = 64, please see the section "Largefile support
> (LFS)" in the GPGME manual.

Try configuring it as follows:

  ./configure CPPFLAGS="-I/usr/include/gpgme -D_FILE_OFFSET_BITS=64" \
             --prefix=/usr \
             --with-gnutls --with-socks-proxy --with-guile \
             --includedir=/usr/include

Let me know if it works for you.

Regards,
Sergey



reply via email to

[Prev in Thread] Current Thread [Next in Thread]