1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-21 23:58:49 -05:00

Avoid Curl_if2ip() on Interix as well. Fix by Rodney.

This commit is contained in:
Daniel Stenberg 2004-01-16 07:09:28 +00:00
parent 80ef1bad86
commit a275365c72
2 changed files with 4 additions and 4 deletions

View File

@ -32,8 +32,8 @@
#include <unistd.h>
#endif
#if ! defined(WIN32) && ! defined(__BEOS__) && !defined(__CYGWIN32__) && \
! defined(__riscos__)
#if !defined(WIN32) && !defined(__BEOS__) && !defined(__CYGWIN32__) && \
!defined(__riscos__) && !defined(__INTERIX)
#ifdef HAVE_SYS_SOCKET_H
#include <sys/socket.h>

View File

@ -24,8 +24,8 @@
***************************************************************************/
#include "setup.h"
#if ! defined(WIN32) && ! defined(__BEOS__) && !defined(__CYGWIN32__) && \
! defined(__riscos__)
#if !defined(WIN32) && !defined(__BEOS__) && !defined(__CYGWIN32__) && \
!defined(__riscos__) !defined(__INTERIX)
extern char *Curl_if2ip(char *interface, char *buf, int buf_size);
#else
#define Curl_if2ip(a,b,c) NULL