diff options
author | Bram Moolenaar <Bram@vim.org> | 2010-05-17 20:32:55 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2010-05-17 20:32:55 +0200 |
commit | 0bbabe80800bd80b245b6e8b2fff4d3a908c5ded (patch) | |
tree | 66db6ba92e5df873e703f7982988985005c20fdd /src/config.h.in | |
parent | 823a165119fccd8ace6b8d37619ef68b75ecd44f (diff) | |
download | vim-0bbabe80800bd80b245b6e8b2fff4d3a908c5ded.zip |
Fixed encryption big/little endian test.
Use uint32_t to avoid crash on 64 bit machines.
Added error numbers for Blowfish errors.
Fixed the tiny version not building.
Diffstat (limited to 'src/config.h.in')
-rw-r--r-- | src/config.h.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/config.h.in b/src/config.h.in index e05d59ed3..c5f70fc8e 100644 --- a/src/config.h.in +++ b/src/config.h.in @@ -74,6 +74,9 @@ /* Define to `int' if <sys/types.h> doesn't define. */ #undef uid_t +/* Define to `unsigned int' or other type that is 32 bit. */ +#undef uint32_t + /* Define to `int' if <sys/types.h> doesn't define. */ #undef gid_t @@ -83,6 +86,9 @@ /* Define to `unsigned' if <sys/types.h> doesn't define. */ #undef dev_t +/* Define on big-endian machines */ +#undef WORDS_BIGENDIAN + /* Define to `unsigned long' if <sys/types.h> doesn't define. */ #undef rlim_t |