neon is an HTTP and WebDAV client library, with a C interface.
This package is known to build and work properly using an LFS-11.0 platform.
Download (HTTP): https://notroj.github.io/neon/neon-0.31.2.tar.gz
Download MD5 sum: c871268f0ba365b71f1ec1bf068d6ab3
Download size: 848 KB
Estimated disk space required: 8.4 MB (additional 19 MB for the tests)
Estimated build time: 0.1 SBU (additional 0.3 SBU for the tests)
GnuTLS-3.7.2, libxml2-2.9.12, MIT Kerberos V5-1.19.2, libproxy, and PaKChoiS
User Notes: https://wiki.linuxfromscratch.org/blfs/wiki/neon
Install neon by running the following commands:
./configure --prefix=/usr    \
            --with-ssl       \
            --enable-shared  \
            --disable-static &&
make
        To test the results, issue: make check.
          Now, as the root user:
        
make install
          --with-ssl: This switch
          enables SSL support using OpenSSL
          or GnuTLS respectively. To force
          GnuTLS usage when it is 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.
        
Last updated on