Unix网络编程 源代码编译问题

来源:互联网 发布:inode智能客户端mac 编辑:程序博客网 时间:2024/05/22 14:29
 wan@wan-VirtualBox:~/Projects/UnixNetworkProgramming/unpv22e/lib$ make
gcc -g -O2 -D_REENTRANT -Wall -D_POSIX_PTHREAD_SEMANTICS   -c -o daemon_inetd.o daemon_inetd.c
In file included from unpipc.h:7:0,
                 from daemon_inetd.c:1:
../config.h:56:17: error: duplicate ‘unsigned’
 #define uint8_t unsigned char    /* <sys/types.h> */
                 ^
../config.h:56:26: error: two or more data types in declaration specifiers
 #define uint8_t unsigned char    /* <sys/types.h> */
                          ^
../config.h:57:18: error: duplicate ‘unsigned’
 #define uint16_t unsigned short    /* <sys/types.h> */
                  ^
../config.h:57:27: error: duplicate ‘short’
 #define uint16_t unsigned short    /* <sys/types.h> */
                           ^
../config.h:58:18: error: duplicate ‘unsigned’
 #define uint32_t unsigned int    /* <sys/types.h> */
                  ^
../config.h:58:27: error: two or more data types in declaration specifiers
 #define uint32_t unsigned int    /* <sys/types.h> */
                           ^
<builtin>: recipe for target 'daemon_inetd.o' failed
make: *** [daemon_inetd.o] Error 1
wan@wan-VirtualBox:~/Projects/UnixNetworkProgramming/unpv22e/lib$ 

将config.h中一下代码注释即可,重新编译
 /* #undef       int32_t */                              /* <sys/types.h> */
//#define       uint8_t unsigned char                           /* <sys/types.h> */
//#define       uint16_t unsigned short                         /* <sys/types.h> */
//#
define       uint32_t unsigned int                           /* <sys/types.h> */
/* #undef       size_t */                               /* <sys/types.h> */
/* #undef       ssize_t */                              /* <sys/types.h> */

0 0
原创粉丝点击