neon-0.30.2

Introduction to neon

neon is an HTTP and WebDAV client library, with a C interface.

This package is known to build and work properly using an LFS-9.1 platform.

Package Information

  • Download (HTTP): https://fossies.org/linux/www/neon-0.30.2.tar.gz

  • Download MD5 sum: e28d77bf14032d7f5046b3930704ef41

  • Download size: 911 KB

  • Estimated disk space required: 8.5 MB (additional 18 MB for the tests)

  • Estimated build time: 0.1 SBU (additional 0.3 SBU for the tests)

neon Dependencies

Optional

GnuTLS-3.6.12, libxml2-2.9.10, MIT Kerberos V5-1.18, libproxy, and pakchois

User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/neon

Installation of neon

Fix some code when building with gnutls-3.4 and later:

sed -e 's/client_set/set/'  \
    -e 's/gnutls_retr/&2/'  \
    -e 's/type = t/cert_&/' \
    -i src/ne_gnutls.c

Install neon by running the following commands:

./configure --prefix=/usr    \
            --with-ssl       \
            --enable-shared  \
            --disable-static &&
make

To test the results, issue: make check. Most of the ssl tests fail, using --with-ssl=gnutls.

Now, as the root user:

make install

Command Explanations

--with-ssl: This switch enables SSL support using OpenSSL or GnuTLS respectively. Remove it if you don't have any of these installed. To force GnuTLS usage when both are present, simply pass --with-ssl=gnutls and --with-ca-bundle=/etc/pki/tls/certs/ca-bundle.crt to the configure script.

--disable-static: This switch prevents installation of static versions of the libraries.

--with-libxml2: This switch forces the use of libxml2 instead of Expat.

Contents

Installed Program: neon-config
Installed Library: libneon.so
Installed Directories: /usr/include/neon and /usr/share/doc/neon-0.30.2

Short Descriptions

neon-config

is a script that provide information about an installed copy of the neon library.

libneon.so

is used as a high-level interface to common HTTP and WebDAV methods.

Last updated on 2020-02-17 12:12:55 -0800