[oe-commits] [meta-openembedded] 04/09: libvncserver: fix configure argument on openssl when disabled

git at git.openembedded.org git at git.openembedded.org
Tue Jan 22 08:35:26 UTC 2019


This is an automated email from the git hooks/post-receive script.

khem pushed a commit to branch master-next
in repository meta-openembedded.

commit c372205b3690424f07eaf9179d50746b9c009e6b
Author: Maxime Roussin-Bélanger <maxime.roussinbelanger at gmail.com>
AuthorDate: Mon Jan 21 17:12:43 2019 -0500

    libvncserver: fix configure argument on openssl when disabled
    
    When openssl is not included in the PACKAGECONFIG it
    shouldn't try to compile with openssl.
    
    libvncserver CMakeLists.txt activates all of its options and
    tries to find libssl.so. CMake finds it inside the native
    sysroot which could be the wrong architecture when linking.
    
    Signed-off-by: Maxime Roussin-Bélanger <maxime.roussinbelanger at gmail.com>
    Signed-off-by: Khem Raj <raj.khem at gmail.com>
---
 meta-oe/recipes-graphics/libvncserver/libvncserver_git.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-oe/recipes-graphics/libvncserver/libvncserver_git.bb b/meta-oe/recipes-graphics/libvncserver/libvncserver_git.bb
index d8f51c7..b493f7f 100644
--- a/meta-oe/recipes-graphics/libvncserver/libvncserver_git.bb
+++ b/meta-oe/recipes-graphics/libvncserver/libvncserver_git.bb
@@ -17,7 +17,7 @@ PACKAGECONFIG ??= " \
 PACKAGECONFIG[gcrypt] = ",,libgcrypt,libgcrypt"
 PACKAGECONFIG[gnutls] = ",,gnutls"
 PACKAGECONFIG[jpeg] = ",-DWITH_JPEG=OFF,jpeg"
-PACKAGECONFIG[openssl] = ",,openssl"
+PACKAGECONFIG[openssl] = ",-DWITH_OPENSSL=OFF,openssl"
 PACKAGECONFIG[png] = ",-DWITH_PNG=OFF,libpng,libpng"
 PACKAGECONFIG[systemd] = ",,systemd"
 PACKAGECONFIG[sdl] = ",,libsdl2"

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list