2017-07-23 96 views
-1

在我的Raspberry Pi中編譯SDL2時出現錯誤,我複製粘貼下面的日誌。在Raspberry Pi上編譯SDL2時出錯3

/bin/bash build-scripts/updaterev.sh 
    CC  build/SDL_sndioaudio.lo 
/home/luca/SDL2/src/audio/sndio/SDL_sndioaudio.c: In function 'SNDIO_CaptureFromDevice': 
/home/luca/SDL2/src/audio/sndio/SDL_sndioaudio.c:187:46: error: 'INFTIM' undeclared (first use in this function) 
      || poll(this->hidden->pfd, nfds, INFTIM) < 0) { 
              ^
/home/luca/SDL2/src/audio/sndio/SDL_sndioaudio.c:187:46: 
note: each undeclared identifier is reported only once for each function it appears in 

我該如何解決這個問題?我在C語言中並不流利,曾嘗試查看過手冊,它說INFTIM也可能不在glibc中,這可能是它沒有聲明的原因。

編輯投票結束的人:如果不清楚,請展示你的臉並要求我澄清,而不是發送垃圾郵件。

回答

1
man poll 

說:

Some implementations define the nonstandard constant INFTIM with the value -1 

所以我添加

#define INFTIM -1 

在源文件的頂部。不知道這是最好的方法,但它的工作原理。