diff options
author | Andrei Gherzan <andrei.gherzan@windriver.com> | 2012-01-06 17:34:36 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-01-17 14:52:57 +0000 |
commit | 959449005c02d5e2554bb03bfa8e21874012d2e5 (patch) | |
tree | 80674d07eec1fd900f02e9ee98dd1264b693c28c /meta/recipes-connectivity/wpa-supplicant/wpa-supplicant-0.7.inc | |
parent | 91e17c0c0ac2330f826b95e762542cd0d0c82385 (diff) | |
download | openembedded-core-959449005c02d5e2554bb03bfa8e21874012d2e5.tar.gz openembedded-core-959449005c02d5e2554bb03bfa8e21874012d2e5.tar.bz2 openembedded-core-959449005c02d5e2554bb03bfa8e21874012d2e5.zip |
wpa-supplicant: Compile without CONFIG_GNUTLS_EXTRA (PR BUMP)
CONFIG_GNUTLS_EXTRA is needed as support for TLS/IA which was designed to be used
in the EAP-TTLSv1. As we don't see any requirement for that protocol today we decided
to remove it from wpa-supplicant .config file.
This change includes PR bump.
[YOCTO #1845]
Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
Diffstat (limited to 'meta/recipes-connectivity/wpa-supplicant/wpa-supplicant-0.7.inc')
-rw-r--r-- | meta/recipes-connectivity/wpa-supplicant/wpa-supplicant-0.7.inc | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant-0.7.inc b/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant-0.7.inc index c2e329411a..ccdc4c3e7e 100644 --- a/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant-0.7.inc +++ b/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant-0.7.inc @@ -9,11 +9,8 @@ LIC_FILES_CHKSUM = "file://../COPYING;md5=c54ce9345727175ff66d17b67ff51f58 \ DEPENDS = "gnutls dbus libnl" RRECOMMENDS_${PN} = "wpa-supplicant-passphrase wpa-supplicant-cli" -# Check if GPLv3 build and select the correct file in configure -require defconfig.inc - SRC_URI = "http://hostap.epitest.fi/releases/wpa_supplicant-${PV}.tar.gz \ - file://defconfig-gnutls${@get_defconfig(bb, d)} \ + file://defconfig-gnutls \ file://defaults-sane \ file://wpa-supplicant.sh \ file://wpa_supplicant.conf \ @@ -28,7 +25,7 @@ FILES_wpa-supplicant-cli = "${sbindir}/wpa_cli" FILES_${PN} += " ${datadir}/dbus-1/system-services/* do_configure () { - install -m 0755 ${WORKDIR}/defconfig-gnutls${@get_defconfig(bb, d)} .config + install -m 0755 ${WORKDIR}/defconfig-gnutls .config } export EXTRA_CFLAGS = "${CFLAGS}" |