1
0
mirror of https://github.com/mfontanini/libtins synced 2026-01-23 02:35:57 +01:00

Fix build issues when disabling Dot11

Fixes #258
This commit is contained in:
Matias Fontanini
2017-10-18 06:40:51 -07:00
parent c439eccdf8
commit f4635a696e
5 changed files with 49 additions and 28 deletions

View File

@@ -27,7 +27,9 @@
*
*/
#ifndef TINS_RADIOTAP_PARSER_H
#include <tins/config.h>
#if !defined(TINS_RADIOTAP_PARSER_H) && defined(TINS_HAVE_DOT11)
#define TINS_RADIOTAP_PARSER_H
#include <stdint.h>

View File

@@ -27,7 +27,10 @@
*
*/
#ifndef TINS_RADIOTAP_WRITER_H
#include <tins/config.h>
#if !defined(TINS_RADIOTAP_WRITER_H) && defined(TINS_HAVE_DOT11)
#define TINS_RADIOTAP_WRITER_H
#include <vector>