kumquat-buildroot/package/x11vnc/0001-ipv6.patch
Peter Korsgaard 298cd8eaa2 package/*: rename patches according to the new policy
Autogenerated from rename-patch.py (http://patchwork.ozlabs.org/patch/403345)

Signed-off-by: Samuel Martin <s.martin49@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2015-02-03 14:52:56 +01:00

26 lines
733 B
Diff

[PATCH] fix build on uClibc without IPv6 support
Some systems (like uClibc) defines AF_INET6 even when configured without
IPv6 support, so don't use that to decide if IPv6 support should be enabled.
Instead use the X11VNC_IPV6 define like elsewhere in the code.
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
x11vnc/enc.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Index: x11vnc-0.9.13/x11vnc/enc.h
===================================================================
--- x11vnc-0.9.13.orig/x11vnc/enc.h
+++ x11vnc-0.9.13/x11vnc/enc.h
@@ -1733,7 +1733,7 @@
}
try6:
-#ifdef AF_INET6
+#if X11VNC_IPV6
if (!getenv("ULTRAVNC_DSM_HELPER_NOIPV6")) {
struct sockaddr_in6 sin;
int one = 1, sock = -1;