aboutsummaryrefslogtreecommitdiffstats
path: root/package/x11vnc/x11vnc-ipv6.patch
diff options
context:
space:
mode:
authorPeter Korsgaard <jacmet@sunsite.dk>2012-09-29 21:58:19 +0200
committerPeter Korsgaard <jacmet@sunsite.dk>2012-09-29 21:58:19 +0200
commit2410e3d243114f3509b8189ee4de7fe3c66c49db (patch)
tree3bd3be10f60655d1ab9d3496f84725a05b4861b1 /package/x11vnc/x11vnc-ipv6.patch
parentb86a86cfbbf72499b62e3b498001d97366bdb6d9 (diff)
downloadbuildroot-novena-2410e3d243114f3509b8189ee4de7fe3c66c49db.tar.gz
buildroot-novena-2410e3d243114f3509b8189ee4de7fe3c66c49db.zip
x11vnc: add optional dependencies
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/x11vnc/x11vnc-ipv6.patch')
-rw-r--r--package/x11vnc/x11vnc-ipv6.patch25
1 files changed, 25 insertions, 0 deletions
diff --git a/package/x11vnc/x11vnc-ipv6.patch b/package/x11vnc/x11vnc-ipv6.patch
new file mode 100644
index 000000000..89c28357a
--- /dev/null
+++ b/package/x11vnc/x11vnc-ipv6.patch
@@ -0,0 +1,25 @@
+[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;