我的平台(MinGW)未在others中定义宏ETIMEDOUT
。在另一个问题中建议可以使用GnuLib修复此问题。
我想这样做,但似乎任何希望使用GnuLib的项目也必须使用Autotools。我的项目只有一个Makefile。
如何在不添加Autotools的情况下使用GnuLib补充我的平台?
答案 0 :(得分:2)
您可以更轻松,只需在头文件中添加以下内容,而不是像gnulib那样..
#ifndef ETIMTDOUT
#define ETIMEDOUT 10060
//if you have WSAETIMEDOUT defined, then you can just
//#define ETIMEOUT WSAETIMEDOUT
#endif
答案 1 :(得分:0)
Paul Eggert 写了a patch to use gnulib without automake。自2017-03-13以来,它可在主分支上使用。只需使用gnulib-tool
致电--gnu-make
。