[openssl-dev] [openssl.org #4317] openssl-1.1.0-pre3 make error with Configure option "zlib-dynamic"

2016-05-10 Thread Matt Caswell via RT
This seems to be working correctly now.

Closing.

Matt

-- 
Ticket here: http://rt.openssl.org/Ticket/Display.html?id=4317
Please log in as guest with password guest if prompted

-- 
openssl-dev mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-dev


[openssl-dev] [openssl.org #4317] openssl-1.1.0-pre3 make error with Configure option "zlib-dynamic"

2016-02-17 Thread Kiyoshi KANAZAWA via RT
Openssl-1.1.0-pre3 make fails with Configure option "zlib-dynamic".
Without "zlib-dynamic", make & make check passed.
With "zlib", make & make check also passed.

Tried on Solaris10 x86, with #4314 fix.


% ./Configure solaris-x86-gcc threads shared zlib-dynamic no-ssl3
% make
  :
gcc -DDSO_DLFCN -DHAVE_DLFCN_H -DOPENSSL_THREADS -DOPENSSL_PIC 
-DOPENSSL_BN_ASM_PART_WORDS -DOPENSSL_IA32_SSE2 -DOPENSSL_BN_ASM_MONT 
-DOPENSSL_BN_ASM_GF2m -DSHA1_ASM -DSHA256_ASM -DSHA512_ASM -DMD5_ASM 
-DRMD160_ASM -DAES_ASM -DVPAES_ASM -DGHASH_ASM -DECP_NISTZ256_ASM 
-DPOLY1305_ASM -DOPENSSLDIR="/opt/openssl/ssl" 
-DENGINESDIR="/opt/openssl/lib/engines" -fPIC -pthread -DFILIO_H -O3 
-fomit-frame-pointer -DWHIRLPOOL_ASM -R /opt/openssl/lib -o openssl openssl.o 
asn1pars.o ca.o ciphers.o cms.o crl.o crl2p7.o dgst.o dhparam.o dsa.o 
dsaparam.o ec.o ecparam.o enc.o engine.o errstr.o gendsa.o genpkey.o genrsa.o 
nseq.o ocsp.o passwd.o pkcs12.o pkcs7.o pkcs8.o pkey.o pkeyparam.o pkeyutl.o 
prime.o rand.o req.o rsa.o rsautl.o s_client.o s_server.o s_time.o sess_id.o 
smime.o speed.o spkac.o srp.o ts.o verify.o version.o x509.o rehash.o apps.o 
opt.o s_cb.o s_socket.o app_rand.o -L.. -lssl -L.. -lcrypto -lsocket -lnsl -ldl
Undefined   first referenced
 symbol in file
BIO_f_zlib  ../libcrypto.so
ld: fatal: symbol referencing errors. No output written to openssl
collect2: error: ld returned 1 exit status
../Makefile.shared:412: recipe for target 'link_app.solaris' failed




Best regards,

--- Kiyoshi 


-- 
Ticket here: http://rt.openssl.org/Ticket/Display.html?id=4317
Please log in as guest with password guest if prompted

-- 
openssl-dev mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-dev


[openssl-dev] [openssl.org #4314] openssl-1.1.0-pre3 make error on Solaris 10 x86

2016-02-17 Thread Rich Salz via RT
fixed in mater.
commit 29620124ff1624af5411d8d2998fdd7b102a5d48
Author: Richard Levitte 
Date: Tue Feb 16 10:27:16 2016 +0100

On solaris, the variable name sun clashes, use s_un instead

For orthogonality, we change sin -> s_in and sin6 -> s_in6 as well.

Reviewed-by: Matt Caswell 

--
Rich Salz, OpenSSL dev team; rs...@openssl.org

-- 
Ticket here: http://rt.openssl.org/Ticket/Display.html?id=4314
Please log in as guest with password guest if prompted

-- 
openssl-dev mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-dev


[openssl-dev] [openssl.org #4314] openssl-1.1.0-pre3 make error on Solaris 10 x86

2016-02-17 Thread Kiyoshi KANAZAWA via RT
Hello,

Openssl-1.1.0-pre3 make fails on Solaris 10 x86, such as
make[2]: Entering directory '/tmp/openssl-1.1.0-pre3/crypto/bio'
gcc -I.. -I../.. -I../modes -I../include -I../../include  -DDSO_DLFCN 
-DHAVE_DLFCN_H -DOPENSSL_T
HREADS -DOPENSSL_PIC -DOPENSSL_BN_ASM_PART_WORDS -DOPENSSL_IA32_SSE2 
-DOPENSSL_BN_ASM_MONT -DOPE
NSSL_BN_ASM_GF2m -DSHA1_ASM -DSHA256_ASM -DSHA512_ASM -DMD5_ASM -DRMD160_ASM 
-DAES_ASM -DVPAES_A
SM -DGHASH_ASM -DECP_NISTZ256_ASM -DPOLY1305_ASM 
-DOPENSSLDIR="\"/usr/local/ssl\"" -DENGINESDIR=
"\"/usr/local/lib/engines\"" -fPIC  -pthread -DFILIO_H -O3 -fomit-frame-pointer 
-DWHIRLPOOL_ASM 
  -c -o bss_fd.o bss_fd.c
bio_lcl.h:60:24: error: expected identifier or '(' before numeric constant
 struct sockaddr_un sun;
    ^
In file included from bss_fd.c:61:0:
bio_lcl.h:62:1: warning: no semicolon at end of struct or union [enabled by 
default]
 };


This happens because "sun" is #defined as 1 on Solaris.
On the other hand, the same name is used in crypto/bio/bio_lcl.h,
    53  union bio_addr_st {
    54  struct sockaddr sa;
    55  # ifdef AF_INET6
    56  struct sockaddr_in6 sin6;
    57  # endif
    58  struct sockaddr_in sin;
    59  # ifdef AF_UNIX
    60  struct sockaddr_un sun;
    61  # endif
    62  };
    63  #endif


Best regards,

--- Kiyoshi 


-- 
Ticket here: http://rt.openssl.org/Ticket/Display.html?id=4314
Please log in as guest with password guest if prompted

-- 
openssl-dev mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-dev


[openssl.org #1994] [BUG REPORT] extra $ caracter in test/Makefile - make error on AIX

2014-08-08 Thread Rich Salz via RT
Fixed by some Jedi a long time ago in a galaxy far away.
--
Rich Salz, OpenSSL dev team; rs...@openssl.org

__
OpenSSL Project http://www.openssl.org
Development Mailing List   openssl-dev@openssl.org
Automated List Manager   majord...@openssl.org


[openssl.org #607] make error

2014-06-28 Thread Rich Salz via RT
If the timestamps were in the future then clearly, 12 years later, they aren't
any more.
Please re-open if this is still an issue.
__
OpenSSL Project http://www.openssl.org
Development Mailing List   openssl-dev@openssl.org
Automated List Manager   majord...@openssl.org


[openssl.org #645] openssl make error

2014-06-28 Thread Rich Salz via RT
Time heals all builds :)
__
OpenSSL Project http://www.openssl.org
Development Mailing List   openssl-dev@openssl.org
Automated List Manager   majord...@openssl.org


Re: [openssl.org #3033] Bug Report: Make Error: can't encode register '%ch' in an instruction requiring REX prefix.

2014-04-29 Thread Davis, Ellen via RT

Yes.


On 4/29/14 2:29 AM, Tim Hudson via RT r...@openssl.org wrote:

 On Wed May 08 14:18:53 2013, davi...@ucmail.uc.edu wrote:
 
 Updating to Xcode 4.6 fixed this.
 
 Ellen, can we mark this issue as resolved given you have updated to 4.6 - i.e.
 this is no longer an issue for you?
 
 Thanks,
 Tim.
 

Ellen Davis
UCIT Lab/Classroom Tech Svcs
P. O. Box 210088 
Cincinnati OH 45221-0088
513-556-9013
ellen.da...@uc.edu

 



__
OpenSSL Project http://www.openssl.org
Development Mailing List   openssl-dev@openssl.org
Automated List Manager   majord...@openssl.org


[openssl.org #3033] Bug Report: Make Error: can't encode register '%ch' in an instruction requiring REX prefix.

2014-04-29 Thread Tim Hudson via RT
Closing item as resolved.

Tim.

__
OpenSSL Project http://www.openssl.org
Development Mailing List   openssl-dev@openssl.org
Automated List Manager   majord...@openssl.org


Re: [openssl.org #3033] AutoReply: Bug Report: Make Error: can't encode register '%ch' in an instruction requiring REX prefix.

2013-05-08 Thread Davis, Ellen via RT

Updating to Xcode 4.6 fixed this.


On 5/3/13 12:54 PM, The default queue via RT r...@openssl.org wrote:

 
 Greetings,
 
 This message has been automatically generated in response to the
 creation of a trouble ticket regarding:
 Bug Report: Make Error: can't encode register '%ch' in an instruction
 requiring REX prefix.,
 a summary of which appears below.
 
 There is no need to reply to this message right now.  Your ticket has been
 assigned an ID of [openssl.org #3033].
 
 Please include the string:
 
  [openssl.org #3033]
 
 in the subject line of all future correspondence about this issue. To do so,
 you may reply to this message.
 
 Thank you,
 r...@openssl.org
 
 -
 
 Hello,
 
 I am trying to build openssl.  The make does not complete because of the below
 error.
 
 Operating system: Mac OSX 10.7.5
 OpenSSL Version : openssl-1.0.1e
 
 ./Configure darwin64-x86_64-cc
 make
 
 ...
 cc -I../crypto -I.. -I../include  -DOPENSSL_THREADS -D_REENTRANT -DDSO_DLFCN
 -DHAVE_DLFCN_H -arch x86_64 -O3 -DL_ENDIAN -Wall -DOPENSSL_IA32_SSE2
 -DOPENSSL_BN_ASM_MONT -DOPENSSL_BN_ASM_MONT5 -DOPENSSL_BN_ASM_GF2m -DSHA1_ASM
 -DSHA256_ASM -DSHA512_ASM -DMD5_ASM -DAES_ASM -DVPAES_ASM -DBSAES_ASM
 -DWHIRLPOOL_ASM -DGHASH_ASM   -c -o s3_clnt.o s3_clnt.c
 /var/tmp//ccWABbwZ.s:869:can't encode register '%ch' in an instruction
 requiring REX prefix.
 
 
 
 
 Ellen Davis
 UCit Instructional and Research Computing
 P. O. Box 210088
 Cincinnati OH 45221-0088
 513-556-9013
 ellen.da...@uc.edu
 
 303 Zimmer Hall
 
 
 

Ellen Davis
UCit Instructional and Research Computing
P. O. Box 210088 
Cincinnati OH 45221-0088
513-556-9013
ellen.da...@uc.edu

303 Zimmer Hall
 



__
OpenSSL Project http://www.openssl.org
Development Mailing List   openssl-dev@openssl.org
Automated List Manager   majord...@openssl.org


[openssl.org #3033] Bug Report: Make Error: can't encode register '%ch' in an instruction requiring REX prefix.

2013-05-03 Thread Davis, Ellen via RT

Hello,

I am trying to build openssl.  The make does not complete because of the below 
error.

Operating system: Mac OSX 10.7.5
OpenSSL Version : openssl-1.0.1e

./Configure darwin64-x86_64-cc
make

...
cc -I../crypto -I.. -I../include  -DOPENSSL_THREADS -D_REENTRANT -DDSO_DLFCN 
-DHAVE_DLFCN_H -arch x86_64 -O3 -DL_ENDIAN -Wall -DOPENSSL_IA32_SSE2 
-DOPENSSL_BN_ASM_MONT -DOPENSSL_BN_ASM_MONT5 -DOPENSSL_BN_ASM_GF2m -DSHA1_ASM 
-DSHA256_ASM -DSHA512_ASM -DMD5_ASM -DAES_ASM -DVPAES_ASM -DBSAES_ASM 
-DWHIRLPOOL_ASM -DGHASH_ASM   -c -o s3_clnt.o s3_clnt.c
/var/tmp//ccWABbwZ.s:869:can't encode register '%ch' in an instruction 
requiring REX prefix.




Ellen Davis
UCit Instructional and Research Computing
P. O. Box 210088
Cincinnati OH 45221-0088
513-556-9013
ellen.da...@uc.edu

303 Zimmer Hall



__
OpenSSL Project http://www.openssl.org
Development Mailing List   openssl-dev@openssl.org
Automated List Manager   majord...@openssl.org


FW: [openssl.org #3033] Bug Report: Make Error: can't encode register '%ch' in an instruction requiring REX prefix.

2013-05-03 Thread Davis, Ellen via RT

Never mind.  Updating to Xcode 4.6 fixed this.

Ellen Davis
UCit Instructional and Research Computing
P. O. Box 210088
Cincinnati OH 45221-0088
513-556-9013
ellen.da...@uc.edu

303 Zimmer Hall



-- Forwarded Message
From: Ellen Davis davi...@ucmail.uc.edu
Date: Tue, 16 Apr 2013 11:55:37 -0400
To: r...@openssl.org
Subject: Bug Report: Make Error: can't encode register '%ch' in an instruction 
requiring REX prefix.


Hello,

I am trying to build openssl.  The make does not complete because of the below 
error.

Operating system: Mac OSX 10.7.5
OpenSSL Version : openssl-1.0.1e

./Configure darwin64-x86_64-cc
make

...
cc -I../crypto -I.. -I../include  -DOPENSSL_THREADS -D_REENTRANT -DDSO_DLFCN 
-DHAVE_DLFCN_H -arch x86_64 -O3 -DL_ENDIAN -Wall -DOPENSSL_IA32_SSE2 
-DOPENSSL_BN_ASM_MONT -DOPENSSL_BN_ASM_MONT5 -DOPENSSL_BN_ASM_GF2m -DSHA1_ASM 
-DSHA256_ASM -DSHA512_ASM -DMD5_ASM -DAES_ASM -DVPAES_ASM -DBSAES_ASM 
-DWHIRLPOOL_ASM -DGHASH_ASM   -c -o s3_clnt.o s3_clnt.c
/var/tmp//ccWABbwZ.s:869:can't encode register '%ch' in an instruction 
requiring REX prefix.




Ellen Davis
UCit Instructional and Research Computing
P. O. Box 210088
Cincinnati OH 45221-0088
513-556-9013
ellen.da...@uc.edu

303 Zimmer Hall




-- End of Forwarded Message

__
OpenSSL Project http://www.openssl.org
Development Mailing List   openssl-dev@openssl.org
Automated List Manager   majord...@openssl.org


RE: [openssl.org #1994] Resolved: [BUG REPORT] extra $ caracter in test/Makefile - make error on AIX

2009-07-28 Thread Gilles PION via RT
I've been able to reproduce the problem: neither AIX neither the $ 
character are the culprits

The problem arise when the calling shell has defined an environment 
variable called BUILD_COMMAND

Since BUILD_COMMAND is not referenced inside the CLEARENV macro  (should 
it he?) the value of that variable overrides BUILD_COMMAND definition 
inside sub-makes since they are called with the -e switch/

--
Gilles Pion




   
   
   
   
   
  



. Si vous n'êtes pas destinataires de ce message, merci d'avertir
l'expéditeur de l'erreur de distribution et de le détruire
immédiatement.
Ce message contient des informations confidentielles ou appartenant
a La Française des Jeux. Il est établi a l'intention exclusive de
ses destinataires. Toute divulgation, utilisation, diffusion ou
reproduction (totale ou partielle) de ce message ou des
informations qu'il contient, doit être préalablement autorisée.
Tout message électronique est susceptible d'altération et son
intégrité ne peut etre assurée. La Française des Jeux décline toute
responsabilité au titre de ce message s'il a été modifie ou
falsifie.

I've been able to reproduce the problem:
neither AIX neither the $ character are the culprits

The problem arise when the calling shell
has defined an environment variable called BUILD_COMMAND

Since BUILD_COMMAND is not
referenced inside the CLEARENV macro (should it he?) the value of
that variable overrides BUILD_COMMAND definition inside sub-makes since
they are called with the -e switch/

--
Gilles Pion





   
   
   
   
   
  



. Si vous n'êtes pas destinataires de ce message, merci d'avertir
l'expéditeur de l'erreur de distribution et de le détruire
immédiatement.
Ce message contient des informations confidentielles ou appartenant
a La Française des Jeux. Il est établi a l'intention exclusive de
ses destinataires. Toute divulgation, utilisation, diffusion ou
reproduction (totale ou partielle) de ce message ou des
informations qu'il contient, doit être préalablement autorisée.
Tout message électronique est susceptible d'altération et son
intégrité ne peut etre assurée. La Française des Jeux décline toute
responsabilité au titre de ce message s'il a été modifie ou
falsifie.

RE: [openssl.org #1994] Resolved: [BUG REPORT] extra $ caracter in test/Makefile - make error on AIX

2009-07-24 Thread Gilles PION via RT
I'm sorry to insist but, to be sure, I've just downloaded the most recent 
source tarball (http://www.openssl.org/source/openssl-1.0.0-beta3.tar.gz) 
and the  extra $ is *still* present in the Makefile: (line 451):

dummytest$(EXE_EXT): dummytest.o $(DLIBCRYPTO)
@target=dummytest$; $(BUILD_CMD)
   ^
   + here

-- 
Gilles Pion
Support Système et SGBD
Française des Jeux
+33 4 42 78 56 59
+33 6 83 77 32 55




De :
Stephen Henson via RT r...@openssl.org
A:
gp...@lfdj.com
Date:
24/07/2009 14:08
Objet :
[openssl.org #1994] Resolved: [BUG REPORT] extra $ caracter in 
test/Makefile - make error on AIX



According to our records, your request has been resolved. If you have any
further questions or concerns, please respond to this message.




   
   
   
   
   
  



. Si vous n'êtes pas destinataires de ce message, merci d'avertir
l'expéditeur de l'erreur de distribution et de le détruire
immédiatement.
Ce message contient des informations confidentielles ou appartenant
a La Française des Jeux. Il est établi a l'intention exclusive de
ses destinataires. Toute divulgation, utilisation, diffusion ou
reproduction (totale ou partielle) de ce message ou des
informations qu'il contient, doit être préalablement autorisée.
Tout message électronique est susceptible d'altération et son
intégrité ne peut etre assurée. La Française des Jeux décline toute
responsabilité au titre de ce message s'il a été modifie ou
falsifie.

I'm sorry to insist but, to be sure,
I've just downloaded the most recent source tarball (http://www.openssl.org/source/openssl-1.0.0-beta3.tar.gz)
and the extra $ is *still* present in the Makefile: (line
451):

dummytest$(EXE_EXT): dummytest.o $(DLIBCRYPTO)
@target=dummytest$;
$(BUILD_CMD)
  
 ^
   
   + here

-- 
Gilles Pion
Support Système et SGBD
Française des Jeux
+33 4 42 78 56 59
+33 6 83 77 32 55







De :
Stephen Henson via RT r...@openssl.org

A:
gp...@lfdj.com

Date:
24/07/2009 14:08

Objet :
[openssl.org #1994] Resolved: [BUG REPORT]
extra $ caracter in test/Makefile - make error on AIX




According to our records, your request has been resolved.
If you have any
further questions or concerns, please respond to this message.




   
   
   
   
   
  



. Si vous n'êtes pas destinataires de ce message, merci d'avertir
l'expéditeur de l'erreur de distribution et de le détruire
immédiatement.
Ce message contient des informations confidentielles ou appartenant
a La Française des Jeux. Il est établi a l'intention exclusive de
ses destinataires. Toute divulgation, utilisation, diffusion ou
reproduction (totale ou partielle) de ce message ou des
informations qu'il contient, doit être préalablement autorisée.
Tout message électronique est susceptible d'altération et son
intégrité ne peut etre assurée. La Française des Jeux décline toute
responsabilité au titre de ce message s'il a été modifie ou
falsifie.

Re: [openssl.org #1994] Resolved: [BUG REPORT] extra $ caracter in test/Makefile - make error on AIX

2009-07-24 Thread Dr. Stephen Henson
On Fri, Jul 24, 2009, Gilles PION via RT wrote:

 I'm sorry to insist but, to be sure, I've just downloaded the most recent 
 source tarball (http://www.openssl.org/source/openssl-1.0.0-beta3.tar.gz) 
 and the  extra $ is *still* present in the Makefile: (line 451):
 
 dummytest$(EXE_EXT): dummytest.o $(DLIBCRYPTO)
 @target=dummytest$; $(BUILD_CMD)
^
+ here
 

That is the last beta version which was released before this fix so you wont
see it. The fix is in CVS and will appear in the next snapshot (see 
ftp://ftp.openssl.org/snapshot/ ) and the next beta release.

Steve.
--
Dr Stephen N. Henson. OpenSSL project core developer.
Commercial tech support now available see: http://www.openssl.org
__
OpenSSL Project http://www.openssl.org
Development Mailing List   openssl-dev@openssl.org
Automated List Manager   majord...@openssl.org


[openssl.org #1994] [BUG REPORT] extra $ caracter in test/Makefile - make error on AIX

2009-07-23 Thread Gilles PION via RT
Context:
Build and target system:powerpc-ibm-aix5.3.0.0
Openssl Version:openssl-0.9.8k
using gnu make:
gmake --version
GNU Make 3.81
Copyright (C) 2006  Free Software Foundation, Inc.
This is free software; see the source for copying conditions.
There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE.
This program built for powerpc-ibm-aix5.3.0.0

Error:
$ gmake openssl
/.../ # extra output removed
making all in test...
gmake[1]: Entering directory 
`/sg/paxdev5/D1stunix/src/subversion/1.6.3/openssl-0.9.8k/test'
/bin/sh: syntax error at line 1 : `then' unexpected
gmake[1]: *** [dummytest] Error 2
gmake[1]: Leaving directory 
`/sg/paxdev5/D1stunix/src/subversion/1.6.3/openssl-0.9.8k/test'
gmake: *** [build_tests] Error 1

Cause:
openssl-0.9.8k/test/Makefile, line 541: @target=dummytest$; 
$(BUILD_CMD)
Fix:
remove the extra $:   @target=dummytest; 
$(BUILD_CMD)

-- 
Gilles Pion
Support Système et SGBD
Française des Jeux
+33 4 42 78 56 59
+33 6 83 77 32 55


   
   
   
   
   
  



. Si vous n'êtes pas destinataires de ce message, merci d'avertir
l'expéditeur de l'erreur de distribution et de le détruire
immédiatement.
Ce message contient des informations confidentielles ou appartenant
a La Française des Jeux. Il est établi a l'intention exclusive de
ses destinataires. Toute divulgation, utilisation, diffusion ou
reproduction (totale ou partielle) de ce message ou des
informations qu'il contient, doit être préalablement autorisée.
Tout message électronique est susceptible d'altération et son
intégrité ne peut etre assurée. La Française des Jeux décline toute
responsabilité au titre de ce message s'il a été modifie ou
falsifie.

Context:
Build and target system:  
 powerpc-ibm-aix5.3.0.0
Openssl Version:   
   
openssl-0.9.8k
using gnu make:
gmake --version
GNU Make 3.81
Copyright (C) 2006 Free Software
Foundation, Inc.
This is free software; see the source
for copying conditions.
There is NO warranty; not even for MERCHANTABILITY
or FITNESS FOR A
PARTICULAR PURPOSE.
This program built for powerpc-ibm-aix5.3.0.0

Error:
$ gmake openssl
/.../ # extra output removed
making all in test...
gmake[1]: Entering directory `/sg/paxdev5/D1stunix/src/subversion/1.6.3/openssl-0.9.8k/test'
/bin/sh: syntax error at line 1 : `then' unexpected
gmake[1]: *** [dummytest] Error 2
gmake[1]: Leaving directory `/sg/paxdev5/D1stunix/src/subversion/1.6.3/openssl-0.9.8k/test'
gmake: *** [build_tests] Error 1

Cause:
openssl-0.9.8k/test/Makefile,
line 541:@target=dummytest$; $(BUILD_CMD)
Fix:
remove
the extra $:  
 @target=dummytest;
$(BUILD_CMD)

-- 
Gilles Pion
Support Système et SGBD
Française des Jeux
+33 4 42 78 56 59
+33 6 83 77 32 55



   
   
   
   
   
  



. Si vous n'êtes pas destinataires de ce message, merci d'avertir
l'expéditeur de l'erreur de distribution et de le détruire
immédiatement.
Ce message contient des informations confidentielles ou appartenant
a La Française des Jeux. Il est établi a l'intention exclusive de
ses destinataires. Toute divulgation, utilisation, diffusion ou
reproduction (totale ou partielle) de ce message ou des
informations qu'il contient, doit être préalablement autorisée.
Tout message électronique est susceptible d'altération et son
intégrité ne peut etre assurée. La Française des Jeux décline toute
responsabilité au titre de ce message s'il a été modifie ou
falsifie.

[openssl.org #645] openssl make error

2005-02-16 Thread Konstantin Sharenkov via RT

I have the same error with GCC 3.4 FreeBSD 5.3  openssl 0.9.7e

Best regards,
Konstantin 

__
OpenSSL Project http://www.openssl.org
Development Mailing List   openssl-dev@openssl.org
Automated List Manager   [EMAIL PROTECTED]


[openssl.org #645] openssl make error

2004-01-14 Thread [EMAIL PROTECTED] via RT

Hi!

I have the same problem, do you already have a solution?
If not, and you are interessted: I`d like to work with you on this...
maybe together we will find a solution...

daniel

Daniel Tieber
Software Entwicklung
bit media e-Learning solution
a Siemens Company
Kaerntner Strasse 294, A-8054 Graz
mailto:  [EMAIL PROTECTED]
phone   +43 (0)316 / 28 66 60 - 20
Web: http://www.bitmedia.cc
++
Privat:
Phone: 0699 10 12 57 56
++
Learning When-,What- Wherever you want
++

__
OpenSSL Project http://www.openssl.org
Development Mailing List   [EMAIL PROTECTED]
Automated List Manager   [EMAIL PROTECTED]


[openssl.org #645] openssl make error

2004-01-14 Thread Lutz Jaenicke via RT

[EMAIL PROTECTED] - Wed Jan 14 14:32:32 2004]:


 I have the same problem, do you already have a solution?
 If not, and you are interessted: I`d like to work with you on this...
 maybe together we will find a solution...

So please let us repeat the question:
What version of gcc do you use? On what version of Solaris? etc, etc...

__
OpenSSL Project http://www.openssl.org
Development Mailing List   [EMAIL PROTECTED]
Automated List Manager   [EMAIL PROTECTED]


[openssl.org #645] openssl make error

2003-06-17 Thread Surman Szabolcs via RT

Hello!

I tried to install openssl on Sun Solaris.
1. ./config
everything went ok.
2. make

and here i got some errors :


bash-2.05$ make
making all in crypto...
make[1]: Entering directory `/apps/home/gus/openssl/crypto'
gcc -I. -I.. -I../include -DOPENSSL_SYSNAME_ULTRASPARC -DOPENSSL_THREADS -D_REENTRANT 
-DDSO_DLFCN -DHAVE_DLFCN_H -DOPENSSL_NO_KRB5 -m32 -mcpu=ultrasparc -O3 
-fomit-frame-pointer -Wall -DB_ENDIAN -DBN_DIV2W -DMD5_ASM   -c -o cryptlib.o 
cryptlib.c
cryptlib.c:70: syntax error before IMPLEMENT_STACK_OF
cryptlib.c:73: warning: return type defaults to `int'
cryptlib.c: In function `IMPLEMENT_STACK_OF':
cryptlib.c:73: `CRYPTO_NUM_LOCKS' undeclared (first use in this function)
cryptlib.c:73: (Each undeclared identifier is reported only once
cryptlib.c:73: for each function it appears in.)
cryptlib.c:73: storage class specified for parameter `lock_names'
cryptlib.c:73: parameter `lock_names' is initialized
cryptlib.c:76: warning: excess elements in scalar initializer
cryptlib.c:76: warning: (near initialization for `lock_names')
cryptlib.c:77: warning: excess elements in scalar initializer
cryptlib.c:77: warning: (near initialization for `lock_names')
cryptlib.c:78: warning: excess elements in scalar initializer
cryptlib.c:78: warning: (near initialization for `lock_names')
cryptlib.c:79: warning: excess elements in scalar initializer
cryptlib.c:79: warning: (near initialization for `lock_names')
cryptlib.c:80: warning: excess elements in scalar initializer
cryptlib.c:80: warning: (near initialization for `lock_names')
cryptlib.c:81: warning: excess elements in scalar initializer
cryptlib.c:81: warning: (near initialization for `lock_names')
cryptlib.c:82: warning: excess elements in scalar initializer
cryptlib.c:82: warning: (near initialization for `lock_names')
cryptlib.c:83: warning: excess elements in scalar initializer
cryptlib.c:83: warning: (near initialization for `lock_names')
cryptlib.c:84: warning: excess elements in scalar initializer
cryptlib.c:84: warning: (near initialization for `lock_names')
cryptlib.c:85: warning: excess elements in scalar initializer
cryptlib.c:85: warning: (near initialization for `lock_names')
cryptlib.c:86: warning: excess elements in scalar initializer
cryptlib.c:86: warning: (near initialization for `lock_names')
cryptlib.c:87: warning: excess elements in scalar initializer
cryptlib.c:87: warning: (near initialization for `lock_names')
cryptlib.c:88: warning: excess elements in scalar initializer
cryptlib.c:88: warning: (near initialization for `lock_names')
cryptlib.c:89: warning: excess elements in scalar initializer
cryptlib.c:89: warning: (near initialization for `lock_names')
cryptlib.c:90: warning: excess elements in scalar initializer
cryptlib.c:90: warning: (near initialization for `lock_names')
cryptlib.c:91: warning: excess elements in scalar initializer
cryptlib.c:91: warning: (near initialization for `lock_names')
cryptlib.c:92: warning: excess elements in scalar initializer
cryptlib.c:92: warning: (near initialization for `lock_names')
cryptlib.c:93: warning: excess elements in scalar initializer
cryptlib.c:93: warning: (near initialization for `lock_names')
cryptlib.c:94: warning: excess elements in scalar initializer
cryptlib.c:94: warning: (near initialization for `lock_names')
cryptlib.c:95: warning: excess elements in scalar initializer
cryptlib.c:95: warning: (near initialization for `lock_names')
cryptlib.c:96: warning: excess elements in scalar initializer
cryptlib.c:96: warning: (near initialization for `lock_names')
cryptlib.c:97: warning: excess elements in scalar initializer
cryptlib.c:97: warning: (near initialization for `lock_names')
cryptlib.c:98: warning: excess elements in scalar initializer
cryptlib.c:98: warning: (near initialization for `lock_names')
cryptlib.c:99: warning: excess elements in scalar initializer
cryptlib.c:99: warning: (near initialization for `lock_names')
cryptlib.c:100: warning: excess elements in scalar initializer
cryptlib.c:100: warning: (near initialization for `lock_names')
cryptlib.c:101: warning: excess elements in scalar initializer
cryptlib.c:101: warning: (near initialization for `lock_names')
cryptlib.c:102: warning: excess elements in scalar initializer
cryptlib.c:102: warning: (near initialization for `lock_names')
cryptlib.c:103: warning: excess elements in scalar initializer
cryptlib.c:103: warning: (near initialization for `lock_names')
cryptlib.c:104: warning: excess elements in scalar initializer
cryptlib.c:104: warning: (near initialization for `lock_names')
cryptlib.c:105: warning: excess elements in scalar initializer
cryptlib.c:105: warning: (near initialization for `lock_names')
cryptlib.c:106: warning: excess elements in scalar initializer
cryptlib.c:106: warning: (near initialization for `lock_names')
cryptlib.c:107: warning: excess elements in scalar initializer
cryptlib.c:107: warning: (near initialization for `lock_names')
cryptlib.c:109:3: #error Inconsistency between 

Re: intel x86 make error

2001-08-21 Thread Andy Polyakov

 Well,I think the error message you failed to read pretty much says it
 all:
 
 [...]
 sdavis cc -I. -I../include -KPIC -DTHREADS -D_REENTRANT -DDSO_DLFCN
 sdavis -DHAVE_DLFCN_H -fast -O -Xa  -c  cryptlib.c
 sdavis /usr/ucb/cc:  language optional software package not installed
 [...]

It should be noted however that /usr/ucb/cc isn't a supported option. I
mean you shouldn't be looking for language optional software package,
but for the way to get rid of /usr/ucb/cc. Normally this is achieved by
moving /usr/ucb to the end of your $PATH or removing it from $PATH. A.
__
OpenSSL Project http://www.openssl.org
Development Mailing List   [EMAIL PROTECTED]
Automated List Manager   [EMAIL PROTECTED]



intel x86 make error

2001-08-20 Thread Steve Davis

I'm fairly new to solaris8-intel, could be my inexperience with compiling 
binaries/scripts.

./config --prefix=/usr/local --openssldir=/usr/local/openssl run from 
/usr/local/openssl-0.9.6b appears to have no errors. No directories are created in 
/usr/local, yet no errors. When running make, the folowing error occurs. I had to copy 
make into /usr/bin to get it into the path.

# make
+ rm -f libcrypto.so.0
+ rm -f libcrypto.so
+ rm -f libcrypto.so.0.9.6
+ rm -f libssl.so.0
+ rm -f libssl.so
+ rm -f libssl.so.0.9.6
making all in crypto...
( echo #ifndef MK1MF_BUILD; \
echo   /* auto-generated by crypto/Makefile.ssl for crypto/cversion.c
*/; \
echo   #define CFLAGS \cc -KPIC -DTHREADS -D_REENTRANT -DDSO_DLFCN
-DHAVE_DLFCN_H -fast -O -Xa\; \
echo   #define PLATFORM \solaris-x86-cc\; \
echo   #define DATE \`date`\; \
echo #endif ) buildinf.h
cc -I. -I../include -KPIC -DTHREADS -D_REENTRANT -DDSO_DLFCN
-DHAVE_DLFCN_H -fast -O -Xa  -c  cryptlib.c
/usr/ucb/cc:  language optional software package not installed
*** Error code 1
make: Fatal error: Command failed for target `cryptlib.o'
Current working directory /usr/local/openssl-0.9.6b/crypto
*** Error code 1
make: Fatal error: Command failed for target `sub_all'
#


Below is a ls of the /usr/local/openssl-0.9.6b directory

# ls
appsdemos   INSTALL.MacOS   makevms.com rsaref
bugsdoc INSTALL.VMS ms  shlib
certs   e_os.h  INSTALL.W32 NEWSssl
CHANGES e_os2.h LICENSE openssl.doxytest
CHANGES.SSLeay  FAQ MacOS   openssl.spectimes
config  include Makefileperltools
Configure   INSTALL Makefile.orgREADME  util
crypto  install.com Makefile.sslREADME.ENGINE   VMS
#
If this is a bug, great for open source, if not please direct me in detail.





Stephen Davis
614-848-3995 X179

__
OpenSSL Project http://www.openssl.org
Development Mailing List   [EMAIL PROTECTED]
Automated List Manager   [EMAIL PROTECTED]



Re: intel x86 make error

2001-08-20 Thread Richard Levitte - VMS Whacker

From: Steve Davis [EMAIL PROTECTED]

sdavis I'm fairly new to solaris8-intel, could be my inexperience with compiling 
binaries/scripts.

Well,I think the error message you failed to read pretty much says it
all:

[...]
sdavis cc -I. -I../include -KPIC -DTHREADS -D_REENTRANT -DDSO_DLFCN
sdavis -DHAVE_DLFCN_H -fast -O -Xa  -c  cryptlib.c
sdavis /usr/ucb/cc:  language optional software package not installed
[...]

-- 
Richard Levitte   \ Spannvägen 38, II \ [EMAIL PROTECTED]
Redakteur@Stacken  \ S-168 35  BROMMA  \ T: +46-8-26 52 47
\  SWEDEN   \ or +46-733-72 88 11
Procurator Odiosus Ex Infernis-- [EMAIL PROTECTED]
Member of the OpenSSL development team: http://www.openssl.org/
Software Engineer, GemPlus: http://www.gemplus.com/

Unsolicited commercial email is subject to an archival fee of $400.
See http://www.stacken.kth.se/~levitte/mail/ for more info.
__
OpenSSL Project http://www.openssl.org
Development Mailing List   [EMAIL PROTECTED]
Automated List Manager   [EMAIL PROTECTED]



RE: OpenSSL make error

2000-08-15 Thread Barnes, Michael L.

Looks like you have not installed your linux system
for development, make sure that you have the kernel
headers and other development tools.

Mike

 -Original Message-
 From: Best, Chris [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, August 15, 2000 2:11 PM
 To: '[EMAIL PROTECTED]'
 Subject: OpenSSL make error
 
 
 The following error occurs after I have configured it for 
 linux-elf. Cant
 install it.
 
 Macksem:/tmp/openssl-0.9.5a# make
 making all in crypto...
 make[1]: Entering directory `/tmp/openssl-0.9.5a/crypto'
 gcc -I. -I../include -DTHREADS -D_REENTRANT -DL_ENDIAN -DTERMIO -O3
 -fomit-frame
 -pointer -m486 -Wall -DSHA1_ASM -DMD5_ASM -DRMD160_ASM   -c 
 cryptlib.c -o
 cryptl
 ib.o
 In file included from /usr/include/errno.h:36,
  from ../include/openssl/err.h:82,
  from cryptlib.h:74,
  from cryptlib.c:61:
 /usr/include/bits/errno.h:25: linux/errno.h: No such file or directory
 make[1]: *** [cryptlib.o] Error 1
 make[1]: Leaving directory `/tmp/openssl-0.9.5a/crypto'
 make: *** [all] Error 1
 Macksem:/tmp/openssl-0.9.5a# 
 __
 OpenSSL Project http://www.openssl.org
 Development Mailing List   [EMAIL PROTECTED]
 Automated List Manager   [EMAIL PROTECTED]
 
__
OpenSSL Project http://www.openssl.org
Development Mailing List   [EMAIL PROTECTED]
Automated List Manager   [EMAIL PROTECTED]



Re: OpenSSL make error

2000-08-15 Thread Richard Levitte - VMS Whacker

From: "Best, Chris" [EMAIL PROTECTED]

CJB267 The following error occurs after I have configured it for
CJB267 linux-elf. Cant install it.

CJB267 /usr/include/bits/errno.h:25: linux/errno.h: No such file or directory

Which Linux?  It looks like you need to install a developers package
of some sort.

-- 
Richard Levitte   \ Spannvägen 38, II \ [EMAIL PROTECTED]
Chairman@Stacken   \ S-168 35  BROMMA  \ T: +46-8-26 52 47
Redakteur@Stacken   \  SWEDEN   \ or +46-709-50 36 10
Procurator Odiosus Ex Infernis-- [EMAIL PROTECTED]
Member of the OpenSSL development team: http://www.openssl.org/
Software Engineer, Celo Communications: http://www.celocom.com/

Unsolicited commercial email is subject to an archival fee of $400.
See http://www.stacken.kth.se/~levitte/mail/ for more info.
__
OpenSSL Project http://www.openssl.org
Development Mailing List   [EMAIL PROTECTED]
Automated List Manager   [EMAIL PROTECTED]



RE: openssl-0.9.5a make error

2000-08-09 Thread Barnes, Michael L.

Mr root:

make sure that your OS has been configured for development,
meaning that kernel headers have been installed and that the
other development packages have been installed.

This is an OS installation problem and not an openssl problem.

Mike

 -Original Message-
 From: root [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, August 09, 2000 3:03 PM
 To: [EMAIL PROTECTED]
 Subject: openssl-0.9.5a make error
 
 
 I got this error trying to make openssl-0.9.5a on a RedHat 
 Linux 6.1 system
 
 making all in crypto...
 make[1]: Entering directory 
 `/home/goyette/apache-ssl/openssl-0.9.5a/crypto'
 gcc -I. -I../include -DTHREADS -D_REENTRANT -DL_ENDIAN 
 -DTERMIO -O3 -fomit-frame-pointer -m486 -Wall -DSHA1_ASM 
 -DMD5_ASM -DRMD160_ASM   -c cryptlib.c -o cryptlib.o
 In file included from /usr/include/errno.h:36,
  from ../include/openssl/err.h:82,
  from cryptlib.h:74,
  from cryptlib.c:61:
 /usr/include/bits/errno.h:25: linux/errno.h: No such file or directory
 make[1]: *** [cryptlib.o] Error 1
 make[1]: Leaving directory 
 `/home/goyette/apache-ssl/openssl-0.9.5a/crypto'
 make: *** [all] Error 1
 __
 OpenSSL Project http://www.openssl.org
 Development Mailing List   [EMAIL PROTECTED]
 Automated List Manager   [EMAIL PROTECTED]
 
__
OpenSSL Project http://www.openssl.org
Development Mailing List   [EMAIL PROTECTED]
Automated List Manager   [EMAIL PROTECTED]



Re: openssl-0.9.5a make error

2000-08-09 Thread Crispin Wellington

Install your kernel tree

Crispin

On Wed, 9 Aug 2000, root wrote:

 I got this error trying to make openssl-0.9.5a on a RedHat Linux 6.1 system
 
 making all in crypto...
 make[1]: Entering directory `/home/goyette/apache-ssl/openssl-0.9.5a/crypto'
 gcc -I. -I../include -DTHREADS -D_REENTRANT -DL_ENDIAN -DTERMIO -O3 
-fomit-frame-pointer -m486 -Wall -DSHA1_ASM -DMD5_ASM -DRMD160_ASM   -c cryptlib.c -o 
cryptlib.o
 In file included from /usr/include/errno.h:36,
  from ../include/openssl/err.h:82,
  from cryptlib.h:74,
  from cryptlib.c:61:
 /usr/include/bits/errno.h:25: linux/errno.h: No such file or directory
 make[1]: *** [cryptlib.o] Error 1
 make[1]: Leaving directory `/home/goyette/apache-ssl/openssl-0.9.5a/crypto'
 make: *** [all] Error 1
 __
 OpenSSL Project http://www.openssl.org
 Development Mailing List   [EMAIL PROTECTED]
 Automated List Manager   [EMAIL PROTECTED]
 

__
OpenSSL Project http://www.openssl.org
Development Mailing List   [EMAIL PROTECTED]
Automated List Manager   [EMAIL PROTECTED]



Re: i meet make error

2000-08-07 Thread Richard Levitte - VMS Whacker

From: "mrick" [EMAIL PROTECTED]

mrick when I install Openssll the error information display
mrick please tell me why?

mrick #sh: ar: not found

If you're on Solaris, you need to add /usr/ccs/bin to your $PATH.
This is a FAQ.

-- 
Richard Levitte   \ Spannvägen 38, II \ [EMAIL PROTECTED]
Chairman@Stacken   \ S-168 35  BROMMA  \ T: +46-8-26 52 47
Redakteur@Stacken   \  SWEDEN   \ or +46-709-50 36 10
Procurator Odiosus Ex Infernis-- [EMAIL PROTECTED]
Member of the OpenSSL development team: http://www.openssl.org/
Software Engineer, Celo Communications: http://www.celocom.com/

Unsolicited commercial email is subject to an archival fee of $400.
See http://www.stacken.kth.se/~levitte/mail/ for more info.
__
OpenSSL Project http://www.openssl.org
Development Mailing List   [EMAIL PROTECTED]
Automated List Manager   [EMAIL PROTECTED]



Re: make error

2000-07-06 Thread Ulf Moeller

On Thu, Jul 06, 2000, Richard Levitte - VMS Whacker wrote:

 From: Charlene Yee [EMAIL PROTECTED]
 
 Charlene.Yee I doubt this is a bug, am I missing anything on my machine?  If
 Charlene.Yee so how do I fix this.  I already ran ./config
 [...]
 Charlene.Yee /usr/ucb/cc:  language optional software package not installed
 
 That line should be clear enough, no?  You need to get a C compiler.
 Alternatively, you need to make sure that the directory where you
 actually have a compiler is part of your $PATH.

Special hint to the folks at eng.sun.com: If you can't get your compiler to
work, try asking the person at the desk next to yours. They might know, and
the OpenSSL team would appreciate it if you used [EMAIL PROTECTED]
only to report bugs.

__
OpenSSL Project http://www.openssl.org
Development Mailing List   [EMAIL PROTECTED]
Automated List Manager   [EMAIL PROTECTED]



Re: make error

2000-07-06 Thread Richard Levitte - VMS Whacker

From: Charlene Yee [EMAIL PROTECTED]

Charlene.Yee I doubt this is a bug, am I missing anything on my machine?  If
Charlene.Yee so how do I fix this.  I already ran ./config
[...]
Charlene.Yee /usr/ucb/cc:  language optional software package not installed

That line should be clear enough, no?  You need to get a C compiler.
Alternatively, you need to make sure that the directory where you
actually have a compiler is part of your $PATH.

-- 
Richard Levitte   \ Spannvägen 38, II \ [EMAIL PROTECTED]
Chairman@Stacken   \ S-168 35  BROMMA  \ T: +46-8-26 52 47
Redakteur@Stacken   \  SWEDEN   \ or +46-709-50 36 10
Procurator Odiosus Ex Infernis-- [EMAIL PROTECTED]
Member of the OpenSSL development team: http://www.openssl.org/
Software Engineer, Celo Communications: http://www.celocom.com/

Unsolicited commercial email is subject to an archival fee of $400.
See http://www.stacken.kth.se/~levitte/mail/ for more info.
__
OpenSSL Project http://www.openssl.org
Development Mailing List   [EMAIL PROTECTED]
Automated List Manager   [EMAIL PROTECTED]



Re: Make Error

2000-06-28 Thread Richard Levitte - VMS Whacker

From: "Cayleb Darkstar" [EMAIL PROTECTED]

Proxima.Centauri In file included from /usr/include/errno.h:36,
Proxima.Centauri  from ../include/openssl/err.h:82,
Proxima.Centauri  from cryptlib.h:74,
Proxima.Centauri  from cryptlib.c:61:
Proxima.Centauri /usr/include/bits/errno.h:25: linux/errno.h: No such file or 
directory
Proxima.Centauri make[1]: *** [cryptlib.o] Error 1
Proxima.Centauri make[1]: Leaving directory `/root/openssl-0.9.5/crypto'
Proxima.Centauri make: *** [all] Error 1

That's an error in your linux installation.

-- 
Richard Levitte   \ Spannvägen 38, II \ [EMAIL PROTECTED]
Chairman@Stacken   \ S-168 35  BROMMA  \ T: +46-8-26 52 47
Redakteur@Stacken   \  SWEDEN   \ or +46-709-50 36 10
Procurator Odiosus Ex Infernis-- [EMAIL PROTECTED]
Member of the OpenSSL development team: http://www.openssl.org/
Software Engineer, Celo Communications: http://www.celocom.com/

Unsolicited commercial email is subject to an archival fee of $400.
See http://www.stacken.kth.se/~levitte/mail/ for more info.
__
OpenSSL Project http://www.openssl.org
Development Mailing List   [EMAIL PROTECTED]
Automated List Manager   [EMAIL PROTECTED]



Make error

2000-03-03 Thread Joe O'Reilly

I have now had this error several times

I compiled the program, as per the instructions in the INSTALL file always
on a suse 6.2 linux system, with apache 1.3.9 and 1.3.12.  I get the same
make error each time.

Please find attached a text log of the make.

Thanks in advance for any halp you may be able to give!

Joe O'Reilly

 make.log


Re: Make error

2000-03-03 Thread Ulf Möller

On Fri, Mar 03, 2000 at 02:26:57PM -, Joe O'Reilly wrote:

 Thanks in advance for any halp you may be able to give!

As described in http://www.openssl.org/support/faq.html#7
you can use the "no-asm" option as an immediate fix.

 gcc -E -DELF asm/mx86unix.cpp | as -o asm/mx86-elf.o
 gcc: asm/mx86unix.cpp: linker input file unused since linking not done

Does anybody know why this happens?
__
OpenSSL Project http://www.openssl.org
Development Mailing List   [EMAIL PROTECTED]
Automated List Manager   [EMAIL PROTECTED]



Re: Make error

2000-03-03 Thread Bodo Moeller

Joe O'Reilly [EMAIL PROTECTED]:

 a suse 6.2 linux system [...].  I get the same make error each time.

 (cd asm; /usr/bin/perl sha1-586.pl cpp  sx86unix.cpp)
 gcc -E -DELF asm/sx86unix.cpp | as -o asm/sx86-elf.o
 gcc: asm/sx86unix.cpp: linker input file unused since linking not done

What gcc version is that?  gcc -E -DELF asm/sx86unix.cpp is expected
to run that file through the pre-processor and output the result
at stdout.  Do you get any output other than that error when
you run gcc -E -DELF asm/sx86unix.cpp manually (in the appropriate
directory)?
__
OpenSSL Project http://www.openssl.org
Development Mailing List   [EMAIL PROTECTED]
Automated List Manager   [EMAIL PROTECTED]



Re: Make error in openssl 0.9.4

2000-02-27 Thread Richard Levitte - VMS Whacker

jonessk gcc: Internal compiler error: program cc1 got fatal signal 11

That's a SIGSEGV.  What version of gcc was that?

There are two things that I can think of that you might need to do:

  1. free up memory.  that signal could be because it ran out of swap
 space.
  2. upgrade gcc, it might be faulty (and you didn't tell us what
 version you used).

-- 
Richard Levitte   \ Spannvägen 38, II \ [EMAIL PROTECTED]
Chairman@Stacken   \ S-168 35  BROMMA  \ T: +46-8-26 52 47
Redakteur@Stacken   \  SWEDEN   \ or +46-708-26 53 44
Procurator Odiosus Ex Infernis -- [EMAIL PROTECTED]
   Member of the OpenSSL development team

Unsolicited commercial email is subject to an archival fee of $400.
See http://www.stacken.kth.se/~levitte/mail/ for more info.
__
OpenSSL Project http://www.openssl.org
Development Mailing List   [EMAIL PROTECTED]
Automated List Manager   [EMAIL PROTECTED]



Re: Make error in openssl 0.9.4

2000-02-27 Thread Kris Kennaway

On Sun, 27 Feb 2000, Richard Levitte - VMS Whacker wrote:

 jonessk gcc: Internal compiler error: program cc1 got fatal signal 11
 
 That's a SIGSEGV.  What version of gcc was that?
 
 There are two things that I can think of that you might need to do:
 
   1. free up memory.  that signal could be because it ran out of swap
  space.
   2. upgrade gcc, it might be faulty (and you didn't tell us what
  version you used).

3. You have hardware problems, most likely bad memory. If you build the
program again and it fails in a different place, this is most likely to be
your problem.

Kris


"How many roads must a man walk down, before you call him a man?"
"Eight!"
"That was a rhetorical question!"
"Oh..then, seven!" -- Homer Simpson

__
OpenSSL Project http://www.openssl.org
Development Mailing List   [EMAIL PROTECTED]
Automated List Manager   [EMAIL PROTECTED]



Re: make error - please advise

1999-09-29 Thread Andy Polyakov

  Errr ... why?
that was my first reaction too:-)
 
 Because it fails so often (we've had one example for Windows and one
 example for Unix this week),
but what happens anyway?
 and because VMS needs it (or some other
 solution) anyway.
as well as MacOS...

andy.
__
OpenSSL Project http://www.openssl.org
Development Mailing List   [EMAIL PROTECTED]
Automated List Manager   [EMAIL PROTECTED]



Re: make error - please advise

1999-09-29 Thread Ulf Möller

 If people want to develop or use snapshots, then they should have Perl.

I don't think we should make it more difficult for people to try the
snapshots. There already are enough problems that are only noticed
in the release versions.

I mean, we even have the makedepend output in the CVS, even though that
causes frequent but meaningless version changes.
__
OpenSSL Project http://www.openssl.org
Development Mailing List   [EMAIL PROTECTED]
Automated List Manager   [EMAIL PROTECTED]



Re: make error - please advise

1999-09-29 Thread Ben Laurie

Ulf Möller wrote:
 
  If people want to develop or use snapshots, then they should have Perl.
 
 I don't think we should make it more difficult for people to try the
 snapshots. There already are enough problems that are only noticed
 in the release versions.
 
 I mean, we even have the makedepend output in the CVS, even though that
 causes frequent but meaningless version changes.

OK. Go for it, then.

Cheers,

Ben.

--
http://www.apache-ssl.org/ben.html

"My grandfather once told me that there are two kinds of people: those
who work and those who take the credit. He told me to try to be in the
first group; there was less competition there."
 - Indira Gandhi
__
OpenSSL Project http://www.openssl.org
Development Mailing List   [EMAIL PROTECTED]
Automated List Manager   [EMAIL PROTECTED]



Re: make error - please advise

1999-09-28 Thread Richard Levitte - VMS Whacker

ulf Maybe we should put obj_dat.h back under CVS control, fix the dots in
ulf objects.h as Anonymous proposed some time ago, and run obj_dat.pl as
ulf part of "make update".
ulf 
ulf Any objections?

No.  None at all.  Nope.  Please do :-).

-- 
Richard Levitte   \ Spannvägen 38, II \ [EMAIL PROTECTED]
Redakteur@Stacken  \ S-161 43  BROMMA  \ T: +46-8-26 52 47
\  SWEDEN   \ or +46-708-26 53 44
Procurator Odiosus Ex Infernis -- [EMAIL PROTECTED]

Unsolicited commercial email is subject to an archival fee of $400.
See http://www.stacken.kth.se/~levitte/mail/ for more info.
__
OpenSSL Project http://www.openssl.org
Development Mailing List   [EMAIL PROTECTED]
Automated List Manager   [EMAIL PROTECTED]



Re: make error - please advise

1999-09-28 Thread Ulf Möller

 Errr ... why?

Because it fails so often (we've had one example for Windows and one
example for Unix this week), and because VMS needs it (or some other
solution) anyway.
__
OpenSSL Project http://www.openssl.org
Development Mailing List   [EMAIL PROTECTED]
Automated List Manager   [EMAIL PROTECTED]



Re: make error in openssl-0.9.3a

1999-07-14 Thread Holger Reif

Bill Wandrack schrieb:
 
 make error:
 
 gcc -DMONOLITH -I../include -DTHREADS -D_REENTRANT -DRSAref -DL_ENDIAN
 -DTERMIO -O3 -fomit-frame-pointer -m486 -Wall -DSHA1_ASM -DMD5_ASM
 -DRMD160_ASM   -c openssl.c -o openssl.o
 rm -f openssl
 gcc -o openssl -DMONOLITH -I../include -DTHREADS -D_REENTRANT -DRSAref
 -DL_ENDIAN -DTERMIO -O3 -fomit-frame-pointer -m486 -Wall -DSHA1_ASM
 -DMD5_ASM -DRMD160_ASM openssl.o verify.o asn1pars.o req.o dgst.o dh.o
 enc.o gendh.o errstr.o ca.o pkcs7.o crl2p7.o crl.o rsa.o dsa.o
 dsaparam.o x509.o genrsa.o gendsa.o s_server.o s_client.o speed.o
 s_time.o apps.o s_cb.o s_socket.o version.o sess_id.o ciphers.o nseq.o
 pkcs12.o -L. -L.. -L../.. -L../../.. -L.. -lssl -L.. -lcrypto
 -Lpwd/../rsaref-2.0/local/ -lRSAglue -lrsaref
   ^^

This should be -L`pwd`/../rsaref-2.0/local (back ticks required)
which would give the path to the librsaref.

Any voluntair to add it as a FAQ?

 ld: cannot open -lrsaref: No such file or directory
 make[1]: *** [openssl] Error 1
 make[1]: Leaving directory `/home/bwandra/openssl-0.9.3a/apps'
 make: *** [all] Error 1
 
 make test error:
 
 [bwandra@bwandra openssl-0.9.3a]$ make test

if make fails, make test can'T work since it requires a complete
build (done by make) first.

 c_rehash: rehashing skipped ('openssl' program not available)
 testing...
 make[1]: Entering directory `/home/bwandra/openssl-0.9.3a/test'
 gcc -I../include -DTHREADS -D_REENTRANT -DRSAref -DL_ENDIAN -DTERMIO -O3
 -fomit-frame-pointer -m486 -Wall -DSHA1_ASM -DMD5_ASM -DRMD160_ASM   -c
 bntest.c -o bntest.o
 gcc -o bntest -I../include -DTHREADS -D_REENTRANT -DRSAref -DL_ENDIAN
 -DTERMIO -O3 -fomit-frame-pointer -m486 -Wall -DSHA1_ASM -DMD5_ASM
 -DRMD160_ASM bntest.o -L. -L.. -L../.. -L../../.. -L.. -lcrypto
 -Lpwd/../rsaref-2.0/local/ -lRSAglue -lrsaref
 ld: cannot open -lrsaref: No such file or directory
 make[1]: *** [bntest] Error 1
 make[1]: Leaving directory `/home/bwandra/openssl-0.9.3a/test'
 make: *** [tests] Error 2
 
 config -t output:
 
 Operating system: i586-whatever-linux2
 Configuring for linux-elf
 /usr/bin/perl ./Configure linux-elf
 __
 OpenSSL Project http://www.openssl.org
 Development Mailing List   [EMAIL PROTECTED]
 Automated List Manager   [EMAIL PROTECTED]

-- 
Holger Reif  Tel.: +49 361 74707-0
SmartRing GmbH   Fax.: +49 361 7470720
Europaplatz 5 [EMAIL PROTECTED]
D-99091 ErfurtWWW.SmartRing.de
__
OpenSSL Project http://www.openssl.org
Development Mailing List   [EMAIL PROTECTED]
Automated List Manager   [EMAIL PROTECTED]



make error in openssl-0.9.3a

1999-07-13 Thread Bill Wandrack


make error:



gcc -DMONOLITH -I../include -DTHREADS -D_REENTRANT -DRSAref -DL_ENDIAN
-DTERMIO -O3 -fomit-frame-pointer -m486 -Wall -DSHA1_ASM -DMD5_ASM
-DRMD160_ASM   -c openssl.c -o openssl.o
rm -f openssl
gcc -o openssl -DMONOLITH -I../include -DTHREADS -D_REENTRANT -DRSAref
-DL_ENDIAN -DTERMIO -O3 -fomit-frame-pointer -m486 -Wall -DSHA1_ASM
-DMD5_ASM -DRMD160_ASM openssl.o verify.o asn1pars.o req.o dgst.o dh.o
enc.o gendh.o errstr.o ca.o pkcs7.o crl2p7.o crl.o rsa.o dsa.o
dsaparam.o x509.o genrsa.o gendsa.o s_server.o s_client.o speed.o
s_time.o apps.o s_cb.o s_socket.o version.o sess_id.o ciphers.o nseq.o
pkcs12.o -L. -L.. -L../.. -L../../.. -L.. -lssl -L.. -lcrypto
-Lpwd/../rsaref-2.0/local/ -lRSAglue -lrsaref
ld: cannot open -lrsaref: No such file or directory
make[1]: *** [openssl] Error 1
make[1]: Leaving directory `/home/bwandra/openssl-0.9.3a/apps'
make: *** [all] Error 1



make test error:


[bwandra@bwandra openssl-0.9.3a]$ make test
c_rehash: rehashing skipped ('openssl' program not available)
testing...
make[1]: Entering directory `/home/bwandra/openssl-0.9.3a/test'
gcc -I../include -DTHREADS -D_REENTRANT -DRSAref -DL_ENDIAN -DTERMIO -O3
-fomit-frame-pointer -m486 -Wall -DSHA1_ASM -DMD5_ASM -DRMD160_ASM   -c
bntest.c -o bntest.o
gcc -o bntest -I../include -DTHREADS -D_REENTRANT -DRSAref -DL_ENDIAN
-DTERMIO -O3 -fomit-frame-pointer -m486 -Wall -DSHA1_ASM -DMD5_ASM
-DRMD160_ASM bntest.o -L. -L.. -L../.. -L../../.. -L.. -lcrypto
-Lpwd/../rsaref-2.0/local/ -lRSAglue -lrsaref
ld: cannot open -lrsaref: No such file or directory
make[1]: *** [bntest] Error 1
make[1]: Leaving directory `/home/bwandra/openssl-0.9.3a/test'
make: *** [tests] Error 2



config -t output:


Operating system: i586-whatever-linux2
Configuring for linux-elf
/usr/bin/perl ./Configure linux-elf
__
OpenSSL Project http://www.openssl.org
Development Mailing List   [EMAIL PROTECTED]
Automated List Manager   [EMAIL PROTECTED]



make error from include/openssl/bio.h:66 version 0.9.3a

1999-07-13 Thread Steve K

This was copied by hand. The same source compiled fine on a custom i486
kernel running the same linux release. Only difference is this servers
kernel
was compiled as i586 SMP, and the i486 server is running perl5.00503. Is
the SMP kernel compatible with openssl?

Thanks,
  Steve Kinkaid

making all in crypto/bio...
make[2]: Entering directory '/usr/src/openssl-0.9.3a/crypto/bio'
gcc -I.. -I../../include -DTHREADS -D_REENTRANT -DL_ENDIAN -DTERMIO -O3 -fom
it-frame-pointer -m486 -Wall -DSHA1_ASM -DMD5_ASM -DRMD160_ASM -c
bio_lib.c -o bio_lib.o
gcc -I.. -I../../include -DTHREADS -D_REENTRANT -DL_ENDIAN -DTERMIO -O3 -fom
it-frame-pointer -m486 -Wall -DSHA1_ASM -DMD5_ASM -DRMD160_ASM -c
bio_cb.c -o bio_cb.o
gcc -I.. -I../../include -DTHREADS -D_REENTRANT -DL_ENDIAN -DTERMIO -O3 -fom
it-frame-pointer -m486 -Wall -DSHA1_ASM -DMD5_ASM -DRMD160_ASM -c
bio_err.c -o bio_err.o
In file included from ../../include/openssl/bio.h:66,
from bio_err.c:62
/usr/include/stdio.h:76: warning: redefinition of 'FILE'
/usr/include/stdio.h:76: warning: 'FILE' previously declared here
/usr/include/stdio.h:77: warning: redefinition of 'fpos_t'
/usr/include/stdio.h:77: warning: 'fpos_t' previously declared here
/usr/include/stdio.h:91: warning: parse error before '*'
make[2]: *** [bio_err.o] Error 1
Make[2]: Leaving directory '/usr/src/openssl-0.9.3a/crypto/bio'

Operating system: i586-whatever-linux2
Configuring for linux-elf
/usr/bin/perl ./Configure linux-elf

Using Linux 2.0.36 SMP
gcc version 2.7.2.3
Perl Version 5.00502


__
OpenSSL Project http://www.openssl.org
Development Mailing List   [EMAIL PROTECTED]
Automated List Manager   [EMAIL PROTECTED]