Update doc WRT ICU compilation
[yaz-moved-to-github.git] / doc / installation.xml
1 <!-- $Id: installation.xml,v 1.40 2008-01-17 21:45:05 adam Exp $ -->
2 <chapter id="installation"><title>Compilation and Installation</title>
3   
4   <sect1 id="installation-introduction"><title>Introduction</title>
5    <para>
6     The latest version of the software will generally be found at:
7    </para>
8    <para>
9     <ulink url="&url.yaz.download;"/>
10    </para>
11    <para>
12     We have tried our best to keep the software portable, and on many
13     platforms, you should be able to compile everything with little or
14     no changes. 
15    </para>
16
17    <para>
18     The software is regularly tested on
19     <ulink url="&url.debian;">Debian GNU/Linux</ulink>,
20     <ulink url="&url.redhat;">Redhat Linux</ulink>,
21     <ulink url="&url.ubuntu;">Ubuntu Linux</ulink>,
22     <ulink url="&url.freebsd;">FreeBSD (i386)</ulink>,
23     <ulink url="&url.macosx;">MAC OSX</ulink>,
24     <ulink url="&url.solaris;">SunOS 5.8 (sparc)</ulink>,
25     <ulink url="&url.windows2000;">Windows 2000</ulink>,
26     <ulink url="&url.windows2003server;">Windows 2003 server</ulink>.
27    </para>
28    
29    <para>
30     Some versions have be known to work on HP/UX,
31     DEC Unix, <ulink url="&url.netbsd;">NetBSD</ulink>,
32     <ulink url="&url.openbsd;">OpenBSD</ulink>,
33     IBM AIX,
34     Data General DG/UX (with some CFLAGS tinkering),
35     SGI/IRIX, DDE Supermax, Apple Macintosh (using the Codewarrior programming
36     environment and the GUSI socket libraries),
37     IBM AS/400 .
38    </para>
39
40    <para>
41     If you move the software to other platforms, we'd be grateful if you'd
42     let us know about it. If you run into difficulties, we will try to help
43     if we can, and if you solve the problems, we would be happy to include
44     your fixes in the next release. So far, we have mostly avoided
45     <literal>#ifdefs</literal> for individual platforms, and we'd
46     like to keep it that way as far as it makes sense.
47    </para>
48    
49    <para>
50     We maintain a mailing-list for the purpose of announcing new releases and
51     bug-fixes, as well as general discussion. Subscribe by 
52     filling-in the form
53     <ulink url="&url.yaz.mailinglist;">here</ulink>.
54     General questions and problems can be directed at 
55     <ulink url="&url.yaz.mail;"/>, or the address given at the top of
56      this document.
57    </para>
58    
59   </sect1>
60   <sect1 id="installation.unix"><title>UNIX</title>
61
62    <para>
63     We provide 
64     <ulink url="&url.debian;">Debian GNU/Linux</ulink>
65     and 
66     <ulink url="&url.redhat;">Redhat</ulink> packages for &yaz;. 
67     Only i386 binary packages are available. You should be able to
68     create packages for other CPUs by building them from the source
69     package.
70    </para>
71    
72    <sect2 id="installation.source.unix">
73     <title>Compiling from source on Unix</title>
74     
75     <para>
76      Note that if your system doesn't have a native ANSI C compiler, you may
77      have to acquire one separately. We recommend
78      <ulink url="&url.gcc;">GCC</ulink>.
79     </para>
80
81     <para>
82      If you wish to use character set conversion facilities in &yaz; or if you
83      are compiling &yaz; for use with Zebra it is a good idea to ensure that
84      the iconv library is installed. Some Unixes today already have it
85      - if not, we suggest 
86      <ulink url="&url.libiconv;">GNU libiconv</ulink>.
87     </para>
88
89     <para>
90      YAZ 3.0.16 and later includes a wrapper for the 
91      <ulink url="%url.icu;">ICU</ulink> 
92      (International Components for Unicode).
93      In order to use this, the developer version of the ICU library
94      must be available.
95     </para>
96
97     <para>
98      The <ulink url="&url.libxslt;">libxslt</ulink>,
99      <ulink url="&url.libxml2;">libxml2</ulink> librararies are required
100      if &yaz; is to support SRU.
101      These libraries are very portable and should compile out-of-the
102      box on virtually all Unix platforms. It is available in binary
103      forms for Linux and others.
104     </para>
105
106     <para>
107      The GNU tools
108      <ulink url="&url.autoconf;">Autoconf</ulink>,
109      <ulink url="&url.automake;">Automake</ulink> and
110      <ulink url="&url.libtool;">Libtool</ulink>
111      are used to generate Makefiles and configure &yaz; for the system.
112      You do <emphasis>not</emphasis> these tools unless you're using the
113      CVS version of &yaz;.
114     </para>
115
116     <para>
117      The CQL parser for &yaz; is built using
118      GNU <ulink url="&url.bison;">Bison</ulink>.
119      This tool is only needed if you're using the CVS version of &yaz;.
120     </para>
121         
122     <para>
123      &yaz; includes a tiny ASN.1 compiler. This compiler is
124      written in <ulink url="&url.tcl;">Tcl</ulink>.
125      But as for Bison you do not need it unless you're using CVS
126      version of &yaz; or you're using the compiler to built own codecs
127      for private ASN.1. 
128     </para>
129      
130     <para>
131      Generally it should be sufficient to run configure without options,
132      like this:
133     </para>
134     
135     <screen>
136      ./configure
137     </screen>
138     
139     <para>
140      The configure script attempts to use use the C compiler specified by
141      the <literal>CC</literal> environment variable. If not set, GNU C will be
142      used if it is available. The <literal>CFLAGS</literal> environment
143      variable holds options to be passed to the C compiler. If you're using
144      Bourne-compatible shell you may pass something like this to use a
145      particular C compiler with optimization enabled:
146     </para>
147     
148     <screen>
149      CC=/opt/ccs/bin/cc CFLAGS=-O ./configure
150     </screen>
151     
152     <para>
153      To customize &yaz;, the configure script also accepts a set of options.
154      The most important are:
155      
156      <variablelist>
157       <varlistentry><term>
158         <literal>--prefix</literal>=<replaceable>prefix</replaceable></term>
159        <listitem><para>Specifies installation prefix for &yaz;. This is
160          only needed if you run <literal>make install</literal> later to
161          perform a "system" installation. The prefix is
162          <literal>/usr/local</literal> if not specified.
163         </para></listitem>
164       </varlistentry>
165       <varlistentry><term><literal>--enable-tcpd</literal></term>
166        <listitem><para>The front end server will be built using Wietse's
167          <ulink url="&url.tcpwrapper;">TCP wrapper library</ulink>.
168          It allows you to allow/deny clients depending on IP number.
169          The TCP wrapper library is often used in GNU/Linux and
170          BSD distributions.
171          See
172          <citerefentry>
173           <refentrytitle>hosts_access</refentrytitle>
174           <manvolnum>5</manvolnum>
175          </citerefentry>
176          and 
177          <citerefentry>
178           <refentrytitle>tcpd</refentrytitle>
179           <manvolnum>8</manvolnum>
180          </citerefentry>.
181         </para></listitem>
182       </varlistentry>
183
184       <varlistentry><term><literal>--enable-threads</literal></term>
185        <listitem><para>&yaz; will be built using POSIX threads.
186         Specifically, <constant>_REENTRANT</constant> will be defined during
187          compilation.
188         </para></listitem>
189       </varlistentry>
190
191       <varlistentry><term><literal>--disable-shared</literal></term>
192        <listitem><para>The make process will not create shared
193          libraries (also known as shared objects <filename>.so</filename>).
194          By default, shared libraries are created -
195          equivalent to <literal>--enable-shared</literal>.
196         </para></listitem>
197       </varlistentry>
198
199       <varlistentry><term><literal>--disable-shared</literal></term>
200        <listitem><para>The make process will not create
201          static libraries (<filename>.a</filename>).
202          By default, static libraries are created -
203          equivalent to <literal>--enable-static</literal>.
204         </para></listitem>
205       </varlistentry>
206       
207       <varlistentry><term>
208         <literal>--with-iconv</literal>[=<replaceable>prefix</replaceable>]
209        </term>
210        <listitem><para>Compile &yaz; with iconv library in directory
211          <replaceable>prefix</replaceable>. By default configure will
212          search for iconv on the system. Use this option if it
213          doesn't find iconv. Alternatively, 
214          <literal>--without-iconv</literal>, can be uset to force &yaz;
215          not to use iconv.
216         </para></listitem>
217       </varlistentry>
218
219       <varlistentry><term>
220         <literal>--with-xslt</literal>[=<replaceable>prefix</replaceable>]
221        </term>
222        <listitem><para>Compile &yaz; with 
223          <ulink url="&url.libxslt;">libxslt</ulink> in directory
224          <replaceable>prefix</replaceable>. 
225          Use this option if you want SRU support.
226          By default, configure will
227          search for libxslt on the system. Use this option if it
228          libxslt is not found automatically. Alternatively, 
229          <literal>--without-xslt</literal>, can be used to force &yaz;
230          not to use libxslt.
231         </para></listitem>
232       </varlistentry>
233
234       <varlistentry><term>
235         <literal>--with-openssl</literal>[=<replaceable>prefix</replaceable>]
236        </term>
237        <listitem><para>&yaz; will be linked with the OpenSSL libraries and
238          an SSL COMSTACK will be provided. Note that SSL support is still
239          experimental.
240         </para></listitem>
241       </varlistentry>
242
243       <varlistentry><term>
244         <literal>--with-icu</literal>[=<replaceable>prefix</replaceable>]
245        </term>
246        <listitem><para>&yaz; will be linked the 
247         <ulink url="&url.icu;">ICU</ulink> library in the prefix if given.
248         If prefix is not given, the libraries exposed by the script
249         <application>icu-config</application> will be used if found.
250         </para></listitem>
251       </varlistentry>
252
253      </variablelist>
254      
255     </para>
256     <para>
257      When configured, build the software by typing:
258      <screen>
259       make
260      </screen>
261     </para>
262     
263     <para>
264      The following files are generated by the make process:
265      <variablelist>
266       <varlistentry><term><filename>src/libyaz.la</filename></term>
267        <listitem><para>
268          Main &yaz; library. This is no ordinary library. It's
269          a Libtool archive.
270          By default, &yaz; creates a static library in 
271          <filename>lib/.libs/libyaz.a</filename>.
272         </para></listitem>
273       </varlistentry>
274       
275       <varlistentry><term><filename>src/libyaz_server.la</filename></term>
276        <listitem><para>
277          Generic Frontend server. This is an add-on for libyaz.la.
278          Code in this library uses POSIX threads functions - if they
279          available on the platform.
280         </para></listitem>
281       </varlistentry>
282       
283       <varlistentry><term><filename>ztest/yaz-ztest</filename></term>
284        <listitem><para>Test Z39.50 server. 
285         </para></listitem>
286       </varlistentry>
287       
288       <varlistentry><term><filename>client/yaz-client</filename></term>
289        <listitem><para>Z39.50 client for testing the protocol.
290          See chapter <link linkend="yaz-client">
291           YAZ client</link> for more information.
292         </para></listitem>
293       </varlistentry>
294
295       <varlistentry><term><filename>util/yaz-config</filename></term>
296        <listitem><para>A Bourne-shell script, generated by configure, that
297          specifies how external applications should compile - and link with
298          &yaz;.
299         </para></listitem>
300       </varlistentry>
301       
302       <varlistentry><term><filename>util/yaz-asncomp</filename></term>
303        <listitem><para>The ASN.1 compiler for &yaz;. Requires the
304          Tcl Shell, <application>tclsh</application>, in
305          <literal>PATH</literal> to operate.
306         </para></listitem>
307       </varlistentry>
308       
309       <varlistentry><term><filename>util/yaz-iconv</filename></term>
310        <listitem><para>This program converts data in one character set to
311          another. This command exercises the YAZ character set
312          conversion API.
313         </para></listitem>
314       </varlistentry>
315        
316       <varlistentry><term><filename>util/yaz-marcdump</filename></term>
317        <listitem><para>This program parses ISO2709 encoded MARC records
318          and prints them in line-format or XML.
319         </para></listitem>
320       </varlistentry>
321       
322       <varlistentry><term><filename>util/yaz-icu</filename></term>
323        <listitem><para>This program exposes the ICU wrapper library if that
324          is enabled for YAZ. Only if ICU is available this program is
325          useful.
326         </para></listitem>
327       </varlistentry>
328       
329      <varlistentry><term><filename>zoom/zoomsh</filename></term>
330        <listitem><para>
331          A simple shell implemented on top of the 
332          <link linkend="zoom">ZOOM</link> functions.
333          The shell is a command line application that allows you to enter
334          simple commands to perform ZOOM operations.
335         </para></listitem>
336       </varlistentry>
337       
338       <varlistentry><term><filename>zoom/zoomtst1</filename>, 
339         <filename>zoom/zoomtst2</filename>, ..</term>
340        <listitem><para>
341          Several small applications that demonstrates the ZOOM API.
342         </para></listitem>
343       </varlistentry>
344      </variablelist>
345      
346     </para>
347     
348     <para>
349      If you wish to install &yaz; in system directories  
350      <filename>/usr/local/bin</filename>,
351      <filename>/usr/local/lib</filename> .. etc, you can type:
352     </para>
353     
354     <screen>
355      make install
356     </screen>
357    
358     <para>
359      You probably need to have root access in order to perform this.
360      You must specify the <literal>--prefix</literal> option for configure if
361      you wish to install &yaz; in other directories than the default 
362      <filename>/usr/local/</filename>.
363     </para>
364     
365     <para>
366      If you wish to perform an un-installation of &yaz;, use:
367     </para>
368     
369     <screen>
370      make uninstall
371     </screen>
372     
373     <para>
374      This will only work if you haven't reconfigured &yaz; (and therefore
375      changed installation prefix). Note that uninstall will not
376      remove directories created by make install, e.g.
377      <filename>/usr/local/include/yaz</filename>.
378     </para>
379    </sect2>
380
381    <sect2 id="installation-linking-yaz-unix">
382     <title>How to make apps using YAZ on UNIX</title>
383     <para>
384      This section describes how to compile - and link your own
385      applications using the &yaz; toolkit.
386      If you're used to Makefiles this shouldn't be hard. As for
387      other libraries you have used before, you have to set a proper include
388      path for your C/C++ compiler and specify the location of
389      &yaz; libraries. You can do it by hand, but generally we suggest
390      you use the <filename>yaz-config</filename> that is generated
391      by <filename>configure</filename>. This is especially
392      important if you're using the threaded version of &yaz; which
393      require you to pass more options to your linker/compiler.
394     </para>
395     <para>
396      The <filename>yaz-config</filename> script accepts command line
397      options that makes the <filename>yaz-config</filename> script print
398      options that you should use in your make process.
399      The most important ones are:
400      <literal>--cflags</literal>, <literal>--libs</literal>
401      which prints C compiler flags, and linker flags respectively.
402      </para>
403     <para>
404      A small and complete <literal>Makefile</literal> for a C
405      application consisting of one source file,
406      <filename>myprog.c</filename>, may look like this:
407      <screen>
408       YAZCONFIG=/usr/local/bin/yaz-config
409       CFLAGS=`$(YAZCONFIG) --cflags`
410       LIBS=`$(YAZCONFIG) --libs`
411       myprog: myprog.o
412          $(CC) $(CFLAGS) -o myprog myprog.o $(LIBS)
413       </screen>
414      </para>
415     <para>
416      The CFLAGS variable consists of a C compiler directive that will set
417      the include path to the <emphasis>parent</emphasis> directory
418      of <filename>yaz</filename>. That is, if &yaz; header files were
419      installed in <filename>/usr/local/include/yaz</filename>,
420      then include path is set to <filename>/usr/local/include</filename>.
421      Therefore, in your applications you should use
422      <screen>
423       #include &lt;yaz/proto.h>
424      </screen>
425      and <emphasis>not</emphasis>
426      <screen>
427       #include &lt;proto.h>
428      </screen>
429     </para> 
430     <para>
431      For Libtool users, the <filename>yaz-config</filename> script provides
432      a different variant of option <literal>--libs</literal>, called
433      <literal>--lalibs</literal> that returns the name of the
434      Libtool archive(s) for &yaz; rather than the ordinary ones.
435     </para>
436     <para>
437      For applications using the threaded version of &yaz;,
438      specify <literal>threads</literal> after the
439      other options. When <literal>threads</literal> is given,
440      more flags and linker flags will be printed by
441      <filename>yaz-config</filename>. If our previous example was
442       using threads, you'd have to modify the lines that set
443      <literal>CFLAGS</literal> and <literal>LIBS</literal> as
444      follows:
445      <screen>
446       CFLAGS=`$(YAZCONFIG) --cflags threads`
447       LIBS=`$(YAZCONFIG) --libs threads`
448      </screen>
449      There is no need specify POSIX thread libraries in your Makefile.
450      The <literal>LIBS</literal> variable includes that as well.
451     </para>
452    </sect2>
453   </sect1>
454   <sect1 id="installation.win32"><title>WIN32</title>
455    
456    <para>The easiest way to install YAZ on Windows is by downloading
457     an installer from 
458     <ulink url="&url.yaz.download.win32;">here</ulink>.
459     The installer comes with source too - in case you wish to
460     compile YAZ with different Compiler options etc. 
461    </para>
462    
463    <sect2 id="installation.win32.source">
464     <title>Compiling from Source on WIN32</title>
465     <para>
466      &yaz; is shipped with "makefiles" for the NMAKE tool that comes
467      with <ulink url="&url.vstudio;">
468       Microsoft Visual Studio</ulink>.
469      Version 6 and .NET has been tested. We expect that &yaz; compiles
470      with version 5 as well.
471     </para>
472     <para>
473      Start a command prompt and switch the sub directory
474      <filename>WIN</filename> where the file <filename>makefile</filename>
475      is located. Customize the installation by editing the
476      <filename>makefile</filename> file (for example by using notepad).
477      
478      The following summarizes the most important settings in that file:
479      
480      <variablelist>
481       <varlistentry><term><literal>DEBUG</literal></term>
482        <listitem><para>
483          If set to 1, the software is
484          compiled with debugging libraries (code generation is
485          multi-threaded debug DLL).
486          If set to 0, the software is compiled with release libraries
487          (code generation is multi-threaded DLL).
488         </para></listitem>
489       </varlistentry>
490       <varlistentry>
491        <term><literal>HAVE_TCL</literal>, <literal>TCL</literal></term>
492        <listitem><para>
493          If <literal>HAVE_TCL</literal> is set to 1, nmake will
494          use the ASN.1 compiler (Tcl based). You must set
495          <literal>TCL</literal> to the full path of the Tcl
496          interpreter.
497         </para>
498         <para>
499          If you do not have Tcl installed, set
500          <literal>HAVE_TCL</literal> to 0.
501         </para></listitem>
502       </varlistentry>
503
504       <varlistentry>
505        <term><literal>HAVE_BISON</literal>,
506         <literal>BISON</literal></term>
507        <listitem><para>
508          If GNU Bison is present, you might set <literal>HAVE_ICONV</literal>
509          to 1 and specify the Bison executable in <literal>BISON</literal>.
510          Bison is only required if you use the CVS version of
511          YAZ or if you modify the grammar for CQL
512          (<filename>cql.y</filename>).
513         </para>
514         <para>
515          A Windows version of GNU Bison is part of 
516          <ulink url="&url.unxutils;">unxutils</ulink>.
517         </para></listitem>
518       </varlistentry>
519
520       <varlistentry>
521        <term><literal>HAVE_ICONV</literal>,
522         <literal>ICONV_DIR</literal></term>
523        <listitem><para>
524          If <literal>HAVE_ICONV</literal> is set to 1, YAZ is compiled
525          with iconv support. In this configuration, set 
526          <literal>ICONV_DIR</literal> to the iconv source directory.
527         </para></listitem>
528       </varlistentry>
529       
530       <varlistentry>
531        <term><literal>HAVE_LIBXML2</literal>,
532         <literal>LIBXML2_DIR</literal></term>
533        <listitem>
534         <para>
535          If <literal>HAVE_LIBXML2</literal> is set to 1, YAZ is compiled
536          with SRU support. In this configuration, set 
537          <literal>LIBXML2_DIR</literal> to the 
538          <ulink url="&url.libxml2;">libxml2</ulink> source directory
539          and
540          <literal>ZLIB_DIR</literal> to the zlib directory.
541         </para>
542
543         <para>
544          Windows versions of libxslt, libxml2, zlib and iconv can be found
545          <ulink url="&url.libxml2.download.win32;">
546           Igor Zlatkovi&#x0107;' site</ulink>.
547         </para>
548
549         <note>
550          <para>
551           YAZ is not using zlib but libxml2 is depending on it.
552          </para>
553         </note>
554        </listitem>
555       </varlistentry>
556
557       <varlistentry>
558        <term><literal>HAVE_LIBXSLT</literal>,
559         <literal>LIBXSLT_DIR</literal></term>
560        <listitem>
561         <para>
562          If <literal>HAVE_LIBXSLT</literal> is set to 1, YAZ is compiled
563          with XSLT support. In this configuration, set 
564          <literal>LIBXSLT_DIR</literal> to the 
565          <ulink url="&url.libxslt;">libxslt</ulink> source directory.
566         </para>
567
568         <note>
569          <para>
570           libxslt depends libxml2.
571          </para>
572         </note>
573        </listitem>
574       </varlistentry>
575
576       <varlistentry>
577        <term><literal>HAVE_ICU</literal>,
578         <literal>ICU_DIR</literal></term>
579        <listitem>
580         <para>
581          If <literal>HAVE_ICU</literal> is set to 1, YAZ is compiled
582          with <ulink url="&url.icu;">ICU</ulink> support.
583          In this configuration, set 
584          <literal>ICU_DIR</literal> to the 
585          <ulink url="&url.icu;">ICU</ulink> source directory.
586         </para>
587        </listitem>
588
589       </varlistentry>
590
591      </variablelist>
592     </para>
593     <para>
594      When satisfied with the settings in the makefile, type
595      <screen>
596       nmake
597      </screen>
598     </para>
599     <note>
600      <para>
601       If the <filename>nmake</filename> command is not found on your system
602       you probably haven't defined the environment variables required to
603       use that tool. To fix that, find and run the batch file
604       <filename>vcvars32.bat</filename>. You need to run it from within
605       the command prompt or set the environment variables "globally";
606       otherwise it doesn't work.
607      </para>
608     </note>
609     <para>
610      If you wish to recompile &yaz; - for example if you modify
611      settings in the <filename>makefile</filename> you can delete
612      object files, etc by running.
613      <screen>
614       nmake clean
615      </screen>
616     </para>
617     <para>
618      The following files are generated upon successful compilation:
619      
620      <variablelist>
621       <varlistentry><term><filename>bin/yaz3.dll</filename> / 
622           <filename>bin/yaz3d.dll</filename></term>
623        <listitem><para>
624          &yaz; Release/Debug DLL.
625         </para></listitem></varlistentry>
626       
627       <varlistentry><term><filename>lib/yaz3.lib</filename> / 
628           <filename>lib/yaz3d.lib</filename></term>
629        <listitem><para>
630          Import library for <filename>yaz3.dll</filename> /
631          <filename>yaz3d.dll</filename>.
632         </para></listitem></varlistentry>
633       
634       <varlistentry><term><filename>bin/yaz_icu3.dll</filename> /
635           <filename>bin/yaz_icu3d.dll</filename></term>
636        <listitem><para>
637          Release/Debug DLL for the ICU wrapper utility.
638          Only build if HAVE_ICU is 1.
639         </para></listitem></varlistentry>
640       
641       <varlistentry><term><filename>lib/yaz_icu3.lib</filename> /
642           <filename>lib/yaz_icu3d.lib</filename></term>
643        <listitem><para>
644          Import library for <filename>yaz_icu3.dll</filename> /
645          <filename>yaz_icu3d.dll</filename>.
646         </para></listitem></varlistentry>
647       
648       <varlistentry><term><filename>bin/yaz-ztest.exe</filename></term>
649        <listitem><para>
650          Z39.50 multi-threaded test/example server. It's a WIN32
651          console application.
652         </para></listitem></varlistentry>
653       
654       <varlistentry><term><filename>bin/yaz-client.exe</filename></term>
655        <listitem><para>
656          &yaz; Z39.50 client application. It's a WIN32 console application.
657          See chapter <link linkend="yaz-client">YAZ client</link> for more
658          information.
659         </para></listitem></varlistentry>
660       
661       <varlistentry><term><filename>bin/yaz-icu.exe</filename></term>
662        <listitem><para>This program exposes the ICU wrapper library if that
663          is enabled for YAZ. Only if ICU is available this program is
664          build.
665         </para></listitem></varlistentry>
666
667       <varlistentry><term><filename>bin/zoomsh.exe</filename></term>
668        <listitem><para>
669          Simple console application implemented on top of the
670          <link linkend="zoom">ZOOM</link> functions.
671          The application is a command line shell that allows you to enter
672          simple commands to perform ZOOM operations.
673         </para></listitem></varlistentry>
674       
675       <varlistentry><term><filename>bin/zoomtst1.exe</filename>, 
676         <filename>bin/zoomtst2.exe</filename>, ..</term>
677        <listitem><para>
678          Several small applications that demonstrates the ZOOM API.
679         </para></listitem></varlistentry>
680       
681      </variablelist>
682      
683     </para>
684    </sect2>
685
686    <sect2 id="installation-linking-yaz-win32">
687     <title>How to make apps using YAZ on WIN32</title>
688     <para>
689      This section will go though the process of linking your WIN32
690      applications with &yaz;.
691     </para>
692     <para>
693      Some people are confused by the fact that we use the nmake
694      tool to build &yaz;. They think they have to do that too - in order
695      to make their WIN32 applications work with &yaz;. The good news is that
696      you don't have to. You can use the integrated environment of
697      Visual Studio if desired for your own application.
698     </para>
699     <para>
700      When setting up a project or Makefile you have to set the following:
701      <variablelist>
702       <varlistentry><term>include path</term><listitem><para>
703          Set it to the <filename>include</filename> directory of &yaz;.
704         </para></listitem></varlistentry>
705       <varlistentry><term>import library <filename>yaz3.lib</filename>
706        </term><listitem><para>
707          You must link with this library. It's located in the 
708          sub directory <filename>lib</filename> of &yaz;.
709          If you want to link with the debug version of &yaz;, you must
710          link against <filename>yaz3d.lib</filename> instead.
711         </para></listitem></varlistentry>
712       <varlistentry><term>dynamic link library <filename>yaz3.dll</filename>
713        </term><listitem><para>
714          This DLL must be in your execution path when you invoke
715          your application. Specifically, you should distribute this
716          DLL with your application.
717         </para></listitem></varlistentry>
718      </variablelist>
719     </para>
720    </sect2>
721   </sect1>
722  </chapter>
723  
724  <!-- Keep this comment at the end of the file
725  Local variables:
726  mode: sgml
727  sgml-omittag:t
728  sgml-shorttag:t
729  sgml-minimize-attributes:nil
730  sgml-always-quote-attributes:t
731  sgml-indent-step:1
732  sgml-indent-data:t
733  sgml-parent-document: "yaz.xml"
734  sgml-local-catalogs: nil
735  sgml-namecase-general:t
736  End:
737  -->
738