diff options
Diffstat (limited to 'net')
-rw-r--r-- | net/wpa_supplicant/Makefile | 6 | ||||
-rw-r--r-- | net/wpa_supplicant/distinfo | 11 | ||||
-rw-r--r-- | net/wpa_supplicant/patches/patch-src_utils_common.h | 19 |
3 files changed, 28 insertions, 8 deletions
diff --git a/net/wpa_supplicant/Makefile b/net/wpa_supplicant/Makefile index abbf47aeb71..45837aa22ed 100644 --- a/net/wpa_supplicant/Makefile +++ b/net/wpa_supplicant/Makefile @@ -1,14 +1,14 @@ -# $NetBSD: Makefile,v 1.15 2016/03/05 11:29:14 jperkin Exp $ +# $NetBSD: Makefile,v 1.16 2016/08/17 04:57:47 maya Exp $ # -DISTNAME= wpa_supplicant-2.0 -PKGREVISION= 2 +DISTNAME= wpa_supplicant-2.5 CATEGORIES= net MASTER_SITES= http://hostap.epitest.fi/releases/ MAINTAINER= reed@reedmedia.net HOMEPAGE= http://hostap.epitest.fi/wpa_supplicant/ COMMENT= Wireless connection client daemon for WPA, WPA2, and WEP +LICENSE= modified-bsd USE_LANGUAGES= c USE_TOOLS+= gmake diff --git a/net/wpa_supplicant/distinfo b/net/wpa_supplicant/distinfo index 809d5404bd2..03ca3890582 100644 --- a/net/wpa_supplicant/distinfo +++ b/net/wpa_supplicant/distinfo @@ -1,7 +1,8 @@ -$NetBSD: distinfo,v 1.7 2015/11/04 00:35:45 agc Exp $ +$NetBSD: distinfo,v 1.8 2016/08/17 04:57:47 maya Exp $ -SHA1 (wpa_supplicant-2.0.tar.gz) = 78a456ff3c4af4b9bae2e0908a40f48755ffc59c -RMD160 (wpa_supplicant-2.0.tar.gz) = f9e4729de5c6bee0142986b114fdc3fffb7a28f2 -SHA512 (wpa_supplicant-2.0.tar.gz) = c3a599e1dfa5e0bb4b8d35ed49501696ce68c807ff458c1e3bff9ed5619c780f7117c6d8d7cb9a11351e9fad27cf83fc114f255c92552e7ba084de70c5f8e254 -Size (wpa_supplicant-2.0.tar.gz) = 2044281 bytes +SHA1 (wpa_supplicant-2.5.tar.gz) = f82281c719d2536ec4783d9442c42ff956aa39ed +RMD160 (wpa_supplicant-2.5.tar.gz) = 07bf2b9646b0d7dec3e3507e9ef04e71784c359f +SHA512 (wpa_supplicant-2.5.tar.gz) = e3ca36ed10b4dae8f663e98ad230c8c059c952316c21a6b0638ecb1b40a5ef1b9083138ab45207cb764a17e870b4bd0625dd6efdb65856cb4dca13ccc0559e81 +Size (wpa_supplicant-2.5.tar.gz) = 2607336 bytes SHA1 (patch-aa) = 998ba9cc4ef9ebd0b629a6368957da0f1159dda0 +SHA1 (patch-src_utils_common.h) = 3bf10d911822e4de657e12ee88e31d215a868fa0 diff --git a/net/wpa_supplicant/patches/patch-src_utils_common.h b/net/wpa_supplicant/patches/patch-src_utils_common.h new file mode 100644 index 00000000000..553831c4d59 --- /dev/null +++ b/net/wpa_supplicant/patches/patch-src_utils_common.h @@ -0,0 +1,19 @@ +$NetBSD: patch-src_utils_common.h,v 1.1 2016/08/17 04:57:47 maya Exp $ + +--- src/utils/common.h.orig 2015-09-27 19:02:05.000000000 +0000 ++++ src/utils/common.h +@@ -11,6 +11,14 @@ + + #include "os.h" + ++/* ++ * NetBSD net/if.h defines if_type as a macro, ++ * which conflicts with the use of it in the code. ++ */ ++#if defined(__NetBSD__) ++#undef if_type ++#endif ++ + #if defined(__linux__) || defined(__GLIBC__) + #include <endian.h> + #include <byteswap.h> |