Discussion:
[PATCH 2/2] iw: include generated config.h file (v2)
Sergey Senozhatsky
2012-04-27 14:10:39 UTC
Permalink
iw: include generated config.h file

Include generated "config.h" file in order to handle LIBNL define.
Rename CONFIG_LIBNL20 to HAVE_LIBNL20.

Signed-off-by: Sergey Senozhatsky <sergey.senozhatsky-***@public.gmane.org>

---

src/tuning/iw.c | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/src/tuning/iw.c b/src/tuning/iw.c
index 8e1bbcf..36abc00 100644
--- a/src/tuning/iw.c
+++ b/src/tuning/iw.c
@@ -45,13 +45,16 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#include <netlink/msg.h>
#include <netlink/attr.h>

+#if HAVE_CONFIG_H
+#include "config.h"
+#endif
#include "nl80211.h"
#include <asm/errno.h>
#include <linux/genetlink.h>
#include "iw.h"


-#ifndef CONFIG_LIBNL20
+#ifndef HAVE_LIBNL20
/* libnl 2.0 compatibility code */

static inline struct nl_handle *nl_socket_alloc(void)
@@ -73,7 +76,7 @@ static inline int __genl_ctrl_alloc_cache(struct nl_sock *h, struct nl_cache **c
return 0;
}
#define genl_ctrl_alloc_cache __genl_ctrl_alloc_cache
-#endif /* CONFIG_LIBNL20 */
+#endif /* HAVE_LIBNL20 */


static int nl80211_init(struct nl80211_state *state)

Loading...