~ubuntu-branches/ubuntu/gutsy/poco/gutsy

« back to all changes in this revision

Viewing changes to NetSSL_OpenSSL/doc/howtobuild.txt

  • Committer: Bazaar Package Importer
  • Author(s): Krzysztof Burghardt
  • Date: 2007-04-27 18:33:48 UTC
  • Revision ID: james.westby@ubuntu.com-20070427183348-xgnpct0qd6a2ip34
Tags: upstream-1.2.9
ImportĀ upstreamĀ versionĀ 1.2.9

Show diffs side-by-side

added added

removed removed

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