瀏覽代碼

package/qt6/qt6base: add support to link qt to openssl

Signed-off-by: Jesse Van Gavere <jesseevg@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Jesse Van Gavere 2 年之前
父節點
當前提交
14df1bc616
共有 1 個文件被更改,包括 7 次插入0 次删除
  1. 7 0
      package/qt6/qt6base/qt6base.mk

+ 7 - 0
package/qt6/qt6base/qt6base.mk

@@ -101,6 +101,13 @@ endef
 # Conditional blocks below are ordered by alphabetic ordering of the
 # BR2_PACKAGE_* option.
 
+ifeq ($(BR2_PACKAGE_OPENSSL),y)
+QT6BASE_CONF_OPTS += -DINPUT_openssl=yes
+QT6BASE_DEPENDENCIES += openssl
+else
+QT6BASE_CONF_OPTS += -DINPUT_openssl=no
+endif
+
 ifeq ($(BR2_PACKAGE_QT6BASE_CONCURRENT),y)
 QT6BASE_CONF_OPTS += -DFEATURE_concurrent=ON
 else