INSTALL

8 days ago

author
Olaf Wintermann <olaf.wintermann@gmail.com>
date
Sun, 20 Apr 2025 13:17:14 +0200 (8 days ago)
changeset 862
e58dd7fb1a97
parent 802
16e5b9d32754
permissions
-rw-r--r--

add util_url_encode_s/util_url_decode_s cxstring variants

Requirements
------------

In order to compile this software you need, in addition to a C compiler, the
following libraries:

libcurl
libxml2
openssl

You can install them with the following command
Debian/Ubuntu:

    apt-get install libxml2-dev libcurl3-openssl-dev libssl-dev

EL/Fedora:

    yum install libxml2-devel libcurl-devel openssl-devel

openSUSE:

    zypper install libxml2-devel libcurl-devel libopenssl-devel

Solaris:

    pkg install libxml2 curl openssl


Build instructions
------------------

To build a release version, run configure with the following option:

    ./configure --release

The script detects your toolchain automatically. In case you want
a different compiler, you can set the CC environment variable before
running configure.

    CC=clang ./configure --release

Install
-------

After a successful compilation, the binaries (dav/dav-sync) are in the
build directory. You can install them by running

    make install

This installs the binaries to /usr. To install to an other location, run

    ./configure --release --prefix=/your/prefix

before running make.

Note: The install target doesn't work on Windows, therefore you need to install
the two executables manually.

mercurial