0

libossのファイルを含むプログラムをコンパイルしようとしていますが、コンパイルすると次のエラーが発生します。

In file included from test.c:1:
/opt/local/include/liboss/soundcard.h:342: error: static declaration of ‘ioctl’ follows non-static declaration
/usr/include/sys/ioctl.h:97: error: previous declaration of ‘ioctl’ was here
/opt/local/include/liboss/soundcard.h:353: error: static declaration of ‘open’ follows non-static declaration
/usr/include/sys/fcntl.h:464: error: previous declaration of ‘open’ was here
/opt/local/include/liboss/soundcard.h:363: error: static declaration of ‘close’ follows non-static declaration
/usr/include/unistd.h:476: error: previous declaration of ‘close’ was here
/opt/local/include/liboss/soundcard.h:366: error: conflicting types for ‘write’
/usr/include/unistd.h:535: error: previous declaration of ‘write’ was here

最初のエラーが発生する行はこれです。

@サウンドカード.h

static inline int LIBOSS_IOCTL (int x, unsigned long y,...)
{
    int result;

    va_list l;
    va_start(l,y);
    result = liboss_ioctl(x,y,l);
    va_end (l);
    return result;
}

@ ioctl.h

__BEGIN_DECLS
int ioctl(int, unsigned long, ...);
__END_DECLS

これが問題にならないようにsoundcard.hにモンキーパッチを適用する方法はありますか?

Thnx!A。

仕様:Mac OSX 10.7.4、gcc i686-apple-darwin11-llvm-gcc-4.2(GCC)4.2.1

4

2 に答える 2

0

カーネルがそれらをサポートせずにOSS操作を提供するように関数をliboss再定義することにより、非ネイティブなシステムでoss互換サウンドカードインターフェイスを提供しようとしているようです。この場合、(またはそれを含む可能性のあるヘッダー) が、.ioctlioctlsys/ioctl.hsoundcard.h

于 2012-11-28T00:02:36.983 に答える
0

、、およびに追加staticするだけです(そして、コンパイル後にこれらの変更を元に戻します)。/usr/include/sys/ioctl.h:97/usr/include/sys/fcntl.h:464/usr/include/unistd.h:476/usr/include/unistd.h:535

/opt/local/include/liboss/soundcard.h:366置き換えintますssize_t

# add static
sudo nano +97 /usr/include/sys/ioctl.h
- int  ioctl(int, unsigned long, ...);
+ static int  ioctl(int, unsigned long, ...);

# replace int by ssize_t
sudo nano +366 /opt/local/include/liboss/soundcard.h
- static inline int LIBOSS_WRITE (int x, const void *y, size_t l)
+ static inline ssize_t LIBOSS_WRITE (int x, const void *y, size_t l)
于 2014-10-31T15:51:04.817 に答える