apue make的时候出现timex.h错误

错误提示:

gcc -DLINUX -ansi -I/home/alex/apue/apue.2e/include -Wall -D_GNU_SOURCE -DDEBUG  -c -o printd.o printd.c
In file included from /usr/include/bits/time.h:86:0,
                 from /usr/include/time.h:42,
                 from /usr/include/pthread.h:26,
                 from printd.c:11:
/usr/include/bits/timex.h:31:7: 错误:expected ‘:’, ‘,’, ‘;’, ‘}’ or ‘__attribute__’ before ‘.’ token
make[2]: *** [printd.o] 错误 1
make[2]: 离开目录“/home/alex/apue/apue.2e/ipp”
make[1]: *** [linux] 错误 1
make[1]: 离开目录“/home/alex/apue/apue.2e”
make: *** [all] 错误 2

 

解决方法:

出现这个问题的原因是在timex.h的第31行出现了status的定义:
  int status;                /* clock command/status */

而文件apue.2e/ipp/ipp.h中有宏定义:
#define status u.st

这样编译的时候就出问题了,如编译提示:
expected ‘:’, ‘,’, ‘;’, ‘}’ or ‘__attribute__’ before ‘.’ token

解决方法是把ipp.h文件里的status改成其他名称,比如Status,再次编译,错误提示status神马的信息,找到status出错的位置,把它改为Status就行了。
此处我的status出错位置在printd.c的第977行中:
                        i = ntohs(hp->status);

 

来自http://bbs.chinaunix.net/forum.php?mod=viewthread&tid=3608387#442796-tsina-1-27-c11e49a98ffc44a754ab6c0a7fb5b298 感谢

posted on 2012-11-07 14:17  tianwang005  阅读(173)  评论(0)    收藏  举报

导航