diff options
| author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-12-28 17:34:54 +0100 |
|---|---|---|
| committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-12-31 15:13:43 +0100 |
| commit | fa168c1aa45649094d90704267b8a8cac17a8e34 (patch) | |
| tree | 3e507b5360f191bbde537dd173df83bf63a4c3b2 /package/libvncserver | |
| parent | dfbfa6ef00ed32127bf01f5b4f525889921c3006 (diff) | |
| download | buildroot-fa168c1aa45649094d90704267b8a8cac17a8e34.tar.gz buildroot-fa168c1aa45649094d90704267b8a8cac17a8e34.zip | |
libvncserver: OpenSSL support needs NPTL thread support
The OpenSSL support of libvncserver already has a dependency on thread
support, but it in fact requires NPTL threading.
Fixes:
http://autobuild.buildroot.org/results/be2/be20dec9ffe7de3adc46a834852b20353d39baff/
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/libvncserver')
| -rw-r--r-- | package/libvncserver/libvncserver.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/libvncserver/libvncserver.mk b/package/libvncserver/libvncserver.mk index ed6b64d95b..87bcf45720 100644 --- a/package/libvncserver/libvncserver.mk +++ b/package/libvncserver/libvncserver.mk @@ -32,8 +32,8 @@ ifneq ($(BR2_INET_IPV6),y) LIBVNCSERVER_CONF_OPTS += --without-ipv6 endif -# openssl supports needs pthread -ifeq ($(BR2_PACKAGE_OPENSSL)$(BR2_TOOLCHAIN_HAS_THREADS),yy) +# openssl supports needs NPTL thread support +ifeq ($(BR2_PACKAGE_OPENSSL)$(BR2_TOOLCHAIN_HAS_THREADS_NPTL),yy) LIBVNCSERVER_DEPENDENCIES += openssl else LIBVNCSERVER_CONF_OPTS += --without-crypto --without-ssl |

