James Vega wrote: > >> (generated by configure) redefines uint32_t: > >> > >> vim/src/auto/config.h: > >> .... > >> /* Define to `unsigned int' or other type that is 32 bit. */ > >> #define uint32_t unsigned int > >> ... > > > > Ah, the issue is that Vim's configure script isn't checking for stdint.h > > or inttypes.h. Attached patch fixes this and should remove the need for > > the other workarounds Bram added. > > Forgot to include vim.h in the patch.
I have included this and defined UINT32_T to uint32_t. Hopefully that avoids all the problems reported. I also added an extra check for uint32_t, both in configure and before using blowfish. I hope that someone can make this work for cross compiling. -- hundred-and-one symptoms of being an internet addict: 78. You find yourself dialing IP numbers on the phone. /// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ download, build and distribute -- http://www.A-A-P.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php
