initial commit

This commit is contained in:
mikhail "synzr" 2025-12-25 01:37:49 +05:00
commit 9d20827c46
2469 changed files with 470994 additions and 0 deletions

30
qcm/ghbnr.qcm Normal file
View file

@ -0,0 +1,30 @@
/*
-----BEGIN QCMOD-----
name: gethostbyname_r()
-----END QCMOD-----
*/
class qc_ghbnr : public ConfObj
{
public:
qc_ghbnr(Conf *c) : ConfObj(c) { }
QString name() const { return "gethostbyname_r()"; }
QString shortname() const { return "ghbnr"; }
bool exec()
{
QString str =
"#include<netdb.h>\n"
"\n"
"int main()\n"
"{\n"
" gethostbyname_r(\"\", 0, 0, 0, 0, 0);\n"
" return 0;\n"
"}\n";
if (!conf->doCompileAndLink(str, QStringList(), QString(), QString(), NULL))
return false;
conf->addDefine("HAVE_GETHOSTBYNAME_R");
return true;
}
};