Changeset 5628

Show
Ignore:
Timestamp:
10/29/09 20:55:34 (4 weeks ago)
Author:
jayesh
Message:

Fix the unhandled opa defn - sizeof opa ptr - on windows correctly. The fix added in r5621 was incorrect

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • mpich2/trunk/winconfigure.wsf

    r5621 r5628  
    22042204                    fout.WriteLine("#define OPA_SIZEOF_VOID_P 4") 
    22052205                End If 
    2206             Case "SIZEOF_OPA_PTR_T" 
    2207                 fout.WriteLine("#define SIZEOF_OPA_PTR_T sizeof(OPA_ptr_t)") 
    22082206            Case "inline" 
    22092207                fout.WriteLine("#define inline __inline") 
     
    35533551                                Case "NO_MINUS_C_MINUS_O" 
    35543552                                        fout.WriteLine("/* #undef NO_MINUS_C_MINUS_O */") 
     3553                                ' FIXME: The size of openpa ptr should not be hardcoded... 
     3554                                Case "SIZEOF_OPA_PTR_T" 
     3555                                        If b64 Then 
     3556                                            fout.WriteLine("#define SIZEOF_OPA_PTR_T 8") 
     3557                                        Else 
     3558                                            fout.WriteLine("#define SIZEOF_OPA_PTR_T 4") 
     3559                                        End if 
    35553560                                Case Else 
    35563561                                        'MsgBox("Unhandled definition <" & define & ">")