Changeset 5685

Show
Ignore:
Timestamp:
11/04/09 12:34:51 (3 weeks ago)
Author:
jayesh
Message:

Handling unhandled defns - added in r5666 - in windows configure script

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • mpich2/trunk/winconfigure.wsf

    r5684 r5685  
    23392339                                        ' Needed only for SOLARIS machines 
    23402340                                        fout.WriteLine("/* #undef _UINT64_T */") 
     2341                                Case "u_char" 
     2342                                        ' Needed only on unix builds where --enable-strict 
     2343                                        ' option removes these types 
     2344                                        fout.WriteLine("/* #undef u_char */") 
     2345                                Case "u_int" 
     2346                                        ' Needed only on unix builds where --enable-strict 
     2347                                        ' option removes these types 
     2348                                        fout.WriteLine("/* #undef u_int */") 
     2349                                Case "u_long" 
     2350                                        ' Needed only on unix builds where --enable-strict 
     2351                                        ' option removes these types 
     2352                                        fout.WriteLine("/* #undef u_long */") 
     2353                                Case "u_short" 
     2354                                        ' Needed only on unix builds where --enable-strict 
     2355                                        ' option removes these types 
     2356                                        fout.WriteLine("/* #undef u_short */") 
    23412357                                Case "POINTERINT_t" 
    23422358                                        If b64 Then 
     
    25052521                                Case "HAVE_SYS_TYPES_H" 
    25062522                                        fout.WriteLine("#define HAVE_SYS_TYPES_H 1") 
     2523                                Case "HAVE_SYS_ATTR_H" 
     2524                                        fout.WriteLine("/* #undef HAVE_SYS_ATTR_H */") 
    25072525                                Case "HAVE_THR_CREATE" 
    25082526                                        fout.WriteLine("/* #undef HAVE_THR_CREATE */")