| View previous topic :: View next topic |
| Author |
Message |
madruscoe
Joined: 07 Jan 2007 Posts: 21
|
Posted: Mon Jan 22, 2007 5:42 am Post subject: Openssl (error during installing) |
|
|
I am trying to install some openssl libraries, doing everything according the guide but I am failing.
| Code: | OpenSSL PSP Port by Raf (rafpsp<at>gmail<dot>com)
--------------------------------------------------
First, you will need to get openssl-0.9.7j.tar.gz (http://www.openssl.org/ ,
http://www.openssl.org/source/openssl-0.9.7j.tar.gz)
Unpack:
--------
user$> gunzip < openssl-0.9.7j.tar.gz | tar xv
*Then cd over to openssl-0.9.7j
To Patch:
----------
user$> patch -p1 < ../openssl-0.9.7j.patch
To configure and compile, run:
-------------------------------
user$> ./Configure psp --prefix=$(psp-config --psp-prefix) threads zlib no-shared no-asm
Then:
user$> make
To install, as root run:
-------------------------
root$> make install
Port Notes:
------------
It is also worth noting that you will have to manually initialize the SSL
random number generator by calling RAND_seed() before you can use the
library. |
This error is shown during "make".
I have installed Cygwin with all packages. |
|
| Back to top |
|
 |
jimparis
Joined: 10 Jun 2005 Posts: 1179 Location: Boston
|
Posted: Mon Jan 22, 2007 6:21 am Post subject: |
|
|
Your include path in the compilation is "-I/psp/sdk/include"... it should be "-I/usr/local/pspdev/psp/sdk/include" so you're probably missing something in your environment or path. Check the build scripts to see what they're putting before that.
In the future please just cut and paste errors, screenshots are hard to deal with and not searchable. |
|
| Back to top |
|
 |
madruscoe
Joined: 07 Jan 2007 Posts: 21
|
Posted: Mon Jan 22, 2007 6:25 am Post subject: |
|
|
thanks, i will try that... but even without this, for me, compiling links2 is a nightmare :-(
EDIT: finaly... i have changed include and lib paths and it works :-) |
|
| Back to top |
|
 |
|