Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Ismael Luceno (a9d2c4e4f1944afbb8e7ec124118788089527b3f)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Ismael Luceno <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Ismael Luceno (a9d2c4e4f1944afbb8e7ec124118788089527b3f)
  • Date: Tue, 26 Aug 2014 13:55:14 -0500

GIT changes to master grimoire by Ismael Luceno <ismael AT sourcemage.org>:

net/wpa_supplicant/BUILD | 1 +
net/wpa_supplicant/DEPENDS | 12 +++++++++---
net/wpa_supplicant/HISTORY | 4 ++++
3 files changed, 14 insertions(+), 3 deletions(-)

New commits:
commit a9d2c4e4f1944afbb8e7ec124118788089527b3f
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

wpa_supplicant: nl80211 support requires libnl

commit 9d6e97102d81d3708656ac75f6487af2276fd4cf
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

wpa_supplicant: Allow the use of libressl

diff --git a/net/wpa_supplicant/BUILD b/net/wpa_supplicant/BUILD
index 56f5817..b2a6909 100755
--- a/net/wpa_supplicant/BUILD
+++ b/net/wpa_supplicant/BUILD
@@ -1,3 +1,4 @@
+CFLAGS="$CFLAGS -I$INSTALL_ROOT/usr/include/libnl3"
cd "$SOURCE_DIRECTORY/wpa_supplicant"

# Create .config file for make (this is here instead of PRE_BUILD because
diff --git a/net/wpa_supplicant/DEPENDS b/net/wpa_supplicant/DEPENDS
index b19658a..597453e 100755
--- a/net/wpa_supplicant/DEPENDS
+++ b/net/wpa_supplicant/DEPENDS
@@ -1,12 +1,18 @@
depends wireless_tools &&

+if [ "$CONFIG_DRIVER_NL80211" = y ]; then
+ depends libnl
+fi &&
+
if [[ $CONFIG_EAP_SIM == y || $CONFIG_EAP_AKA == y ]]; then
depends pcsc-lite
fi &&

-if [[ $CONFIG_TLS && $CONFIG_TLS != internal ]]; then
- depends $CONFIG_TLS
-fi &&
+case "$CONFIG_TLS" in
+internal) ;;
+openssl) depends SSL ;;
+*) depends $CONFIG_TLS ;;
+esac &&

if [[ $CONFIG_DNET_PCAP == y || $CONFIG_L2_PACKET == pcap ]]; then
depends libpcap &&
diff --git a/net/wpa_supplicant/HISTORY b/net/wpa_supplicant/HISTORY
index b8dcc0b..431042c 100644
--- a/net/wpa_supplicant/HISTORY
+++ b/net/wpa_supplicant/HISTORY
@@ -1,3 +1,7 @@
+2014-08-23 Ismael Luceno <ismael AT sourcemage.org>
+ * DEPENDS: Allow the use of libressl
+ * BUILD, DEPENDS: nl80211 support requires libnl
+
2012-12-31 Vlad Glagolev <stealth AT sourcemage.org>
* PRE_BUILD, INSTALL: dbus service patching isn't required for 1.1;
fixed build



  • [SM-Commit] GIT changes to master grimoire by Ismael Luceno (a9d2c4e4f1944afbb8e7ec124118788089527b3f), Ismael Luceno, 08/26/2014

Archive powered by MHonArc 2.6.24.

Top of Page