1996-02-22 16:14:17 +00:00
|
|
|
Installing on Windows NT/95
|
|
|
|
***************************
|
|
|
|
|
1996-05-27 14:26:41 +00:00
|
|
|
This file is maintained by Scott Christley <scottc@net-community.com>.
|
1996-02-29 02:34:46 +00:00
|
|
|
If you have questions about the installation procedure on WIN32,
|
|
|
|
please contact Scott.
|
|
|
|
|
|
|
|
|
1996-05-27 14:26:41 +00:00
|
|
|
The system requires that you have headers and libraries for the WIN32
|
|
|
|
API and ANSI-C. If you have a working bash shell then you should run
|
|
|
|
the normal Unix ./configure shell script; otherwise, you can follow
|
|
|
|
these instructions and run the configure.bat batch file.
|
1996-02-22 16:14:17 +00:00
|
|
|
|
|
|
|
Quick installation instructions:
|
|
|
|
|
|
|
|
configure
|
|
|
|
make
|
|
|
|
make install
|
|
|
|
|
|
|
|
Detailled installation instructions:
|
|
|
|
|
|
|
|
1. Install `gcc'. The library requires gcc version
|
|
|
|
2.7.0 or later.
|
|
|
|
|
|
|
|
2. Configure the package for your system. Review the Makefile.sed.nt
|
|
|
|
files which is used to process Makefile.in to create a working
|
|
|
|
Makefiles. They exist in the directories: ./ , ./checks , ./src
|
|
|
|
Of interest are:
|
|
|
|
|
|
|
|
'libdir' where to install the library file
|
|
|
|
'includedir' where to install the headers
|
|
|
|
'install' make rules to install libobjects
|
|
|
|
|
1996-05-27 14:26:41 +00:00
|
|
|
3. Run 'configure.bat' to create the Makefiles, and the header configuration
|
|
|
|
file 'src/include/config.h'
|
1996-02-22 16:14:17 +00:00
|
|
|
|
1996-05-27 14:26:41 +00:00
|
|
|
4. Type `make' to compile the package. If you want, you can override
|
1996-02-22 16:14:17 +00:00
|
|
|
the `make' variables `CFLAGS' like this:
|
|
|
|
make CFLAGS=-O2
|
|
|
|
|
1996-05-27 14:26:41 +00:00
|
|
|
5. Type `make install' to install the library, data files, header
|
1996-02-22 16:14:17 +00:00
|
|
|
files, and documentation.
|
|
|
|
|
1996-05-27 14:26:41 +00:00
|
|
|
6. You can remove the program binaries and object files from the
|
1996-02-22 16:14:17 +00:00
|
|
|
source directory by typing `make clean'. To also remove the
|
|
|
|
Makefile(s), and `config.status' (all the files that `configure'
|
|
|
|
created), type `make distclean'.
|