Re: [Openvpn-devel] PolarSSL 1.1.0 support?

2012-06-07 Thread Frank de Brabander
Maybe this should actually be changed to >= 1.1.2, since there is a security issue with versions from 0.99-pre4 up to and including PolarSSL 1.1.1. On 07-06-12 11:24, "Samuli Seppänen" wrote: >Hi, > >I noticed that my Ubuntu 10.04 and 12.04 buildslaves which had PolarSSL >1.1.0 failed build duri

Re: [Openvpn-devel] OpenVPN 2.3-alpha1 preview 1 installer now available

2012-02-23 Thread Frank de Brabander
Maybe you already know this, but I want to point it out just in case; pkcs11-helper library is not included in OS X. You need to build that first, if you want to include support for this in openvpn. Op 22 februari 2012 23:23 heeft Jonathan K. Bullard het volgende geschreven: > On Wed, Feb 22, 201

Re: [Openvpn-devel] [PATCH 00/35] build revolution

2012-02-22 Thread Frank de Brabander
ball[1] and not autoreconf at your >> machine? >> I think your autotools are waaay to old. >> >> And... can you please send me: >> # autoconf --version >> # aclocal --version >> # automake --version >> # libtool --version >> >> Alon >>

Re: [Openvpn-devel] [PATCH 00/35] build revolution

2012-02-21 Thread Frank de Brabander
penssl (if PKG_CONFIG=true) when pkg-config is not present. Greetings, Frank Op 21 februari 2012 12:44 heeft Alon Bar-Lev het volgende geschreven: > On Tue, Feb 21, 2012 at 1:32 PM, Frank de Brabander > wrote: >> When I try to build like this, it seems to fail at linking to

Re: [Openvpn-devel] [PATCH 00/35] build revolution

2012-02-21 Thread Frank de Brabander
lon Bar-Lev het volgende geschreven: > Thanks! > > I think I fixed the file, please try again. > > This is very strange as the m4/ax_socklen_t.m4 looks correct to me. > I will investigate this, but appreciate if you can try the tarball. > > Alon. > > On Tue, Feb 21, 2012 at

Re: [Openvpn-devel] [PATCH 00/35] build revolution

2012-02-21 Thread Frank de Brabander
I did a quick test on OS X (Lion) and the build fails. mekboek:openvpn_src brabander$ git clone --branch build https://github.com/alonbl/openvpn.git openvpn_alonbl mekboek:openvpn_src brabander$ cd openvpn_alonbl/ mekboek:openvpn_alonbl brabander$ autoreconf -i -v autoreconf: Entering directory `.

Re: [Openvpn-devel] [PATCH] Bogus check for negative values on an unsigned number.

2012-02-18 Thread Frank de Brabander
On Fri, Feb 17, 2012 at 10:04:50PM +0100, Frank de Brabander wrote: >> This causes compiler warnings when using Clang instead of default GCC. > > I'm not particularily interested in source code fixes "just to silence > a compiler warning" - but Clang is right, of course,

[Openvpn-devel] [PATCH] Bogus check for negative values on an unsigned number.

2012-02-17 Thread Frank de Brabander
This causes compiler warnings when using Clang instead of default GCC. Signed-off-by: Frank de Brabander --- mroute.c | 24 +--- 1 files changed, 9 insertions(+), 15 deletions(-) diff --git a/mroute.c b/mroute.c index 285b151..0213a3e 100644 --- a/mroute.c +++ b/mroute.c

[Openvpn-devel] [PATCH] Bogus check for negative values on an unsigned number.

2012-02-17 Thread Frank de Brabander
This causes compiler warnings when using Clang instead of default GCC. Signed-off-by: Frank de Brabander --- mroute.c | 24 +--- 1 files changed, 9 insertions(+), 15 deletions(-) diff --git a/mroute.c b/mroute.c index 285b151..0213a3e 100644 --- a/mroute.c +++ b/mroute.c

Re: [Openvpn-devel] Cipher problem on Mac OS X

2012-02-16 Thread Frank de Brabander
Sorry, patch format got broken in previous email. Hope this works better. 0001-Fixed-wrong-return-type-of-cipher_kt_mode.patch Description: 0001-Fixed-wrong-return-type-of-cipher_kt_mode.patch

Re: [Openvpn-devel] Cipher problem on Mac OS X

2012-02-16 Thread Frank de Brabander
Hello, I have looked into the problem, it seems to be caused by the return type of cipher_kt_mode() in crypto_backend.h being declared as a bool. This function is called from init_key_type() of crypto.c during the tests. The actual mode value in cipher_kt_mode() of openssl_backend.c during the fai