Re: [PATCH 1.5 0/4] Manpage fixes

2013-09-30 Thread Willy Tarreau
Hi Apollon, On Sun, Sep 29, 2013 at 11:03:11PM +0300, Apollon Oikonomopoulos wrote: Hi, The following set of patches updates the manpage, adding missing options, removing obsolete options and fixing external references. Regards, Apollon Apollon Oikonomopoulos (4): DOC: add missing

Re: Static haproxy/openssl build error

2013-09-30 Thread Willy Tarreau
Hi Vincent, On Sun, Sep 29, 2013 at 10:27:30PM +0200, Vincent Bernat wrote: ??? 29 septembre 2013 18:30 CEST, Willy Tarreau w...@1wt.eu : So maybe we should in fact stop setting PCREDIR to $(pcre-config --prefix), which will result in PCRE_INC/PCRE_LIB remaining silent unless PCREDIR is

Re: Static haproxy/openssl build error

2013-09-30 Thread Willy Tarreau
Hi Lukas, On Sun, Sep 29, 2013 at 10:49:41PM +0200, Lukas Tribus wrote: Another thing regarding SSL_INC/SSL_LIB: when linking against static openssl, libdl is necessary. Previously I did this by appending ADDLIB with -ldl. It seems like doing the same in SSL_LIB doesn't work (for me), because

Re: Static haproxy/openssl build error

2013-09-30 Thread Vincent Bernat
❦ 30 septembre 2013 11:30 CEST, Willy Tarreau w...@1wt.eu : I would use `pcre-config --libs` and `pcre-config --cflags` instead. The user can still override this on make command line. PCRE_CFLAGS := $(shell pcre-config --cflags) PCRE_LIBS := $(shell pcre-config --libs) But these would

Re: Static haproxy/openssl build error

2013-09-30 Thread Apollon Oikonomopoulos
Hi Vincent, On 12:19 Mon 30 Sep , Vincent Bernat wrote: For me, pcre-config --libs does not use `-L`. Dunno why this is the case for Apollon. My version of pcre-config (8.30, also tested with 8.31) includes: libS= if test ${prefix}/lib/x86_64-linux-gnu != /usr/lib ; then

Re: Static haproxy/openssl build error

2013-09-30 Thread Apollon Oikonomopoulos
On 13:49 Mon 30 Sep , Apollon Oikonomopoulos wrote: Hi Vincent, On 12:19 Mon 30 Sep , Vincent Bernat wrote: For me, pcre-config --libs does not use `-L`. Dunno why this is the case for Apollon. My version of pcre-config (8.30, also tested with 8.31) includes: libS= if test

about stats socket per process

2013-09-30 Thread Avatar
I would like to ask you about any perspective in implementation statistics socket at each process in nbproc. Do you have any plans to work on it? Thanks. -- The more you know, the less you need. Rgrds, Pavel Morozov

Re: Static haproxy/openssl build error

2013-09-30 Thread Vincent Bernat
❦ 30 septembre 2013 13:01 CEST, Apollon Oikonomopoulos apoi...@gmail.com : My version of pcre-config (8.30, also tested with 8.31) includes: libS= if test ${prefix}/lib/x86_64-linux-gnu != /usr/lib ; then libS=-L${prefix}/lib/x86_64-linux-gnu fi Update: Debian's 8.31

Re: Client timeout on http put shows as a server timeout with error 504

2013-09-30 Thread Patrick Hemmer
*From: *Patrick Hemmer hapr...@stormcloud9.net *Sent: * 2013-09-18 10:26:36 E *To: *haproxy@formilux.org *Subject: *Re: Client timeout on http put shows as a server timeout with error 504 *From: *Willy Tarreau w...@1wt.eu *Sent: * 2013-09-18 01:46:50 E *To: *Patrick Hemmer

RE: Static haproxy/openssl build error

2013-09-30 Thread Lukas Tribus
Hi Willy, Like previsouly suggested by Apollon, we could introduce a flag for statically linking openssl, like we have with PCRE (USE_STATIC_OPENSSL?). If we do that, we could also include -ldl automatically when using that USE flag. Thoughts? I'm a bit hesitant here and am not

[PATCH] DOC: ssl: update build instructions to use new SSL_* variables

2013-09-30 Thread Lukas Tribus
Since commit 9a05945bd (BUILD: add SSL_INC/SSL_LIB variables to force the path to openssl) we have SSL_INC and SSL_LIB to point to the libssl installation. This commits updates the build instructions in README accordingly. --- README |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)

3 formules pour apprendre l'anglais

2013-09-30 Thread English Speak It
3 formules pour parler anglais : http://www.englishspeakit.fr

Re: [PATCH] DOC: ssl: update build instructions to use new SSL_* variables

2013-09-30 Thread Willy Tarreau
On Tue, Oct 01, 2013 at 12:28:03AM +0200, Lukas Tribus wrote: Since commit 9a05945bd (BUILD: add SSL_INC/SSL_LIB variables to force the path to openssl) we have SSL_INC and SSL_LIB to point to the libssl installation. This commits updates the build instructions in README accordingly.