UNIX网络编程 卷1:套接字联网API -- 编译

UNIX网络编程 卷1:套接字联网API -- 编译



tar zxvf unpv13e.tar.gz

./configure

cd lib
make

cd ../libfree
make

cd ../libgai
make

cd ..   // 回到主目录

// 修改unp.h
gedit lib/unp.h    // 修改 #include "../config.h" 为 #include "config.h"

// 拷贝头文件
sudo cp config.h /usr/ local/include
sudo cp lib/unp.h /usr/ local/include

// 拷贝库文件
sudo cp libunp.a /usr/ local/lib

// 下来我们就可以编译书中的一些例子了,可以使用库文件链接 -lunp


我是ubuntu 64 

cd ../libfree 
make 
inet_ntop.c:61: error: argument 'size' doesn't match prototype 
/usr/include/arpa/inet.h:153: error: prototype declaration 

inet_ntop.c第61行 size_t size ->改成 socklen_t size 



下载链接:
http://www.ituring.com.cn/book/164 
来源:
http://www.cppfans.org/1411.html 

出错请看这里:
http://bamboobee.iteye.com/blog/1706553

你可能感兴趣的:(UNIX网络编程 卷1:套接字联网API -- 编译)