neon is an HTTP and WebDAV client library, with a C interface.
![[Note]](../images/note.png) 
          Development versions of BLFS may not build or run some packages properly if LFS or dependencies have been updated since the most recent stable versions of the books.
Download (HTTP): https://notroj.github.io/neon/neon-0.35.0.tar.gz
Download MD5 sum: 6fa30b9c2720b70761a2d1eb50e76471
Download size: 928 KB
Estimated disk space required: 7.1 MB (additional 321 MB for tests)
Estimated build time: less than 0.1 SBU (add 0.4 SBU for tests)
GnuTLS-3.8.10, libproxy-0.5.11, libxml2-2.15.1, MIT Kerberos V5-1.22.1, nss-3.117 (for some tests), xmlto-0.0.29 (to regenerate the documentation), and PaKChoiS
Install neon by running the following commands:
./configure --prefix=/usr    \
            --with-ssl       \
            --enable-shared  \
            --disable-static &&
make
        To test the results, issue: make check.
If you wish to regenerate the documentation, issue:
make docs
          Now, as the root user:
        
make install
          --with-ssl: This switch
          enables SSL support using OpenSSL.
          GnuTLS can be used instead, by
          passing --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-libproxy: This switch enables
          support for using libproxy to retrieve proxy server information.
          Use this switch if you have libproxy-0.5.11 installed and wish to use it.