Changeset 4799
- Timestamp:
- 06/23/09 12:14:56 (5 months ago)
- Files:
-
- 1 modified
-
mpich2/trunk/winconfigure.wsf (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
mpich2/trunk/winconfigure.wsf
r4652 r4799 222 222 bf77_name_upper = True 223 223 bf77_name_mixed = False 224 b 77_name_mixed_uscore = False224 bf77_name_mixed_uscore = False 225 225 unhandled_definitions = "" 226 226 unhandled_definitions_count = 0 … … 320 320 bf77_name_mixed = True 321 321 ElseIf argValue = "--f77_name_mixed_uscore" Then 322 b 77_name_mixed_uscore = True322 bf77_name_mixed_uscore = True 323 323 ElseIf argValue = "--defmsg" Then 324 324 GenerateDefmsg() … … 2539 2539 End If 2540 2540 Case "F77_NAME_LOWER_USCORE" 2541 If b 77_name_lower_uscore Then2541 If bf77_name_lower_uscore Then 2542 2542 fout.WriteLine("#define F77_NAME_LOWER_USCORE") 2543 2543 Else … … 2551 2551 End If 2552 2552 Case "F77_NAME_UPPER" 2553 if b 77_name_upper Then2553 if bf77_name_upper Then 2554 2554 fout.WriteLine("#define F77_NAME_UPPER") 2555 2555 Else … … 2557 2557 End If 2558 2558 Case "F77_NAME_MIXED" 2559 if b 77_name_mixed Then2559 if bf77_name_mixed Then 2560 2560 fout.WriteLine("#define F77_NAME_MIXED 1") 2561 2561 Else … … 2563 2563 End If 2564 2564 Case "F77_NAME_MIXED_USCORE" 2565 if b 77_name_mixed_uscore Then2565 if bf77_name_mixed_uscore Then 2566 2566 fout.WriteLine("#define F77_NAME_MIXED_USCORE 1") 2567 2567 Else
