Changeset 162 for python


Ignore:
Timestamp:
Apr 25, 2011, 12:05:00 AM (14 years ago)
Author:
Yuri Dario
Message:

python: fix detection of sizeof() constants, fixes largefile support with latest gcc 4.4.x.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • python/trunk/configure

    r13 r162  
    1271412714  if (!f) exit(1);
    1271512715  fprintf(f, "%d\n", sizeof(off_t));
     12716  fclose(f);
    1271612717  exit(0);
    1271712718}
     
    1280512806  if (!f) exit(1);
    1280612807  fprintf(f, "%d\n", sizeof(time_t));
     12808  fclose(f);
    1280712809  exit(0);
    1280812810}
     
    1293112933    if (!f) exit(1);
    1293212934    fprintf(f, "%d\n", sizeof(pthread_t));
     12935    fclose(f);
    1293312936    exit(0);
    1293412937  }
Note: See TracChangeset for help on using the changeset viewer.