summaryrefslogtreecommitdiff
path: root/docs/port/README
diff options
context:
space:
mode:
Diffstat (limited to 'docs/port/README')
-rw-r--r--docs/port/README6
1 files changed, 5 insertions, 1 deletions
diff --git a/docs/port/README b/docs/port/README
index aa96234..324cfe5 100644
--- a/docs/port/README
+++ b/docs/port/README
@@ -49,6 +49,10 @@ Currently there are the following definitions which must be set:
stub
- HAVE_ITOA: handy function, we define it as on Windows (as the char*
return value is more handy than void)
+- HAVE_GETADDRINFO: if we have the GAI library functions getaddrinfo,
+ freeaddrinfo and the counterpart getnameinfo, as well as the error
+ message function gai_strerror
+- HAVE_GAI_STRERROR_R: if we have a thread-safe version of gai_strerror
Defines in 'port/sys_internal.h'
--------------------------------
@@ -73,7 +77,7 @@ How to use the porting layer in your code
-----------------------------------------
Don't include system header files if there is a similar file in the
-'ports' subdir:
+'port' subdir:
#include "port/limits.h"
#include "port/stdbool.h"