			libeap-ikev2 installation guide
		    =======================================

 REQUIREMENTS
========================
	OpenSSL v.0.9.7 with header files


 SIMPLE INSTALLATION
=========================

  If you do not need to modify the default configuration, then take
the following steps to build and install the library:


	$ ./configure
	$ make
	$ make install

As a result library will be located in:
	/usr/local/lib/libeap-ikev2.a
And library header files will be located in:
	/usr/local/include/EAPIKEv2/


 WINDOWS INSTALLATION
=========================
To install and compile under Windows(tm) you need install MinGW/MSYS software.
Detailed instruction about MinGW/MSYS installation available on MinGW project
page(http://www.mingw.org):
   - http://www.mingw.org/msys.shtml -- Unix like environment for Windows(tm)
   - http://www.mingw.org/download.shtml -- download and install instructions
     for MinGW/MSYS software

Run MSYS terminal, and go to directory with library sources.
Then take the following steps to install the library:


	$ ./configure --prefix=/mingw/
	$ make
	$ make install

As a result library will be located in:
	/mingw/lib/libeap-ikev2.a
And library header files will be located in:
	/mingw/include/EAPIKEv2/


 CUSTOM INSTALLATION
======================

By default, `make install' will install the package's files in
`/usr/local/bin', `/usr/local/man', etc.  You can specify an
installation prefix other than `/usr/local' by giving `configure' the
option `--prefix=PATH'.

If you have your OpenSSL installation in some non standard location, then you
can use `--with-openssl-includes=DIR' to specify their location.

If you want use features for developer use `--enable-developer'. This option
will turn on super-duper-extra-compile-warnings when using gcc and adds
debugging symbols to result library.

If you want build library developer manual use `--enable-docs` option. In
./docs/html will be located doxygen generated documentation.

