diff options
author | Andreas Schuh <andreas.schuh.84@gmail.com> | 2014-03-19 14:24:52 +0000 |
---|---|---|
committer | Andreas Schuh <andreas.schuh.84@gmail.com> | 2014-03-19 14:24:52 +0000 |
commit | 8566bcf1ebc6ededd78b91eda6889c403d1f9905 (patch) | |
tree | 17ffd44a755bf8c960feb746a5cb18108e306e44 /src/gflags_declare.h.in | |
parent | 6e9f41669eef5e17f4e45821634278499964c1af (diff) | |
download | gflags-8566bcf1ebc6ededd78b91eda6889c403d1f9905.tar.gz gflags-8566bcf1ebc6ededd78b91eda6889c403d1f9905.tar.bz2 gflags-8566bcf1ebc6ededd78b91eda6889c403d1f9905.zip |
Replace GFLAGS_HAVE_* #defines by HAVE_* again.
Diffstat (limited to 'src/gflags_declare.h.in')
-rw-r--r-- | src/gflags_declare.h.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gflags_declare.h.in b/src/gflags_declare.h.in index 91ceb51..4dcf9fa 100644 --- a/src/gflags_declare.h.in +++ b/src/gflags_declare.h.in @@ -79,11 +79,11 @@ // --------------------------------------------------------------------------- // Flag types #include <string> -#if @GFLAGS_HAVE_STDINT_H@ +#if @HAVE_STDINT_H@ # include <stdint.h> // the normal place uint32_t is defined -#elif @GFLAGS_HAVE_SYS_TYPES_H@ +#elif @HAVE_SYS_TYPES_H@ # include <sys/types.h> // the normal place u_int32_t is defined -#elif @GFLAGS_HAVE_INTTYPES_H@ +#elif @HAVE_INTTYPES_H@ # include <inttypes.h> // a third place for uint32_t or u_int32_t #endif |