> 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

_______________________________________________
Bug-anubis mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/bug-anubis

Reply via email to