[Openvpn-devel] [PATCH 1/1] travis-ci: add libressl build for osx

2017-08-13 Thread Ilya Shipitsin
--- .travis.yml| 5 + .travis/build-check.sh | 4 .travis/build-deps.sh | 31 +++ 3 files changed, 40 insertions(+) diff --git a/.travis.yml b/.travis.yml index 0b531529..4f5661d6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -21,6 +21,7 @@ env:

[Openvpn-devel] [PATCH 0/1] travis-ci: libressl support for osx

2017-08-13 Thread Ilya Shipitsin
Tunnelblick ships openvpn binary built with libressl (see https://github.com/Tunnelblick/Tunnelblick/issues/317 ) Ilya Shipitsin (1): travis-ci: add libressl build for osx .travis.yml| 5 + .travis/build-check.sh | 4 .travis/build-deps.sh | 31 +

Re: [Openvpn-devel] [PATCH 3/5] add missing static attribute to functions

2017-08-13 Thread Steffan Karger
On 11-08-17 11:07, Antonio Quartulli wrote: > From: Antonio Quartulli > > Functions used only in the file where they are > defined and not exported in any header, should > always defined as static in order to make the scope > clear to the compiler and the developers. > > Add the static attribut