forked from pool/wpa_supplicant
- compile eapol_test binary to allow testing via radius proxy and server (note: this does not match CONFIG_EAPOL_TEST which sets -Werror and activates an assert call inside the code of wpa_supplicant) (bsc#1111873), (fate#326725)o - add patch to fix wrong operator precedence in ieee802_11.c wpa_supplicant-git-fa67debf4c6ddbc881a212b175faa6d5d0d90c8c.patch - add patch to avoid redefinition of __bitwise macro wpa_supplicant-git-f5b74b966c942feb95a8ddbb7d130540b15b796d.patch OBS-URL: https://build.opensuse.org/request/show/642093 OBS-URL: https://build.opensuse.org/package/show/hardware/wpa_supplicant?expand=0&rev=87
34 lines
1.2 KiB
Diff
34 lines
1.2 KiB
Diff
commit f5b74b966c942feb95a8ddbb7d130540b15b796d
|
|
Author: Beniamino Galvani <bgalvani@redhat.com>
|
|
Date: Mon Oct 30 11:14:40 2017 +0100
|
|
|
|
common: Avoid conflict with __bitwise macro from linux/types.h
|
|
|
|
Undefine the __bitwise macro before defining it to avoid conflicts
|
|
with the one from linux/types.h; the same is done some lines above
|
|
when __CHECKER__ is defined. Fixes the following warning:
|
|
|
|
In file included from ../src/l2_packet/l2_packet_linux.c:15:0:
|
|
hostap/src/utils/common.h:438:0: warning: "__bitwise" redefined
|
|
#define __bitwise
|
|
|
|
In file included from /usr/include/linux/filter.h:9:0,
|
|
from ../src/l2_packet/l2_packet_linux.c:13:
|
|
/usr/include/linux/types.h:21:0: note: this is the location of the previous definition
|
|
#define __bitwise __bitwise__
|
|
|
|
Signed-off-by: Beniamino Galvani <bgalvani@redhat.com>
|
|
|
|
diff --git a/src/utils/common.h b/src/utils/common.h
|
|
index 46e96a65b..fec7f6013 100644
|
|
--- a/src/utils/common.h
|
|
+++ b/src/utils/common.h
|
|
@@ -435,6 +435,7 @@ void perror(const char *s);
|
|
#define __bitwise __attribute__((bitwise))
|
|
#else
|
|
#define __force
|
|
+#undef __bitwise
|
|
#define __bitwise
|
|
#endif
|
|
|