In message <Pine.GSO.4.44.0210161005370.475-100000@techne> on Wed, 16 Oct 2002 
10:07:17 -0500 (CDT), Mark <[EMAIL PROTECTED]> said:

mark> I am using Forte cc for my compiler and get this error.  It seems to just
mark> go wacky inside the ifdefs for DEVRANDOM, which I defined since I have
mark> patched the system to include /dev/random:
mark> 
mark> making all in crypto/rand...
mark> cc -I.. -I../.. -I../../include -KPIC -DTHREADS -D_REENTRANT -DDSO_DLFCN
mark> -DHAVE_
mark> DLFCN_H -DDEVRANDOM=/dev/random -xtarget=ultra -xarch=v8plus -xO5
mark> -xstrconst -xd
mark> epend -Xa -DB_ENDIAN -DBN_DIV2W -DULTRASPARC -DMD5_ASM  -c  rand_win.c

You're problem is '-DDEVRANDOM=/dev/random'.  No quotes, so it won't
be interpreted as a string.  How did you define this?  If it was with
./Configure, you need to make sure proper quoting is inserted.  I
think you'll end up with correct quoting if you have this in the
arguments to ./Configure:

        -DDEVRANDOM="\"\\\"/dev/random\\\"\""

Basically, in your Makefile, you need to end up with the following:

        -DDEVRANDOM="\"/dev/random\""

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

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