Fix mistake: fuzzy matching is 5=103, not 5=102
[yaz-moved-to-github.git] / windows.txt
index 751384a..add3bc0 100644 (file)
@@ -1,5 +1,5 @@
 YAZ Compilation guidelines for winNT/95.
-  $Id: windows.txt,v 1.2 1999-08-27 09:40:31 adam Exp $
+  $Id: windows.txt,v 1.5 2000-12-05 19:14:12 adam Exp $
 
 This distribution of YAZ includes makefiles that works with Visual
 C++ version 5 and 6. The makefile is located in sub directory 'win'.
@@ -22,36 +22,28 @@ and LIB respectively.
 The following components are build by the nmake process:
 
 yaz.dll - This DLL is made of the source in all sub directories except
-         for 'server', 'client' and 'ztest'. To export public functions
+         for 'client' and 'ztest'. To export public functions
          the header files contain the modifier YAZ_EXPORT which is
          defined in yconfig.h. The value of this modifier,
          __declspec(dllexport), is probably specific to Visual C++. 
 
-server.lib - The server library, which includes the source from
-         'server'.  Unlike the UNIX version, the server library is
-         multi-threaded.
-
-client.exe - A Z39.50 client console application. It links with the
-         import library yaz.lib. This application searches for yaz.dll
+yaz-client.exe - A Z39.50 client console application. It is linked with
+         the import library yaz.lib. This application searches for yaz.dll
          during runtime.
 
-ztest.exe - The Z39.50 test server as a console application. It links
-         with the import library yaz.lib and the regular library
-         server.lib. When running ztest make sure it is able to find
-         the record test files dummy-records, dummy-grs, and dummy-words
-         in the current directory. 
+yaz-ztest.exe - The Z39.50 test server as a console application. It is
+         linked with the import library yaz.lib. When running yaz-ztest
+         make sure it is able to find the record test files dummy-records,
+         dummy-grs, and dummy-words in the current directory. 
 
          As an option ztest may be installed as an NT service
          (not Windows 95). Use 'ztest -install <otherargs>' to install
-         it and 'ztest -remove <otherargs>' to remove it again. Since
-         NT runs the service program in some weird directory, such as
-         \winnt\system32, it's probably a good idea to use the option
-         '-w' to change to some other directory. For example
+         it and 'ztest -remove <otherargs>' to remove it again. Example:
 
-            ztest -install -w d:\proj\yaz\ztest -l ztest.out tcp:@:210
+            yaz-ztest -install -l ztest.out tcp:@:210
 
-         which specifies both working directory (d:\proj\yaz\ztest) 
-         and a log file (ztest.out). The server is started on port 210.
+         which specifies a log file to be written. The server listens
+         on port 210.
 
 After successful compilation all executables and DLL's are located
 in sub YAZ\BIN. Libraries are located in YAZ\LIB.