From 9c53079fd2351b56becd1ad5eb8dcc997ac3c6f3 Mon Sep 17 00:00:00 2001 From: Peter Korsgaard Date: Wed, 26 Sep 2012 23:15:48 +0200 Subject: x11vnc: fix build without ipv6 support Fixes http://autobuild.buildroot.net/results/1119dbf055edf281451a9e4216fdebc0b07fffae/ configure script uses --without-ipv6 instead of --disable-ipv6, and configure option is only used for libraries, not the x11vnc application. Signed-off-by: Peter Korsgaard --- package/x11vnc/x11vnc.mk | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'package/x11vnc') diff --git a/package/x11vnc/x11vnc.mk b/package/x11vnc/x11vnc.mk index 444a83962..51ae0a0fb 100644 --- a/package/x11vnc/x11vnc.mk +++ b/package/x11vnc/x11vnc.mk @@ -11,4 +11,10 @@ X11VNC_CONF_OPT = \ X11VNC_DEPENDENCIES = xlib_libXt xlib_libXext +ifneq ($(BR2_INET_IPV6),y) +# configure option only used for libvncserver +X11VNC_CONF_OPT += --without-ipv6 +X11VNC_CONF_ENV += CFLAGS='$(TARGET_CFLAGS) -DX11VNC_IPV6=0' +endif + $(eval $(autotools-package)) -- cgit v1.2.3