diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2016-03-14 17:52:14 -0300 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-03-19 15:02:01 +0100 |
commit | 7b3e749c0667f6b80a36f577b69de6b90ad101c0 (patch) | |
tree | 413a340efca3aaced53afdbc73121f676dd1b699 | |
parent | 1ace66408d18e53bd23b2e090f7def87c87cd672 (diff) | |
download | buildroot-7b3e749c0667f6b80a36f577b69de6b90ad101c0.tar.gz buildroot-7b3e749c0667f6b80a36f577b69de6b90ad101c0.zip |
webkitgtk24: add https option
Add a BR2_PACKAGE_WEBKITGTK24_HTTPS to pull in required dependencies for
HTTPS protocol support.
This is almost essentially the same as using midori with HTTPS enabled,
however Midori's HTTPS support is based on glib-networking, and webkit
via libsoup-ssl (for MiniBrowser, it doesn't affect midori's support).
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/webkitgtk24/Config.in | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/package/webkitgtk24/Config.in b/package/webkitgtk24/Config.in index 02d67918c7..e95a851a3b 100644 --- a/package/webkitgtk24/Config.in +++ b/package/webkitgtk24/Config.in @@ -51,6 +51,13 @@ config BR2_PACKAGE_WEBKITGTK24 if BR2_PACKAGE_WEBKITGTK24 +config BR2_PACKAGE_WEBKITGTK24_HTTPS + bool "HTTPS support" + select BR2_PACKAGE_CA_CERTIFICATES # runtime + select BR2_PACKAGE_LIBSOUP_SSL + help + Enable HTTPS protocol support. + config BR2_PACKAGE_WEBKITGTK24_MULTIMEDIA bool "multimedia support" select BR2_PACKAGE_GSTREAMER1 |