Note that if your system doesn't have a native ANSI C compiler, you may have to acquire one separately. We recommend GCC.
For UNIX, the GNU tools Autoconf, Automake and Libtool are used to generate Makefiles and configure YAZ for the system. You do not these tools unless you're using the CVS version of YAZ.
If you wish to use character set conversion facilities in YAZ or if you are compiling YAZ for use with Zebra it is a good idea to ensure that the iconv library is installed. Most Unixes today already have it - if not, we suggest GNU iconv.
Generally it should be sufficient to run configure without options, like this:
./configure |
The configure script attempts to use use the C compiler specified by the CC environment variable. If not set, GNU C will be used if it is available. The CFLAGS environment variable holds options to be passed to the C compiler. If you're using Bourne-compatible shell you may pass something like this to use a particular C compiler with optimization enabled:
CC=/opt/ccs/bin/cc CFLAGS=-O ./configure |
To customize YAZ, the configure script also accepts a set of options. The most important are:
Specifies installation prefix. This is only needed if you run make install later to perform a "system" installation. The prefix is /usr/local if not specified.
The front end server will be built using Wietse's TCP wrapper library. It allows you to allow/deny clients depending on IP number. The TCP wrapper library is often used in Linux/BSD distributions. See hosts_access(5) and tcpd(8).
YAZ will be built using POSIX threads. Specifically, _REENTRANT will be defined during compilation.
YAZ will be linked with the OpenSSL libraries and an SSL COMSTACK will be provided. Note that SSL support is still experimental.
The make process will create shared libraries (also known as shared objects .so). By default, no shared libraries are created - equivalent to --disable-shared.
The make process will not create static libraries (.a). By default, static libraries are created - equivalent to --enable-static.
Compile YAZ with iconv library in directory dir. By default configure will search for iconv on your system. Use this option if it doesn't find iconv. Alternatively you can use --without-iconv to force YAZ not to use iconv.
When configured, build the software by typing:
make |
The following files are generated by the make process:
Main YAZ library. This is no ordinary library. It's a Libtool archive. By default, YAZ creates a static library in lib/.libs/libyaz.a.
When threading is supported/enabled by configure this Libtool library is created. It includes functions that allows YAZ to use threads.
Test Z39.50 server.
Z39.50 client for testing the protocol. See chapter YAZ client for more information.
A Bourne-shell script, generated by configure, that specifies how external applications should compile - and link with YAZ.
The ASN.1 compiler for YAZ. Requires the Tcl Shell, tclsh, in PATH to operate.
A simple shell implemented on top of the ZOOM functions. The shell is a command line application that allows you to enter simple commands to perform ZOOM operations.
Several small applications that demonstrates the ZOOM API.
If you wish to install YAZ in system directories /usr/local/bin, /usr/local/lib .. etc, you can type:
make install |
You probably need to have root access in order to perform this. You must specify the --prefix option for configure if you wish to install YAZ in other directories than the default /usr/local/.
If you wish to perform an un-installation of YAZ, use:
make uninstall |
This will only work if you haven't reconfigured YAZ (and therefore changed installation prefix). Note that uninstall will not remove directories created by make install, e.g. /usr/local/include/yaz.
YAZCONFIG=/usr/local/bin/yaz-config CFLAGS=`$(YAZCONFIG) --cflags` LIBS=`$(YAZCONFIG) --libs` myprog: myprog.o $(CC) $(CFLAGS) -o myprog myprog.o $(LIBS) |
#include <yaz/proto.h> |
#include <proto.h> |
CFLAGS=`$(YAZCONFIG) --cflags threads` LIBS=`$(YAZCONFIG) --libs threads` |