Mercurial > vim
view src/proto/blowfish.pro @ 15912:57a353715a8f v8.1.0962
patch 8.1.0962: building with MinGW and static libs doesn't work
commit https://github.com/vim/vim/commit/d91e5dafd5ec57d8e61f1a6ba3628a255785c25c
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Feb 21 13:34:07 2019 +0100
patch 8.1.0962: building with MinGW and static libs doesn't work
Problem: Building with MinGW and static libs doesn't work. (Salman Halim)
Solution: Add -lgcc. (Ken Takata)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Thu, 21 Feb 2019 13:45:06 +0100 |
parents | 21b0a39d13ed |
children | a1229400434a |
line wrap: on
line source
/* blowfish.c */ void crypt_blowfish_encode(cryptstate_T *state, char_u *from, size_t len, char_u *to); void crypt_blowfish_decode(cryptstate_T *state, char_u *from, size_t len, char_u *to); void crypt_blowfish_init(cryptstate_T *state, char_u *key, char_u *salt, int salt_len, char_u *seed, int seed_len); int blowfish_self_test(void); /* vim: set ft=c : */