Removed file with obsolete content.
authorAdam Dickmeiss <adam@indexdata.dk>
Fri, 13 Oct 2006 11:25:47 +0000 (11:25 +0000)
committerAdam Dickmeiss <adam@indexdata.dk>
Fri, 13 Oct 2006 11:25:47 +0000 (11:25 +0000)
Makefile.am
windows.txt [deleted file]

index 949c402..c4fd190 100644 (file)
@@ -1,6 +1,6 @@
 ## This file is part of the YAZ toolkit.
 ## Copyright (C) 1994-2005, Index Data, All rights reserved.
 ## This file is part of the YAZ toolkit.
 ## Copyright (C) 1994-2005, Index Data, All rights reserved.
-## $Id: Makefile.am,v 1.36 2006-06-15 14:15:17 adam Exp $
+## $Id: Makefile.am,v 1.37 2006-10-13 11:25:47 adam Exp $
 
 AUTOMAKE_OPTIONS = foreign 
 
 
 AUTOMAKE_OPTIONS = foreign 
 
@@ -13,7 +13,7 @@ aclocaldir=$(datadir)/aclocal
 aclocal_DATA = m4/yaz.m4
 
 SPEC_FILE=$(PACKAGE).spec
 aclocal_DATA = m4/yaz.m4
 
 SPEC_FILE=$(PACKAGE).spec
-EXTRA_DIST=$(SPEC_FILE) README LICENSE NEWS TODO windows.txt \
+EXTRA_DIST=$(SPEC_FILE) README LICENSE NEWS TODO \
        yaz-config.in m4/yaz.m4 m4/yaz_libxml2.m4 buildconf.sh \
        Doxyfile.in
 
        yaz-config.in m4/yaz.m4 m4/yaz_libxml2.m4 buildconf.sh \
        Doxyfile.in
 
diff --git a/windows.txt b/windows.txt
deleted file mode 100644 (file)
index add3bc0..0000000
+++ /dev/null
@@ -1,49 +0,0 @@
-YAZ Compilation guidelines for winNT/95.
-  $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'.
-
-If you wish to make modifications to the make process you should
-edit makefile before proceeding. For example, a DEBUG version of YAZ
-can be build by modifying the line 'DEBUG=0' to 'DEBUG=1' in the
-makefile.
-
-Run nmake in that directory (in a Command prompt for example). Eg:
-    >CD \YAZ\WIN
-    >NMAKE
-
-Make sure that the environment variables PATH, LIB and INCLUDE are
-set properly. They *should* be set by the Visual C++ installation.
-Programs cl.exe, link.exe and others must be found in the PATH. The
-standard includes files, standard libraries must be found in INCLUDE
-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 '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++. 
-
-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.
-
-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. Example:
-
-            yaz-ztest -install -l ztest.out tcp:@: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.