Neetee Pawa a écrit :
> However for me .. the binaries did not work once i compiled in 32 bit
> mode. May be they work for you.
Depending on what your issue was, that reminds me that I use the exact
following to build:
PREFIX=openssl-0.9.8d
export LD_OPTIONS="-R/usr/local/${PREFIX}/lib"
./Config
Harrison" <[EMAIL PROTECTED]>
Sent by: [EMAIL PROTECTED]
04/25/2007 07:38 PM
Please respond to
openssl-users@openssl.org
To
openssl-users@openssl.org
cc
Subject
solaris x86 32-bit compile problem
I'm trying to compile with the following options, but it's insisting
on using
Andy Harrison a écrit :
> I'm trying to compile with the following options, but it's insisting
> on using the 64 bit version and I can't seem to get around this.
>
> # ./config --install_prefix=/usr/src/OPENSSL --prefix=/usr/local/ssl
> --openssldir=/usr/local/ssl --shared solaris-x86-gcc
> Operat
> I'm trying to compile with the following options, but it's insisting
> on using the 64 bit version and I can't seem to get around this.
>
> # ./config --install_prefix=/usr/src/OPENSSL --prefix=/usr/local/ssl
> --openssldir=/usr/local/ssl --shared solaris-x86-gcc
> Operating system: i86pc-whatev
I'm trying to compile with the following options, but it's insisting
on using the 64 bit version and I can't seem to get around this.
# ./config --install_prefix=/usr/src/OPENSSL --prefix=/usr/local/ssl
--openssldir=/usr/local/ssl --shared solaris-x86-gcc
Operating system: i86pc-whatever-solaris2
Hello,
> Built once or twice, got the same problem again, can't figure it out again.
>
> New ssl client app, just added this code and get undefined symbol.
>
>
> SSL_CTX *ctx;
> 276 SSL *ssl;
>
> /* Initializing OpenSSL */
>
> SSL_load_error_strings();/* re
Built once or twice, got the same problem again, can't figure it out again.
New ssl client app, just added this code and get undefined symbol.
SSL_CTX *ctx;
276 SSL *ssl;
/* Initializing OpenSSL */
SSL_load_error_strings();/* readable error message
Got it, had two different ssl.h files on the system.
-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Randy
Sent: Monday, June 26, 2006 10:12 AM
To: openssl-users@openssl.org
Subject: SSL Compile Problem II
This code compiles and links fine. If I
Randy wrote:
Unfortunately that is how I orginally had it but that generates the same
error.
SSL *ssl_x;
Generates
UX:acomp: ERROR: "curl_dip.c", line 271: undefined symbol: ssl_x
UX:acomp: WARNING: "curl_dip.c", line 457: assignment type mismatch
*** Error code 1 (bu21)
u21)
-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Darryl Miles
Sent: Monday, June 26, 2006 10:14 AM
To: openssl-users@openssl.org
Subject: Re: SSL Compile Problem II
Randy wrote:
> This code compiles and links fine. If I uncomment the SSL_new l
Darryl Miles wrote:
SSL_new is not a type, but a function: "int SSL_new(SSL *);"
Opps:
SSL_new is not a type, but a function: "SSL *SSL_new(SSL_CTX *);"
So then you'd use:
ssl_x = SSL_new(ctx);
__
OpenSSL Project
Randy wrote:
This code compiles and links fine. If I uncomment the SSL_new line I get
"undefined symbol: ssl_x"
SSL_CTX *ctx;
// SSL_new *ssl_x;
SSL_new is not a type, but a function: "int SSL_new(SSL *);"
#include
SSL *ssl_x;
should work.
HTH
Darryl
This code compiles and links fine. If I uncomment the SSL_new line I get
"undefined symbol: ssl_x"
SSL_CTX *ctx;
// SSL_new *ssl_x;
/* Initializing OpenSSL */
SSL_load_error_strings();/* readable error messages
*/
SSL_library_init();
Got past this just by including ssl.h first.
-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Marek Marcola
Sent: Friday, June 23, 2006 8:16 PM
To: openssl-users@openssl.org
Subject: Re: SSL Compile problem
Hello,
> Writing an SSL socket program
Hello,
> Writing an SSL socket program but when I include ssl.h I get the same sort
> of errors on all systems like below. This happens even on a new blank c
> program.
>
> This is always the line in ssl.h that causes the first error
>
> typedef struct ssl_st SSL;
> cc -gc -I../include
openssl-users@openssl.org,
Built or installed various versions of OpenSSL onto three different systems.
Writing an SSL socket program but when I include ssl.h I get the same sort
of errors on all systems like below. This happens even on a new blank c
program.
This is always the line in ssl.h
hi there
courier-imap: 4.0.2
openssl: 0.9.7g
im trying to compile courier imap with ssl support. but i get following
error while compiling:
my main question is: does this error occurs because of a wrong installed
openssl - or is it a courier imap problem?
-
libcouriertls.c: In Funktion »get
Hello,
I am compiling openssl-0.9.7g on AIX 5.2.0 using the Visual Age
compiler. I am compiling with fips, threads, zlib, and shared. While
compiling sstltest.c, I get the following error:
--
"ssltest.c", line 1979.12: 1506-045 (S) Undeclared identifier s.
--
Going to that portion of the code y
At 12:02 PM 1/10/2005 -0800, Serge writeth:
>hi,
>
>I'm trying to compile with static libs using msvc 6.0
>but unsuccessfully, is there a workspace (dsw) file or
>makefile for msvc 6.0 to produce the ssl lib? so I can
>link to my application without the need of a dll.
http://www.slproweb.com/produ
At 02:20 PM 1/10/2005 -0600, eggy writeth:
>No there is not (at least that comes with the tarball), just command line
>makefiles..
Actually, I vaugely remember seeing someone with workspaces for OpenSSL. I
only use the command-line makefiles because I have to automate an insanely
complex process
At 01:22 PM 1/10/2005 -0600, eggy writeth:
> Hello, I reformated my pc a day or so ago, and now that I've installed
>visual studio again, I cannot get openssl to compile for me. It worked
Did you forget to install the latest Platform SDK* and/or hook it up to
VS.NET? That is one of those impl
No there is not (at least that comes with the tarball), just command line
makefiles..
-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Serge
Sent: Monday, January 10, 2005 2:02 PM
To: openssl-users@openssl.org
Subject: Re: OpenSSL 0.9.7e Win32 compile
hi,
I'm trying to compile with static libs using msvc 6.0
but unsuccessfully, is there a workspace (dsw) file or
makefile for msvc 6.0 to produce the ssl lib? so I can
link to my application without the need of a dll.
--- eggy <[EMAIL PROTECTED]> wrote:
> Hello, I reformated my pc a day or so
Hello, I reformated
my pc a day or so ago, and now that I've installed visual studio again, I cannot
get openssl to compile for me. It worked fine before my format, so I'm not quite
sure what is "missing" so to speak. I've tried compiling with both vs.net 2003
and vs6. This error only happen
On Thu, Apr 01, 2004, Frank wrote:
> Just grabed the lastest snap shot of openssl Got a compile problem that
> probably needs to be addressed. In file x509_vfy.h the prototype for
> X509_policy_check() uses a reserved word explicit
>
> int X509_policy_check(X509_POLICY_TR
OOPS, sorry, it is a C++ reserved word even though it is
not a C reserved word, and I guess it would be a Good Idea
for OpenSSL to be callable from C++ as it used to be...
Charles B Cranston wrote:
We cannot find "explicit" as a reserved word in a (fairly old)
ANSI C book. Is this the GNU compile
way?
Just grabed the lastest snap shot of openssl Got a compile problem that
probably needs to be addressed. In file x509_vfy.h the prototype for
X509_policy_check() uses a reserved word explicit
int X509_policy_check(X509_POLICY_TREE **ptree, int *explicit,
--
Charles B (Ben) Cranston
mail
Just grabed the lastest snap shot of openssl Got a compile problem that
probably needs to be addressed. In file x509_vfy.h the prototype for
X509_policy_check() uses a reserved word explicit
int X509_policy_check(X509_POLICY_TREE **ptree, int *explicit,
Thanks,.
Frank
In the long run, I
am trying to get samba-3.0beta2 to compile with kerberos and ldap. We have
to support Kerberos V5, and LDAPV3.
looking for answers
to this problem at the end of the document:
openldap-2.1.21
recommends OpenSSL 0.9.
krb5-1.3-beta5 has
been compiled and installed in /u
Hello,
openssl-0.9.6, openssl-0.9.6a, openssl-0.9.6-stable-snap-20020103,
openssl-engine-0.9.6c, openssl-0.9.6c, openssl-snap-20020103, these versions
can not be compiled under windows2000 + VC6.0.
Whenever I use "perl Configure VC-WIN32" or "perl Configure VC-NT",
run "ms\do_ms"
Frederik Goris wrote:
>
> I'm getting the following error when compiling either Crypt::SSLeay or
> Net::SSLeay on a Cobalt Raq-2 (RedHat 6.2 on MIPS):
>
> collect2: ld terminated with signal 6 [Aborted], core dumped
> make: *** [blib/arch/auto/Crypt/SSLeay/SSLeay.so] Error 1
>
My gut tells
I'm getting the following error when compiling either Crypt::SSLeay or
Net::SSLeay on a Cobalt Raq-2 (RedHat 6.2 on MIPS):
collect2: ld terminated with signal 6 [Aborted], core dumped
make: *** [blib/arch/auto/Crypt/SSLeay/SSLeay.so] Error 1
For Crypt::SSLeay, it happens at this point in the
Hi,
I'm having some problems compiling the OpenSSL 0.9.6 tarball on my SUN Ultra
1 running RedHat 6.2. I'm using egcs 2.91.66 as compile tool, and
./Configure seemed more flexible.
To my question:
What do they mean in the OpenSSL FAQ by "If you used ./Configure instead of
./config, make sure tha
Hi All-
I've been told the best way to go when building
OpenSSL is to leave out the RSAref toolkit, since it
is no longer required in the US-- so I'm trying to
recompile OpenSSL 0.9.6 without it. I'm getting
symbol referencing problems (below), I'm sure it must
be simple, like a bad LD_LIBRARY_PA
nSSL 0.9.6 it's at line
582 of rand_win.c):
#define rdtsc __asm _emit 0x0F __asm _emit 0x31
Cheers,
Mike Kurtinitis
[EMAIL PROTECTED]
> From: "Jim Hud" <[EMAIL PROTECTED]>
> Reply-To: [EMAIL PROTECTED]
> Date: Wed, 11 Oct 2000 09:18:52 -
> To: <[EMA
System is NT4 SP3, VC5, NASM, openssl-0.9.6
perl Configure
ms\do_nasm
nmake -f ms\ntdll.mak
I am getting
rand_win.c(581) error 2400 inline assembler syntax error in 'opcode'; found
newline
fatal error
Any pointers?
Thanks
___
Hi!
When I compile Openssl under Win2k with ming, I get this output and
error. How can I solve this?
C:\open>ms\mingw32
C:\open>perl Configure Mingw32
Configuring for Mingw32
IsWindows=1
CC=gcc
CFLAG =-DTHREADS -DDSO_WIN32 -DL_ENDIAN -fomit-frame-pointer -O3 -m486
-Wall
EX_
Are you 'quoting' or mistyping ???
Anu Desireddi wrote:
> ld: fatal : library -lsaref: not found
Is there a file called 'libsaref' ? It should be 'librsaref'
^
You are short an 'r'
> ld: fatal : File processin
From: "Anu Desireddi" <[EMAIL PROTECTED]>
anu> The rsaref has compiled properly and I have the
anu> librsaref.a in the PATH enviroment.
The linker doesn't look in $PATH to find libraries. Where it goes
looking by default depends a lot on OS and configuration, but a safe
bet is /lib and /usr/lib
I am trying to install OpenSSL and compile it
with rsaref but I am coming across some problems.
The rsaref has compiled properly and I have the
librsaref.a in the PATH enviroment. When I execute
the make in the OpenSSL directory, it says that it
cannot find the libary -lsaref.
ld: fatal : libra
Paul M. SirianniSent: Wednesday, July 26, 2000 9:18
AMTo: [EMAIL PROTECTED]Subject: Win32 compile
problem
I am installing
the Win32 version of OpenSSL on a Windows NT 4.0 SP5 machine. I am using
Borland C++ Builder 5 for the compile. I ran bcb4.bat and it worked with
no errors
I am installing the
Win32 version of OpenSSL on a Windows NT 4.0 SP5 machine. I am using
Borland C++ Builder 5 for the compile. I ran bcb4.bat and it worked with
no errors. Then I ran GNU Make (make -f bcb.mak). It churned out the
header files but as soon as it hit the c files the follow
> the command perl util/mk1mf.pl 32 libeay
>
> produces
>
> BIO_number_read does not have a number assigned
> BIO_number_written does not have a number assigned
> X509_STORE_CTX_rget_chain does not have a number assigned
>
> this doesn't seem right to me.
They'll get numbers assigned the next
Peter Sylvester wrote:
>
> Hi,
>
> the command perl util/mk1mf.pl 32 libeay
>
> produces
>
> BIO_number_read does not have a number assigned
> BIO_number_written does not have a number assigned
> X509_STORE_CTX_rget_chain does not have a number assigned
>
> this doesn't seem right to me.
Sin
Hi,
the command perl util/mk1mf.pl 32 libeay
produces
BIO_number_read does not have a number assigned
BIO_number_written does not have a number assigned
X509_STORE_CTX_rget_chain does not have a number assigned
this doesn't seem right to me.
___
ryoko> %./config gcc$B!!(B( or config )
ryoko> Operating system: sun4m-sun-solaris2
ryoko> This system (solaris-sparcv8-gcc) is not supported. See file INSTALL for detail
ryoko>
ryoko> Do I have to define hardware,operating system?
ryoko> Or can't sun4m use OpenSSL0.9.4?
ryoko> (I could install
I downloaded OpenSSL0.9.4( or OpenSSL0.9.3a) on Unix machine.
And
%./config gcc$B!!(B( or config )
Operating system: sun4m-sun-solaris2
This system (solaris-sparcv8-gcc) is not supported. See file INSTALL for detail
Do I have to define hardware,operating system?
Or can't sun4m use OpenSSL0.9.
Hello!
Trying to compile openssl-0.9.4 in the USA (with rsaref-2.0) on a RedHat 6.0
box (Intel). I have compiled the rsaref, openssl, modssl, apache stuff
before on RedHat 5.2, but this isn't working nearly as well.
make was originally having problems finding /usr/local/bin/perl5, which was
a
On Wed, Aug 11, 1999 at 11:54:03AM +0100, Dr Stephen Henson wrote:
[...]
> The easiest solution is to make the perl script take its input from a
> file and write to a file, then you should be able to use '/' for
> everything. So it would be called as
> system("perl xxx.pl path/to/in path/to/out")
Hello Daniel,
> You should try the native perl for Win32 from www.perl.com. Then it
> works.
>
> I`m using VC 5.0, Cygwin B20 and Perl from ActiveState.
Is Perl from ActiveState is compiled in cygnus env.?
I don't want to use native Win32 perl, I need maximum compatibility
with UNIX.
If you are
You should try the native perl for Win32 from www.perl.com. Then it
works.
I`m using VC 5.0, Cygwin B20 and Perl from ActiveState.
Daniel
__
The OpenSA Project http://www.opensa.de/
Project Informat
Hello,
I download new version. I had problems with compiling I get this
message:
.\crypto\bn\bn_prime.h
1 zkopírovaných souboru.
copy nul+ .\crypto\bio\bss_file.c tmp32\bss_file.c
nul
.\crypto\bio\bss_file.c
1 zkopírovaných souboru.
NMAKE : fatal error U1073: don't know ho
Encountered the error below when running make... I scanned through
INSTALL, checked the archive and found somebody with a similar error, but
there were no answers to the problem (not encouraging). Config runs fine,
I've tried both ./config and ./config no-asm. The system is a fairly
fresh red
On Fri, Jun 11, 1999 at 12:55:05AM -0700, Little Stone wrote:
> >As noted in the current Configure, gcc 2.8.1 is broken on HPUX. That's
> >the symptom, as I recall. Are you using 2.8.1 or is there another
> >version of gcc that's broken, too?
>
> Yes I use gcc 2.8.1, but It works good when I co
lcs Mixmaster Remailer wrote:
>As noted in the current Configure, gcc 2.8.1 is broken on HPUX. That's
>the symptom, as I recall. Are you using 2.8.1 or is there another
>version of gcc that's broken, too?
Yes I use gcc 2.8.1, but It works good when I complie ssleay0.9.0
on the same hpux box.
Little Stone <[EMAIL PROTECTED]> wrote:
> gcc -I.. -I../../include -DB_ENDIAN -DBN_DIV2W -O3 -c bn_asm.c
> gcc: Internal compiler error: program cc1 got fatal signal 10
> *** Error exit code 1
>
> I find that when come to the bn_asm.c file the problem arise.
> What happend to me? I can co
Hi all:
I meet problem when I compile openssl 0.9.3a on a hpux 10.20
I use : "./Configure hpux-gcc"
to make configuration for my hpux. It works ok.
And type "make", then ...
making all in crypto/bn...
gcc -I.. -I../../include -DB_ENDIAN -DBN_DIV2W -O3 -c bn_add.c
gcc -I.. -I../.
[EMAIL PROTECTED] writes:
> Hi,
> I am new to this group and this type of question may not be appropriate here.
> I did post to the perl news group also. I have OpenSSL.0.9.2b and am trying
> to compile the Net_SSLeay 1.03 perl module on NT. I see the following errors
> at link time. Does anyone
58 matches
Mail list logo