Changeset 85

Show
Ignore:
Timestamp:
01/15/07 00:07:55 (2 years ago)
Author:
KirkMcDonald
Message:

Minor Python header changes.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/infrastructure/python/2.4/python.d

    r69 r85  
    1111module python; 
    1212 
    13 version (Pyd_with_Tango) { 
     13version (build) { 
     14    version (DigitalMars) { 
     15        version (Windows) { 
     16            pragma(link, "python24_digitalmars"); 
     17        } 
     18    } else { 
     19        pragma(link, "python2.4"); 
     20    } 
     21
     22 
     23version (Tango) { 
    1424    import tango.stdc.stdio; 
    1525    import tango.stdc.time; 
  • trunk/infrastructure/python/2.5/python.d

    r69 r85  
    1212module python; 
    1313 
    14 version (Pyd_with_Tango) { 
     14version (build) { 
     15    version (DigitalMars) { 
     16        version (Windows) { 
     17            pragma(link, "python25_digitalmars"); 
     18        } 
     19    } else { 
     20        pragma(link, "python2.5"); 
     21    } 
     22
     23 
     24version (Tango) { 
    1525    import tango.stdc.stdio; 
    1626    import tango.stdc.time;