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

Merge pull request #57 from rioderelfte/include-guard

add an include guard to config.h
This commit is contained in:
Matias Fontanini
2015-03-07 09:24:34 -08:00
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