]> Git Repo - buildroot-mgba.git/blame - package/x11vnc/x11vnc.mk
x11vnc: update to 0.9.15
[buildroot-mgba.git] / package / x11vnc / x11vnc.mk
CommitLineData
8dfd59d1 1################################################################################
eda9b0fe 2#
966e005d 3# x11vnc
eda9b0fe 4#
8dfd59d1 5################################################################################
70270401 6
99c6f9fb 7X11VNC_VERSION = 0.9.15
aeea662f 8X11VNC_SITE = $(call github,LibVNC,x11vnc,$(X11VNC_VERSION))
2410e3d2
PK
9# sdl support is not used in x11vnc, but host include / library search paths
10# leak in if host has sdl-config
aaffd209 11X11VNC_CONF_OPTS = --without-sdl
61d0a655 12X11VNC_DEPENDENCIES = xlib_libXt xlib_libXext xlib_libXtst libvncserver
af31c309 13X11VNC_LICENSE = GPL-2.0+
3917c616 14X11VNC_LICENSE_FILES = COPYING
4cc4e572 15
aeea662f
MK
16# Source coming from github, no configure included
17X11VNC_AUTORECONF = YES
18
2410e3d2
PK
19ifeq ($(BR2_PACKAGE_AVAHI_DAEMON)$(BR2_PACKAGE_DBUS),yy)
20X11VNC_DEPENDENCIES += avahi dbus
21else
aaffd209 22X11VNC_CONF_OPTS += --without-avahi
2410e3d2
PK
23endif
24
25ifeq ($(BR2_PACKAGE_JPEG),y)
26X11VNC_DEPENDENCIES += jpeg
27else
aaffd209 28X11VNC_CONF_OPTS += --without-jpeg
2410e3d2
PK
29endif
30
31ifeq ($(BR2_PACKAGE_OPENSSL),y)
32X11VNC_DEPENDENCIES += openssl
33else
aaffd209 34X11VNC_CONF_OPTS += --without-ssl --without-crypto
2410e3d2
PK
35endif
36
37ifeq ($(BR2_PACKAGE_XLIB_LIBXINERAMA),y)
38X11VNC_DEPENDENCIES += xlib_libXinerama
39else
aaffd209 40X11VNC_CONF_OPTS += --without-xinerama
2410e3d2
PK
41endif
42
43ifeq ($(BR2_PACKAGE_XLIB_LIBXRANDR),y)
44X11VNC_DEPENDENCIES += xlib_libXrandr
45else
aaffd209 46X11VNC_CONF_OPTS += --without-xrandr
2410e3d2
PK
47endif
48
49ifeq ($(BR2_PACKAGE_XLIB_LIBXFIXES),y)
50X11VNC_DEPENDENCIES += xlib_libXfixes
51else
aaffd209 52X11VNC_CONF_OPTS += --without-xfixes
2410e3d2
PK
53endif
54
55ifeq ($(BR2_PACKAGE_XLIB_LIBXDAMAGE),y)
56X11VNC_DEPENDENCIES += xlib_libXdamage
57else
aaffd209 58X11VNC_CONF_OPTS += --without-xdamage
2410e3d2
PK
59endif
60
61ifeq ($(BR2_PACKAGE_ZLIB),y)
62X11VNC_DEPENDENCIES += zlib
63else
aaffd209 64X11VNC_CONF_OPTS += --without-zlib
2410e3d2
PK
65endif
66
e1502ebc 67$(eval $(autotools-package))
This page took 4.39117 seconds and 4 git commands to generate.