diff options
author | Brad King <brad.king@kitware.com> | 2020-06-03 15:52:49 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2020-06-03 15:54:13 (GMT) |
commit | d20bf471c8143a8e8a40ad57200a14554aa26cd5 (patch) | |
tree | 38a0207c3c426a28ad8599557e333881eaa91fea /Utilities/cmliblzma | |
parent | 92c4316d81d4bfbec87a9f03080a576fa2718696 (diff) | |
download | CMake-d20bf471c8143a8e8a40ad57200a14554aa26cd5.zip CMake-d20bf471c8143a8e8a40ad57200a14554aa26cd5.tar.gz CMake-d20bf471c8143a8e8a40ad57200a14554aa26cd5.tar.bz2 |
liblzma: Map fixed-size integer types from KWIML as typedefs
Refactoring in commit 12e7bfcbf4 (liblzma: Use KWIML to get fixed-size
integer types, 2020-05-25) accidentally changed the method of defining
`int#_t` types from `typedef` to `#define`. Change it back to
`typedef`.
Reported-by: Rolf Eike Beer <eike@sf-mail.de>
Diffstat (limited to 'Utilities/cmliblzma')
-rw-r--r-- | Utilities/cmliblzma/config.h.in | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/Utilities/cmliblzma/config.h.in b/Utilities/cmliblzma/config.h.in index 8e4dc93..20916ca 100644 --- a/Utilities/cmliblzma/config.h.in +++ b/Utilities/cmliblzma/config.h.in @@ -6,31 +6,31 @@ #include <cm3p/kwiml/int.h> #ifndef KWIML_INT_HAVE_INT64_T -# define int64_t KWIML_INT_int64_t +typedef KWIML_INT_int64_t int64_t; #endif #ifndef KWIML_INT_HAVE_INT32_T -# define int32_t KWIML_INT_int32_t +typedef KWIML_INT_int32_t int32_t; #endif #ifndef KWIML_INT_HAVE_INT16_T -# define int16_t KWIML_INT_int16_t +typedef KWIML_INT_int16_t int16_t; #endif #ifndef KWIML_INT_HAVE_INT8_T -# define int8_t KWIML_INT_int8_t +typedef KWIML_INT_int8_t int8_t; #endif #ifndef KWIML_INT_HAVE_UINT64_T -# define uint64_t KWIML_INT_uint64_t +typedef KWIML_INT_uint64_t uint64_t; #endif #ifndef KWIML_INT_HAVE_UINT32_T -# define uint32_t KWIML_INT_uint32_t +typedef KWIML_INT_uint32_t uint32_t; #endif #ifndef KWIML_INT_HAVE_UINT16_T -# define uint16_t KWIML_INT_uint16_t +typedef KWIML_INT_uint16_t uint16_t; #endif #ifndef KWIML_INT_HAVE_UINT8_T -# define uint8_t KWIML_INT_uint8_t +typedef KWIML_INT_uint8_t uint8_t; #endif #ifndef KWIML_INT_HAVE_UINTPTR_T -# define uintptr_t KWIML_INT_uintptr_t +typedef KWIML_INT_uintptr_t uintptr_t; #endif #cmakedefine WORDS_BIGENDIAN 1 |