Ticket #36364: gcc48_fix_nanosleep_test.diff

File gcc48_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  
    1978919789{
    1979019790#if _POSIX_TIMERS > 0
    1979119791          timespec tp;
     19792         #else
     19793          struct timespec tp;
    1979219794         #endif
    1979319795          nanosleep(&tp, 0);
    1979419796
  • libstdc++-v3/acinclude.m4

    old new  
    12511251        ],
    12521252        [#if _POSIX_TIMERS > 0
    12531253          timespec tp;
     1254         #else
     1255          struct timespec tp;
    12541256         #endif
    12551257          nanosleep(&tp, 0);
    12561258        ], [ac_has_nanosleep=yes], [ac_has_nanosleep=no])