From: Balaji Thiruvenkatachari <[EMAIL PROTECTED]>
Subject: Compilation Problem.
Date: Wed, 14 Jun 2000 18:53:35 -0400
Message-ID: <[EMAIL PROTECTED]>

bthiru> This message is in MIME format. Since your mail reader does not understand
bthiru> this format, some or all of this message may not be legible.
bthiru> 
bthiru> ------_=_NextPart_000_01BFD653.5FC15A80
bthiru> Content-Type: text/plain;
bthiru>         charset="iso-8859-1"
bthiru> 
bthiru> Hello,
bthiru> 
bthiru>   Getting the following error while doing a make of openssl (0.9.5a).
bthiru> 
bthiru>   >>>>>>>>>>>>>>
bthiru> 
bthiru> make[1]: Entering directory `/install/openssl-0.9.5a/crypto'
bthiru> gcc -I. -I../include -DTHREADS -D_REENTRANT -DNO_IDEA -DNO_RSA -DNO_RC5
bthiru> -mcpu=ultrasparc -O3 -fomit-frame-pointer -Wall -DB_ENDIAN -DBN_DIV2W
bthiru> -DULTRASPARC -DMD5_ASM   -c -o cryptlib.o cryptlib.c
bthiru> cryptlib.c:98: #error "Inconsistency between crypto.h and cryptlib.c"
bthiru> make[1]: *** [cryptlib.o] Error 1
bthiru> make[1]: Leaving directory `/install/openssl-0.9.5a/crypto'
bthiru> make: *** [all] Error 1
bthiru> <<<<<<<<<< 

You have an older crypto.h in your inclusion path, most likely.  Since
you use gcc, you could try the following command:

gcc -I. -I../include -DTHREADS -D_REENTRANT -DNO_IDEA -DNO_RSA \
        -DNO_RC5 -mcpu=ultrasparc -O3 -fomit-frame-pointer -Wall \
        -DB_ENDIAN -DBN_DIV2W -DULTRASPARC -DMD5_ASM  \
        -v -E -o cryptlib.I cryptlib.c 

-v causes gcc to giv eyou all kinds of info, among others the
inclusion paths it uses.  -E causes gcc to only do preprocessing, and
the result will end up in cryptlib.I.  Look in the resulting
cryptlib.I for preprocessor lines with paths, and look for crypto.h.
That will give you a hint on which you got.  

-- 
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
User Support Mailing List                    [EMAIL PROTECTED]
Automated List Manager                           [EMAIL PROTECTED]

Reply via email to