Skip to content
Snippets Groups Projects
Commit 6beb766e authored by Taco Hoekwater's avatar Taco Hoekwater
Browse files

fix luatex on older linux32 (missing EAI_OVERFLOW)

parent b618db7b
Branches
Tags
No related merge requests found
......@@ -436,7 +436,9 @@ const char *socket_gaistrerror(int err) {
case EAI_MEMORY: return "memory allocation failure";
case EAI_NONAME:
return "host or service not provided, or not known";
#ifdef EAI_OVERFLOW
case EAI_OVERFLOW: return "argument buffer overflow";
#endif
#ifdef EAI_PROTOCOL
case EAI_PROTOCOL: return "resolved protocol is unknown";
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment