diff options
author | Rui Abreu Ferreira <raf-ep@gmx.com> | 2014-06-27 14:16:26 +0100 |
---|---|---|
committer | Nicolas Hillegeer <nicolas@hillegeer.com> | 2014-07-15 10:43:21 +0200 |
commit | 99e60f6242f4bc9cfba08e5cf8ab5f92d7ff88b8 (patch) | |
tree | ccd1645d4929841c30fe0e272a764c504020e863 | |
parent | feffc652706c0487be51c6182bba7dcc6f51a895 (diff) | |
download | rneovim-99e60f6242f4bc9cfba08e5cf8ab5f92d7ff88b8.tar.gz rneovim-99e60f6242f4bc9cfba08e5cf8ab5f92d7ff88b8.tar.bz2 rneovim-99e60f6242f4bc9cfba08e5cf8ab5f92d7ff88b8.zip |
Clean up DEBUG check in config.h.in
-rw-r--r-- | config/config.h.in | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/config/config.h.in b/config/config.h.in index 7ba5b9dd53..32d6760312 100644 --- a/config/config.h.in +++ b/config/config.h.in @@ -2,9 +2,7 @@ #define NEOVIM_VERSION_MINOR @NEOVIM_VERSION_MINOR@ #define NEOVIM_VERSION_PATCH @NEOVIM_VERSION_PATCH@ -#if @DEBUG@ -#define DEBUG -#endif +#cmakedefine DEBUG #define SIZEOF_INT @SIZEOF_INT@ #define SIZEOF_LONG @SIZEOF_LONG@ |