5 Mar
2009
5 Mar
'09
12:58 p.m.
On Thu, Mar 05, 2009 at 01:52:27PM +0100, Hahusseau, Thomas wrote:
I changed it in the source and now the compilation crashed for cfg-grammar.y :( :(
It's just a macro, you must have done something wrong. You had this: dest_afinet_tcp_option : dest_afinet_option | KW_TLS { #if ENABLE_TLS last_tls_context = tls_context_new(TM_CLIENT); #endif } You should have this: dest_afinet_tcp_option : dest_afinet_option | KW_TLS { #if ENABLE_SSL last_tls_context = tls_context_new(TM_CLIENT); #endif } -- Xavier