Changeset 4504

Show
Ignore:
Timestamp:
05/11/09 13:27:42 (10 months ago)
Author:
jayesh
Message:

Handling unhandled defns in smpd configure in windows configure script

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • mpich2/trunk/winconfigure.wsf

    r4502 r4504  
    21082108                                Case "HAVE_PUTENV" 
    21092109                                        fout.WriteLine("#define HAVE_PUTENV 1") 
     2110                                Case "HAVE_SETENV" 
     2111                                        fout.WriteLine("/* #undef HAVE_SETENV */") 
    21102112                                Case "HAVE_SELECT" 
    21112113                                        fout.WriteLine("#define HAVE_SELECT 1") 
     
    21202122                                Case "HAVE_ERRNO_H" 
    21212123                                        fout.WriteLine("#define HAVE_ERRNO_H 1") 
     2124                                Case "HAVE_MATH_H" 
     2125                                        fout.WriteLine("#define HAVE_MATH_H 1") 
    21222126                                Case "HAVE_FCNTL_H" 
    21232127                                        fout.WriteLine("#define HAVE_FCNTL_H 1") 
     
    21572161                                Case "HAVE_PRAGMA_WEAK" 
    21582162                                        fout.WriteLine("/* #undef HAVE_PRAGMA_WEAK */") 
     2163                                Case "HAVE_SIGACTION" 
     2164                                        fout.WriteLine("/* #undef HAVE_SIGACTION */") 
    21592165                                Case "HAVE_PTHREAD_CREATE" 
    21602166                                        fout.WriteLine("/* #undef HAVE_PTHREAD_CREATE */") 
     2167                                Case "USE_PTHREAD_STDIN_REDIRECTION" 
     2168                                        fout.WriteLine("/* #undef USE_PTHREAD_STDIN_REDIRECTION */") 
     2169                                Case "HAVE_TERMIOS_H" 
     2170                                        fout.WriteLine("/* #undef HAVE_TERMIOS_H */") 
    21612171                                Case "HAVE_STDINT_H" 
    21622172                                        fout.WriteLine("/* #undef HAVE_STDINT_H */") 
     
    32303240                                        ' SMPD does not support PMI2 
    32313241                                        fout.WriteLine("/* #undef USE_PMI2_API */") 
     3242                                Case "HAVE_MD5_H" 
     3243                                        fout.WriteLine("/* #undef HAVE_MD5_H */") 
     3244                                Case "HAVE_OPENSSL_MD5_H" 
     3245                                        fout.WriteLine("/* #undef HAVE_OPENSSL_MD5_H */") 
     3246                                Case "HAVE_MD5" 
     3247                                        fout.WriteLine("/* #undef HAVE_MD5 */") 
     3248                                Case "HAVE_MD5_CALC" 
     3249                                        fout.WriteLine("/* #undef HAVE_MD5_CALC */") 
    32323250                                Case Else 
    32333251                                        'MsgBox("Unhandled definition <" & define & ">") 
     
    49624980' 
    49634981If f.FileExists("src\pm\smpd\smpdconf.h.in") Then 
    4964         cEcho "Creating src\pm\smpd\smpdconf.h" 
     4982        printMsg "VERBOSE", "Creating src\pm\smpd\smpdconf.h" 
    49654983        Set fout = f.CreateTextFile("src\pm\smpd\smpdconf.h") 
    49664984        Call WriteHeader(fout, "smpd_")