Browse Source

Work-around to not use IPv6 for braindead unusable IPv6 implementations

pull/2/head
Rémi Denis-Courmont 20 years ago
parent
commit
8f4473f79f
  1. 5
      src/network/rootwrap.c

5
src/network/rootwrap.c

@ -52,6 +52,11 @@
#include <netinet/in.h>
#include <pthread.h>
#if defined (AF_INET6) && !defined (IPV6_V6ONLY)
# warning Uho, your IPv6 support is broken and has been disabled. Fix your C library.
# undef AF_INET6
#endif
/*#ifndef HAVE_CLEARENV
extern char **environ;

Loading…
Cancel
Save