On 28-09-2010 08:57, fabermundi wrote:

Hello,
I have to install openssl on a Computer with openSUSE where I don't have any
root rights.
Is this possible? How?

Thanks in advance

Step 1: Compile it yourself from source.

Step 2: During compilation and install, install to your own home dir, not to /usr (requires root rights) or /usr/local (requires root or staff rights).

Step 3: Whenever using/linking to OpenSSL, you must explicitly refer
to the folders in your home dir (~/bin, ~/lib, ~/include etc.) where
you installed it.  For instance gcc will need to be invoked with the
extra options
   -I~/include -L~/lib -Wl,-rpath=~/lib
when compiling code against OpenSSL.

______________________________________________________________________
OpenSSL Project                                 http://www.openssl.org
User Support Mailing List                    openssl-users@openssl.org
Automated List Manager                           majord...@openssl.org

Reply via email to