[Python-bugs-list] [ python-Feature Requests-723749 ] Compilation under Tru64

SourceForge.net noreply@sourceforge.net
Thu, 24 Apr 2003 08:56:11 -0700


Feature Requests item #723749, was opened at 2003-04-18 11:34
Message generated for change (Comment added) made by mdcowles
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=355470&aid=723749&group_id=5470

Category: Build
Group: None
Status: Open
Resolution: None
Priority: 5
Submitted By: Matthew Cowles (mdcowles)
Assigned to: Nobody/Anonymous (nobody)
Summary: Compilation under Tru64

Initial Comment:
[From a question sent to python-help]

For Python 2.2.2 and 2.3a2, under DEC OSFV1 True64 Unix
and gcc 3.0.4:

uname -a yields
OSF1 ms-ax1.migen.bio.example V5.1 1885 alpha

the posix module needs:

< #     define STAT _F64_stat
< #     define FSTAT _F64_fstat
---
> #     define STAT stat
> #     define FSTAT fstat
3384c3384
<       return posix_do_stat(self, args, "et:lstat",
_F64_lstat);
---
>       return posix_do_stat(self, args, "et:lstat",
lstat);


----------------------------------------------------------------------

>Comment By: Matthew Cowles (mdcowles)
Date: 2003-04-24 10:56

Message:
Logged In: YES 
user_id=198518

Yes, it's quite possible that it has been fixed in CVS. The
patch is from the original poster to python-help and if it
won't apply, I think it's likely that it has been fixed.

----------------------------------------------------------------------

Comment By: Neal Norwitz (nnorwitz)
Date: 2003-04-23 21:04

Message:
Logged In: YES 
user_id=33168

I don't recognize the code you are referring to in either
2.2.3 or 2.3.  Is it possible this has been fixed in CVS?  I
was able to build fine on Tru64 5.1 w/cc.  I don't have gcc
on the box though.

----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=355470&aid=723749&group_id=5470