diff options
author | Bram Moolenaar <Bram@vim.org> | 2011-12-14 19:22:34 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2011-12-14 19:22:34 +0100 |
commit | 323cb95120f8e0ba0116ddd87dda7956f80d7388 (patch) | |
tree | d8510d9cb8555dd8b975720405b82ea5724b49d6 /src/configure.in | |
parent | d6e256c31aef8fc9268d10c0fa3073785d4c3723 (diff) | |
download | vim-git-323cb95120f8e0ba0116ddd87dda7956f80d7388.tar.gz |
updated for version 7.3.378v7.3.378
Problem: When cross-compiling the check for uint32_t fails.
Solution: Only give a warning message. (Maksim Melnikau)
Diffstat (limited to 'src/configure.in')
-rw-r--r-- | src/configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/configure.in b/src/configure.in index 7a2b186af..8e3aa8db5 100644 --- a/src/configure.in +++ b/src/configure.in @@ -3283,7 +3283,7 @@ main() { }], AC_MSG_RESULT(ok), AC_MSG_ERROR([WRONG! uint32_t not defined correctly.]), -AC_MSG_ERROR([could not compile program using uint32_t.])) +AC_MSG_WARN([cannot check uint32_t when cross-compiling.])) dnl Check for memmove() before bcopy(), makes memmove() be used when both are dnl present, fixes problem with incompatibility between Solaris 2.4 and 2.5. |