RE: compiling 1.0.0-beta2 on OpenVMS

2009-06-01 Thread Richard Whalen
I'm compiling 0.9.8k on VAX and experienced the same problem with seed.c 
causing the compiler to get stuck. Moving it to COMPILEWITH_CC5 resolved the 
problem.

When compiling on ia64 I got an error in VMS.MAR on a BSB 41$ that I think 
should be a BRB 41$ 

-Original Message-
From: Richard Levitte [mailto:rich...@levitte.org] 
Sent: Friday, May 15, 2009 4:23 AM
To: openssl-users@openssl.org; Richard Whalen; BércziGábor
Subject: Re: compiling 1.0.0-beta2 on OpenVMS

I wouldn't recommend that, it leads to very slow code last time I
tried.  However, if you look in [.crypto]crypto-lib.com, you'll find
the following lines:

$ ! Add definitions for no threads on OpenVMS 7.1 and higher
$ COMPILEWITH_CC3 = ,bss_rtcp,
$ ! Disable the DOLLARID warning
$ COMPILEWITH_CC4 = ,a_utctm,bss_log,o_time,o_dir
$ ! Disable disjoint optimization
$ COMPILEWITH_CC5 = ,md2_dgst,md4_dgst,md5_dgst,mdc2dgst, + -
sha_dgst,sha1dgst,rmd_dgst,bf_enc,
$ ! Disable the MIXLINKAGE warning
$ COMPILEWITH_CC6 = ,enc_read,set_key,

I'm thinking that one might want to add seed to COMPILEWITH_CC5 and
see if that helps...  As I recall, the files already mentioned there
made the compiler on VAX behave as described below before I placed
them there.

Bérczi, please try it out and tell me if that changed things.

(
if you wonder, I'm talking about changing the COMPILEWITH_CC5 line
like this:

$ COMPILEWITH_CC5 = ,md2_dgst,md4_dgst,md5_dgst,mdc2dgst, + -
sha_dgst,sha1dgst,rmd_dgst,bf_enc,seed,
)

Cheers,
Richard

In message 3ef96af20489a34296050fbd5c36ecb901244...@beacon.psc.process.com on 
Wed, 13 May 2009 11:35:31 -0400, Richard Whalen whal...@process.com said:

Whalenr Typically it's the optimizer that causes the problem.  Try compiling 
the source with /NOOPTIMIZE. 
Whalenr 
Whalenr -Original Message-
Whalenr From: owner-openssl-us...@openssl.org 
[mailto:owner-openssl-us...@openssl.org] On Behalf Of Bérczi Gábor
Whalenr Sent: Wednesday, May 13, 2009 7:02 AM
Whalenr To: openssl-users@openssl.org
Whalenr Subject: Re: compiling 1.0.0-beta2 on OpenVMS
Whalenr 
Whalenr I can certainly provide a suitable account, if that helps, just let me 
 
Whalenr know.
Whalenr 
Whalenr On May 13, 2009, at 8:09 AM, Richard Levitte wrote:
Whalenr 
Whalenr  In message af6e8d0b-23a6-422e-a699-b8c61c632...@berczi.be on Tue,  
Whalenr  12 May 2009 22:58:35 +0200, Bérczi Gábor ga...@berczi.be said:
Whalenr 
Whalenr  gabor Latest beta version doesn't compile on VAX/VMS (with DEC C).
Whalenr  gabor Compilation just hangs at seed.c, doing absolutely nothing
Whalenr  gabor except using CPU time.
Whalenr 
Whalenr  That sounds quite odd...  Unfortunately, I've no VAX/VMS account 
(only
Whalenr  a Alpha/VMS one), so I can't verify or fix.  Is there any way you can
Whalenr  help us?

-- 
Richard Levitte rich...@levitte.org
http://richard.levitte.org/

Life is a tremendous celebration - and I'm invited!
-- from a friend's blog, translated from Swedish

__
OpenSSL Project http://www.openssl.org
User Support Mailing Listopenssl-users@openssl.org
Automated List Manager   majord...@openssl.org


Re: compiling 1.0.0-beta2 on OpenVMS

2009-05-16 Thread Gábor Bérczi


On May 15, 2009, at 10:22 AM, Richard Levitte wrote:


Bérczi, please try it out and tell me if that changed things.


This has indeed fixed it, thank you.

__
OpenSSL Project http://www.openssl.org
User Support Mailing Listopenssl-users@openssl.org
Automated List Manager   majord...@openssl.org


Re: compiling 1.0.0-beta2 on OpenVMS

2009-05-15 Thread Richard Levitte
I wouldn't recommend that, it leads to very slow code last time I
tried.  However, if you look in [.crypto]crypto-lib.com, you'll find
the following lines:

$ ! Add definitions for no threads on OpenVMS 7.1 and higher
$ COMPILEWITH_CC3 = ,bss_rtcp,
$ ! Disable the DOLLARID warning
$ COMPILEWITH_CC4 = ,a_utctm,bss_log,o_time,o_dir
$ ! Disable disjoint optimization
$ COMPILEWITH_CC5 = ,md2_dgst,md4_dgst,md5_dgst,mdc2dgst, + -
sha_dgst,sha1dgst,rmd_dgst,bf_enc,
$ ! Disable the MIXLINKAGE warning
$ COMPILEWITH_CC6 = ,enc_read,set_key,

I'm thinking that one might want to add seed to COMPILEWITH_CC5 and
see if that helps...  As I recall, the files already mentioned there
made the compiler on VAX behave as described below before I placed
them there.

Bérczi, please try it out and tell me if that changed things.

(
if you wonder, I'm talking about changing the COMPILEWITH_CC5 line
like this:

$ COMPILEWITH_CC5 = ,md2_dgst,md4_dgst,md5_dgst,mdc2dgst, + -
sha_dgst,sha1dgst,rmd_dgst,bf_enc,seed,
)

Cheers,
Richard

In message 3ef96af20489a34296050fbd5c36ecb901244...@beacon.psc.process.com on 
Wed, 13 May 2009 11:35:31 -0400, Richard Whalen whal...@process.com said:

Whalenr Typically it's the optimizer that causes the problem.  Try compiling 
the source with /NOOPTIMIZE. 
Whalenr 
Whalenr -Original Message-
Whalenr From: owner-openssl-us...@openssl.org 
[mailto:owner-openssl-us...@openssl.org] On Behalf Of Bérczi Gábor
Whalenr Sent: Wednesday, May 13, 2009 7:02 AM
Whalenr To: openssl-users@openssl.org
Whalenr Subject: Re: compiling 1.0.0-beta2 on OpenVMS
Whalenr 
Whalenr I can certainly provide a suitable account, if that helps, just let me 
 
Whalenr know.
Whalenr 
Whalenr On May 13, 2009, at 8:09 AM, Richard Levitte wrote:
Whalenr 
Whalenr  In message af6e8d0b-23a6-422e-a699-b8c61c632...@berczi.be on Tue,  
Whalenr  12 May 2009 22:58:35 +0200, Bérczi Gábor ga...@berczi.be said:
Whalenr 
Whalenr  gabor Latest beta version doesn't compile on VAX/VMS (with DEC C).
Whalenr  gabor Compilation just hangs at seed.c, doing absolutely nothing
Whalenr  gabor except using CPU time.
Whalenr 
Whalenr  That sounds quite odd...  Unfortunately, I've no VAX/VMS account 
(only
Whalenr  a Alpha/VMS one), so I can't verify or fix.  Is there any way you can
Whalenr  help us?

-- 
Richard Levitte rich...@levitte.org
http://richard.levitte.org/

Life is a tremendous celebration - and I'm invited!
-- from a friend's blog, translated from Swedish
__
OpenSSL Project http://www.openssl.org
User Support Mailing Listopenssl-users@openssl.org
Automated List Manager   majord...@openssl.org


Re: compiling 1.0.0-beta2 on OpenVMS

2009-05-13 Thread Richard Levitte
In message af6e8d0b-23a6-422e-a699-b8c61c632...@berczi.be on Tue, 12 May 2009 
22:58:35 +0200, Bérczi Gábor ga...@berczi.be said:

gabor Latest beta version doesn't compile on VAX/VMS (with DEC C).
gabor Compilation just hangs at seed.c, doing absolutely nothing
gabor except using CPU time.

That sounds quite odd...  Unfortunately, I've no VAX/VMS account (only
a Alpha/VMS one), so I can't verify or fix.  Is there any way you can
help us?

Cheers,
Richard

-- 
Richard Levitte rich...@levitte.org
http://richard.levitte.org/

Life is a tremendous celebration - and I'm invited!
-- from a friend's blog, translated from Swedish
__
OpenSSL Project http://www.openssl.org
User Support Mailing Listopenssl-users@openssl.org
Automated List Manager   majord...@openssl.org


Re: compiling 1.0.0-beta2 on OpenVMS

2009-05-13 Thread Bérczi Gábor
I can certainly provide a suitable account, if that helps, just let me  
know.


On May 13, 2009, at 8:09 AM, Richard Levitte wrote:

In message af6e8d0b-23a6-422e-a699-b8c61c632...@berczi.be on Tue,  
12 May 2009 22:58:35 +0200, Bérczi Gábor ga...@berczi.be said:


gabor Latest beta version doesn't compile on VAX/VMS (with DEC C).
gabor Compilation just hangs at seed.c, doing absolutely nothing
gabor except using CPU time.

That sounds quite odd...  Unfortunately, I've no VAX/VMS account (only
a Alpha/VMS one), so I can't verify or fix.  Is there any way you can
help us?

Cheers,
Richard

--
Richard Levitte rich...@levitte.org
   http://richard.levitte.org/

Life is a tremendous celebration - and I'm invited!
-- from a friend's blog, translated from Swedish


__
OpenSSL Project http://www.openssl.org
User Support Mailing Listopenssl-users@openssl.org
Automated List Manager   majord...@openssl.org


RE: compiling 1.0.0-beta2 on OpenVMS

2009-05-13 Thread Richard Whalen
Typically it's the optimizer that causes the problem.  Try compiling the source 
with /NOOPTIMIZE. 

-Original Message-
From: owner-openssl-us...@openssl.org [mailto:owner-openssl-us...@openssl.org] 
On Behalf Of Bérczi Gábor
Sent: Wednesday, May 13, 2009 7:02 AM
To: openssl-users@openssl.org
Subject: Re: compiling 1.0.0-beta2 on OpenVMS

I can certainly provide a suitable account, if that helps, just let me  
know.

On May 13, 2009, at 8:09 AM, Richard Levitte wrote:

 In message af6e8d0b-23a6-422e-a699-b8c61c632...@berczi.be on Tue,  
 12 May 2009 22:58:35 +0200, Bérczi Gábor ga...@berczi.be said:

 gabor Latest beta version doesn't compile on VAX/VMS (with DEC C).
 gabor Compilation just hangs at seed.c, doing absolutely nothing
 gabor except using CPU time.

 That sounds quite odd...  Unfortunately, I've no VAX/VMS account (only
 a Alpha/VMS one), so I can't verify or fix.  Is there any way you can
 help us?

 Cheers,
 Richard

 -- 
 Richard Levitte rich...@levitte.org
http://richard.levitte.org/

 Life is a tremendous celebration - and I'm invited!
 -- from a friend's blog, translated from Swedish

__
OpenSSL Project http://www.openssl.org
User Support Mailing Listopenssl-users@openssl.org
Automated List Manager   majord...@openssl.org

__
OpenSSL Project http://www.openssl.org
User Support Mailing Listopenssl-users@openssl.org
Automated List Manager   majord...@openssl.org