1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00

Borland C++ doesnt have struct sockaddr_storage.

This commit is contained in:
Guenter Knauf 2011-01-11 17:40:13 +01:00
parent 08a65b10fb
commit 03ea06b8e3
2 changed files with 2 additions and 2 deletions

View File

@ -357,7 +357,7 @@
/* ---------------------------------------------------------------- */ /* ---------------------------------------------------------------- */
/* Define this if you have struct sockaddr_storage */ /* Define this if you have struct sockaddr_storage */
#ifndef __SALFORDC__ #if !(defined(__SALFORDC__) || defined(__BORLANDC__))
#define HAVE_STRUCT_SOCKADDR_STORAGE 1 #define HAVE_STRUCT_SOCKADDR_STORAGE 1
#endif #endif

View File

@ -228,7 +228,7 @@
/* ---------------------------------------------------------------- */ /* ---------------------------------------------------------------- */
/* Define this if you have struct sockaddr_storage */ /* Define this if you have struct sockaddr_storage */
#ifndef __SALFORDC__ #if !(defined(__SALFORDC__) || defined(__BORLANDC__))
#define HAVE_STRUCT_SOCKADDR_STORAGE 1 #define HAVE_STRUCT_SOCKADDR_STORAGE 1
#endif #endif