From: Adam Dickmeiss Date: Wed, 24 Oct 2001 12:50:44 +0000 (+0000) Subject: Typos. Configure options. nmem_init/nmem_exit deal.. X-Git-Tag: YAZ.1.8~16 X-Git-Url: http://jsfdemo.indexdata.com/?a=commitdiff_plain;h=30dc1fd726606bff28c2f3884f3f294c42550008;p=yaz-moved-to-github.git Typos. Configure options. nmem_init/nmem_exit deal.. --- diff --git a/doc/Makefile.am b/doc/Makefile.am index d35992d..bdeba17 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -1,4 +1,4 @@ -## $Id: Makefile.am,v 1.16 2001-10-24 09:27:59 adam Exp $ +## $Id: Makefile.am,v 1.17 2001-10-24 12:50:44 adam Exp $ docdir=$(pkgdatadir)/doc @@ -30,7 +30,7 @@ doc_DATA = $(DOCFILES) $(srcdir)/yaz.html: $(XMLFILES) $(srcdir)/yazhtml.dsl cd $(srcdir); jade -E14 -d yazhtml.dsl -t sgml xml.dcl yaz.xml -$(srcdir)/book1.php: $(XMLFILES) $(srcdir)/yazphp.dsl +$(srcdir)/yaz.php: $(XMLFILES) $(srcdir)/yazphp.dsl cd $(srcdir); jade -E14 -d yazphp.dsl -t sgml xml.dcl yaz.xml $(srcdir)/yaz.pdf: $(srcdir)/yaz.tex diff --git a/doc/installation.xml b/doc/installation.xml index 7c9c6e3..448bed4 100644 --- a/doc/installation.xml +++ b/doc/installation.xml @@ -1,4 +1,4 @@ - + Compilation and Installation @@ -99,11 +99,10 @@ /usr/local if not specified. - - --enable-comp - &yaz; will be built using the ASN.1 compiler for &yaz; - (default). If you wish to use the old decoders (in sub directory asn) - use --disable-comp instead. + --enable-tcpd + The front end server will be built using the TCP + wrapper library. It allows you to disallow/deny clients depending + on IP. --enable-threads @@ -207,16 +206,6 @@ - - - NEW_Z3950 - If 1, the auto-generated decoder/encoders - for Z39.50 as written by the ASN.1 compiler will be used. If 0, - the old decoders for Z39.50 will be used. Note, when 1, the - setting TCL should point to the Tcl shell on your system. - - - DEBUG If set to 1, the software is diff --git a/doc/tools.xml b/doc/tools.xml index 47af988..850a6fc 100644 --- a/doc/tools.xml +++ b/doc/tools.xml @@ -1,4 +1,4 @@ - + Supporting Tools @@ -660,6 +660,7 @@ typedef struct oident void nmem_reset(NMEM n); int nmem_total(NMEM n); void nmem_init(void); + void nmem_exit(void); @@ -675,15 +676,18 @@ typedef struct oident allocated on the handle. - - - The nibble memory pool is shared amongst threads. POSIX - mutex'es and WIN32 Critical sections are introduced to keep the - module thread safe. On WIN32 function nmem_init() - initializes the Critical Section handle and should be called once - before any other nmem function is used. - - + + The nibble memory pool is shared amongst threads. POSIX + mutex'es and WIN32 Critical sections are introduced to keep the + module thread safe. Function nmem_init() + initializes the nibble memory library and it is called automatically + the first time the YAZ.DLL is loaded. &yaz; uses + function DllMain to achieve this. You should + not call nmem_init or + nmem_exit unless you're absolute sure what + you're doing. Note that in previous &yaz; versions you'd have to call + nmem_init yourself. +