配置好动态链接库或者静态链接库 1,下载UNIX网络编程书的头文件及示例源码unpv13e 2 按照readme来编译 Execute the following from the src/ directory: ./configure # try to figure out all implementation differences cd lib # build the basic library that all programs need make …
建议 unpv13e/README看一下,忽略一下内容 ===================================================================== 操作进入uppv13e/ ./configure cd lib make cd ../libfree make cd ../liggai make cd .. vim lib/unp.h // 修改 #include "../config.h" 为 #include "config.…
在ubuntu下 首先:在unpv13e文件加下 ./configure cd lib make cd ../libfree make cd ../liggai make cd .. vim lib/nup.h // 改动 #include "../config.h" 为 #include "config.h" / 拷贝头文件 sudo cp config.h /usr/local/include sudo cp lib/unp.h /usr/local/inclu…
<UNIX网络编程 卷1>的源码可以从www.unpbook.com下载得到.解压之后的目录为unpv13e. 详细步骤 编译 进入unpv13e目录,按如下步骤编译: ./configure cd lib make // 可能遇到问题:redefinition of ‘struct in_pktinfo’ cd ../libfree make cd ../libroute make //这一步可能会出错,可忽略,只是表示你的系统不支持 4.4BSD,并不影响对该书的学习 cd ../libg…