Larbin 配置

ubuntu下

 

1. 需要安装makedepend          sudo apt-get install xutils-dev

2. 把adns文件夹下internal.h文件569-571 注释掉

3. 把所有#include<iostream.h> 替换为#include<iostream> 并且加上using namespace std;

    还有一个简单的方法,就是从/usr/include/c++里面copy一份iostream到larbin的src文件夹下面。然后修改为iostream.h,并且在里面加上一句话 using namespace std;

4. ./src/fetch/file.h中的第105行  inline Vector<char> *html::getLinks () { return &links; }改为inline Vector<char> *getLinks () { return &links; }

 

然后./configure make   ok


你可能感兴趣的:(html,ubuntu,iostream)