Ticket #36364: gcc47_fix_nanosleep_test.diff

File gcc47_fix_nanosleep_test.diff, 590 bytes (added by howarth@…, 12 years ago)

patch to fix libstdc++-v3's configure check for nanosleep()

  • libstdc++-v3/configure

    old new  
    1984019840{
    1984119841#if _POSIX_TIMERS > 0
    1984219842          timespec tp;
     19843         #else
     19844          struct timespec tp;
    1984319845         #endif
    1984419846          nanosleep(&tp, 0);
    1984519847
  • libstdc++-v3/acinclude.m4

    old new  
    12251225        ],
    12261226        [#if _POSIX_TIMERS > 0
    12271227          timespec tp;
     1228         #else
     1229          struct timespec tp;
    12281230         #endif
    12291231          nanosleep(&tp, 0);
    12301232        ], [ac_has_nanosleep=yes], [ac_has_nanosleep=no])