BeOS does not support IPv6, and never will.

svn path=/trunk/netsurf/; revision=11014
This commit is contained in:
François Revel 2010-12-05 19:16:49 +00:00
parent 35daa32e80
commit afc6a62b7a
2 changed files with 5 additions and 0 deletions

View File

@ -91,6 +91,10 @@ char *realpath(const char *path, char *resolved_path);
#if defined(__HAIKU__)
/*not yet: #define WITH_MMAP*/
#endif
#if defined(__BEOS__)
/* Not even BONE has it. */
#define NO_IPV6 1
#endif
#else
/* We're likely to have a working mmap() */
#define WITH_MMAP

View File

@ -33,6 +33,7 @@
#include <unistd.h>
#include <arpa/inet.h>
#include "curl/curl.h"
#include "utils/config.h"
#include "utils/log.h"
#include "utils/url.h"
#include "utils/utils.h"