1
0
mirror of https://github.com/mfontanini/libtins synced 2026-01-22 18:25:57 +01:00

add an include guard to config.h

This commit is contained in:
Florian Sowade
2015-03-05 12:41:34 +01:00
parent be51d67575
commit 8a51050f0b
2 changed files with 8 additions and 0 deletions

View File

@@ -1,3 +1,5 @@
#ifndef TINS_CONFIG_H
#define TINS_CONFIG_H
/* Define if the compiler supports basic C++11 syntax */
#define HAVE_CXX11
@@ -7,3 +9,5 @@
/* Have WPA2 decryption library */
#define HAVE_WPA2_DECRYPTION
#endif // TINS_CONFIG_H

View File

@@ -1,3 +1,5 @@
#ifndef TINS_CONFIG_H
#define TINS_CONFIG_H
/* Define if the compiler supports basic C++11 syntax */
#cmakedefine HAVE_CXX11
@@ -7,3 +9,5 @@
/* Have WPA2 decryption library */
#cmakedefine HAVE_WPA2_DECRYPTION
#endif // TINS_CONFIG_H