howtobuild.txt 1.0 KB

123456789101112131415161718192021222324252627282930313233343536
  1. NetSSL requires OpenSSL release 0.9.8 or later.
  2. Unix
  3. ====
  4. Most Unix systems already have OpenSSL preinstalled.
  5. If your system does not have OpenSSL, please get it from
  6. http://www.openssl.org/ or another source. You do not
  7. have to build OpenSSL yourself - a binary distribution
  8. is fine.
  9. If you do build OpenSSl yourself be sure to call
  10. ./configure --prefix=/usr --openssldir/usr/openssl
  11. make
  12. make install (with superuser rights)
  13. so that poco works out of the box
  14. Windows
  15. =======
  16. The easiest way to install OpenSSL on Windows is to
  17. use a binary (prebuild) release, for example the
  18. one from Shining Light Productions that comes with
  19. a Windows installer.
  20. 1. Download OpenSSL (at least v0.98a) from:
  21. http://www.slproweb.com/products/Win32OpenSSL.html
  22. 2. Install OpenSSL (we assume you install to c:\OpenSSL)
  23. 3. Start Visual Studio, go to Tools->Options, under Projects->VC++ Directories
  24. add the following directories:
  25. - Include Files: C:\OpenSSL\include
  26. - Library Files: C:\OpenSSL\lib\VC
  27. 4. You are now ready to build NetSSL.