簡體   English   中英

無法為“ Unix網絡編程:進程間通信”構建源代碼

[英]Can't build source code for “Unix Network Programming: Interprocess Communication”

我正在使用Linux Mint 13,正在學習《 Unix網絡編程:進程間通信》一書。 我下載了該書的源代碼-http: //www.kohala.com/start/unpv22e/unpv22e.html-並按照說明進行了操作。

首先,我在基本目錄中運行了./configure

然后,我進入lib目錄並運行make。 這給出了以下錯誤-

gcc -c  "/home/linux/Code/c/unix_network_programming/main.c" -g  -o ./Debug/main.o "-I." "-I." 
In file included from /usr/lib/gcc/i686-linux-gnu/4.6/include/stdint.h:3:0,
                 from /usr/include/netinet/in.h:24,
                 from /usr/include/rpc/types.h:91,
                 from /usr/include/rpc/rpc.h:38,
                 from /home/linux/Code/c/unix_network_programming/unpipc.h:115,
                 from /home/linux/Code/c/unix_network_programming/main.c:2:
/usr/include/stdint.h:49:24: error: duplicate ‘unsigned’
/usr/include/stdint.h:49:24: error: two or more data types in declaration specifiers
/usr/include/stdint.h:50:28: error: duplicate ‘unsigned’
/usr/include/stdint.h:50:28: error: duplicate ‘short’
/usr/include/stdint.h:52:23: error: duplicate ‘unsigned’
/usr/include/stdint.h:52:23: error: two or more data types in declaration specifiers

這是出現錯誤的文件-

#ifndef _GCC_WRAP_STDINT_H
#if __STDC_HOSTED__
# include_next <stdint.h>
#else
# include "stdint-gcc.h"
#endif
#define _GCC_WRAP_STDINT_H
#endif

關於C的經驗很少,您如何解決此錯誤的任何想法?

應用以下輕微討厭的補丁:

diff -U 3 ./aclocal.m4 ./aclocal.m4
--- ./aclocal.m4       1997-10-10 22:45:46.000000000 +0100
+++ ./aclocal.m4        2013-03-25 17:35:22.287397177 +0000
@@ -31,6 +31,7 @@
                AC_TRY_COMPILE(
 [
 #include       "confdefs.h"    /* the header built by configure so far */
+#include <stdint.h>
 #ifdef HAVE_SYS_TYPES_H
 #  include     <sys/types.h>
 #endif
diff -U 3 ../unpv22e/config.h.in ./config.h.in
--- ./config.h.in      1998-06-10 18:26:41.000000000 +0100
+++ ./config.h.in       2013-03-25 17:42:18.788139903 +0000
@@ -2,6 +2,7 @@
 #undef CPU_VENDOR_OS

 /* *INDENT-OFF* */
+#undef HAVE_STDINT_H
 #undef HAVE_DOOR_H                             /* <door.h> */
 #undef HAVE_MQUEUE_H                           /* <mqueue.h> */
 #undef HAVE_POLL_H                             /* <poll.h> */
@@ -49,6 +50,9 @@
 #undef HAVE_DEV_ZERO

 /* Define the following to the appropriate datatype, if necessary */
+#ifdef HAVE_STDINT_H
+#include <stdint.h>
+#endif
 #undef int8_t                          /* <sys/types.h> */
 #undef int16_t                         /* <sys/types.h> */
 #undef int32_t                         /* <sys/types.h> */
diff -U 3 ../unpv22e/configure.in ./configure.in
--- ./configure.in     1998-06-06 22:42:29.000000000 +0100
+++ ./configure.in      2013-03-25 17:38:14.555324559 +0000
@@ -105,7 +105,7 @@
 dnl but used in "lib/wrapunix.c".
 dnl
 AC_HEADER_STDC
-AC_CHECK_HEADERS(sys/types.h sys/time.h time.h errno.h fcntl.h limits.h signal.h stdio.h stdlib.h string.h sys/stat.h unistd.h sys/wait.h sys/ipc.h sys/msg.h sys/sem.h sys/shm.h mqueue.h semaphore.h sys/mman.h sys/select.h poll.h stropts.h strings.h sys/ioctl.h sys/filio.h pthread.h door.h rpc/rpc.h sys/sysctl.h)
+AC_CHECK_HEADERS(stdint.h sys/types.h sys/time.h time.h errno.h fcntl.h limits.h signal.h stdio.h stdlib.h string.h sys/stat.h unistd.h sys/wait.h sys/ipc.h sys/msg.h sys/sem.h sys/shm.h mqueue.h semaphore.h sys/mman.h sys/select.h poll.h stropts.h strings.h sys/ioctl.h sys/filio.h pthread.h door.h rpc/rpc.h sys/sysctl.h)

 dnl ##################################################################
 dnl Checks for typedefs.

然后運行autoconf(使用autoconf2.13而不是較新的版本),刪除config.cache,然后重試。

只需在config.h中注釋掉這些行(首先執行./configure ):

#define uint8_t unsigned char         /* <sys/types.h> */
#define uint16_t unsigned short       /* <sys/types.h> */
#define uint32_t unsigned int         /* <sys/types.h> */

這個對我有用:)。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM