Next: , Previous: , Up: Introduction   [Contents][Index]


1.8 Downloading and Installing

The package can be downloaded from several places, including:

https://ftp.gnu.org/gnu/gsasl/

The latest version is stored in a file, e.g., ‘gsasl-2.2.1.tar.gz’ where the ‘2.2.1’ value is the highest version number in the directory.

The package is then extracted, configured and built like many other packages that use Autoconf. For detailed information on configuring and building it, refer to the INSTALL file that is part of the distribution archive.

Here is an example terminal session that downloads, configures, builds and install the package. You will need a few basic tools, such as ‘sh’, ‘make’ and ‘cc’.

$ wget -q https://ftp.gnu.org/gnu/gsasl/gsasl-2.2.1.tar.gz
$ tar xfz gsasl-2.2.1.tar.gz
$ cd gsasl-2.2.1/
$ ./configure
...
$ make
...
$ make install
...

After that gsasl should be properly installed and ready for use.

A few configure options may be relevant, summarized in the table.

--disable-client
--disable-server

If your target system require a minimal implementation, you may wish to disable the client or the server part of the code. This does not remove symbols from the library, so if you attempt to call an application that uses server functions in a library built with --disable-server, the function will return an error code.

--disable-anonymous
--disable-external
--disable-plain
--disable-login
--disable-securid
--disable-ntlm
--disable-cram-md5
--disable-digest-md5
--disable-gssapi
--disable-gs2
--disable-scram-sha1
--disable-scram-sha256
--disable-saml20
--disable-openid20

Disable or enable individual mechanisms (see Mechanisms).

--without-stringprep

Disable internationalized string processing. Note that this will result in a SASL library that is compatible with RFC 2222 but not RFC 4422.

For the complete list, refer to the output from configure --help.


Next: Bug Reports, Previous: Commercial Support, Up: Introduction   [Contents][Index]