安装mwget的时候报错
httpplugin.cpp: In member function ‘virtual int HttpPlugin::get_info(Task*)’:
httpplugin.cpp:105:8: error: ‘strcmp’ was not declared in this scope
解决方法
找到源码的 src/httpplugin.cpp //根据报错的具体文件修改,添加以下内容:
#include <string.h>
#include <string>
using std::string;
除此之外
ftpplugin.cpp 还有 downloader.cpp 都有可能会遇到这个问题,修改的方法相同
参考:https://blog.csdn.net/lihengchang0212/article/details/89946235
此外在安装 mwget的时候会遇到 openssl , intltool 等问题
openssl:
sudo apt-get install libssl-dev
如果还不能解决就需下载源码编译安装,然后配置一下 PKG_CONFIG_PATH
intltool 如果报错的话源码编译安装,然后配置一下 PATH