2

今日、私は問題に直面しました-androidのndkにはSUN_LENマクロ(sys / un.h || linux / un.h)がありません。androidのヘッダーにパッチを適用したくないのですが、どうすればよいですか?

4

2 に答える 2

4

ヘッダーにパッチを適用せず、独自のファイルで定義してください。

#ifndef SUN_LEN //In case they fix it down the road
#define SUN_LEN(ptr) ((size_t) (((struct sockaddr_un *) 0)->sun_path) + strlen((ptr)->sun_path))
#endif
于 2012-09-27T19:09:27.557 に答える