diff options
author | Daniel Stenberg <daniel@haxx.se> | 2003-10-17 06:59:48 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2003-10-17 06:59:48 +0000 |
commit | 722ece40550f2b6c505b39726f9dc8856ecd924b (patch) | |
tree | e1f713f896dff32cbec407a12c2c4364165ae64e | |
parent | cc09e31acf2984a81f35e4d2d237a0086a76b7ff (diff) |
define HAVE_SYS_SOCKET_H if that file is present. This is needed when we
#include "../lib/memdebug.h" for memory debug builds.
-rw-r--r-- | src/config.h.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/config.h.in b/src/config.h.in index 4720a1e7b..7f6efc27e 100644 --- a/src/config.h.in +++ b/src/config.h.in @@ -26,6 +26,9 @@ /* Define if you have the <sys/select.h> header file */ #undef HAVE_SYS_SELECT_H +/* Define if you have the <sys/socket.h> header file */ +#undef HAVE_SYS_SOCKET_H + /* Define if you have the <sys/poll.h> header file */ #undef HAVE_SYS_POLL_H |