Re: [libmicrohttpd] Release 0.9.58, but configuration summary is 0.9.55

2017-12-08 Thread Evgeny Grin
Hi, Make sure that you try sources from official FTP https://ftp.gnu.org/gnu/libmicrohttpd/ I've just rechecked and it is 0.9.58: configure: GNU libmicrohttpd 0.9.58 Configuration Summary: I tried both https://ftp.gnu.org/gnu/libmicrohttpd/libmicrohttpd-0.9.58.tar.gz and https://ftp.gnu.org/gnu/

Re: [libmicrohttpd] Compile Error

2017-12-08 Thread Evgeny Grin
Hi Jong How do you define 'response' and 'ethbuf08'? 'reponse' must be defined as 'struct MHD_Response *response;' 'ethbuf08' should be defined list some array or pointer, for example 'char ethbuf08[8];' You provided not enough information to give you precise answer. -- Best Wishes, Evgeny Grin

Re: [libmicrohttpd] Release 0.9.58, but configuration summary is 0.9.55

2017-12-08 Thread silvioprog
Hum... so it seems a problem related to my environment. :-/ I'm going to check again it tonight. I'm configuring MHD in my project with AX_SUBDIRS_CONFIGURE ...: AM_COND_IF([WINDOWS], [LDFLAGS="-static -lrpcrt4"], [CFLAGS=""]) # I've declared 'CFLAGS=""' just because when I build my project remov

Re: [libmicrohttpd] Release 0.9.58, but configuration summary is 0.9.55

2017-12-08 Thread Evgeny Grin
Hi Silvio, If I get you correctly, you are asking about proper way to run configure. I did not use AX_SUBDIRS_CONFIGURE. I could tell you that if you are using tarball, then you do not need to run autoreconf or bootstrap as configure is already generated. -- Best Wishes, Evgeny Grin 08.12.2017

Re: [libmicrohttpd] Release 0.9.58, but configuration summary is 0.9.55

2017-12-08 Thread silvioprog
Hi dude! :-) I'm using git sub-module upgrading it each new MHD release, however tarball can be a better option with AX_SUBDIRS_CONFIGURE(). Thanks for the tip! :-) On Fri, Dec 8, 2017 at 2:15 PM, Evgeny Grin wrote: > Hi Silvio, > If I get you correctly, you are asking about proper way to run

Re: [libmicrohttpd] Release 0.9.58, but configuration summary is 0.9.55

2017-12-08 Thread Evgeny Grin
For git submodule you need to call 'autoreconf -i' after each update. -- Best Wishes, Evgeny Grin 08.12.2017 20:21, silvioprog пишет: > Hi dude! :-) > > I'm using git sub-module upgrading it each new MHD release, however > tarball can be a better option with AX_SUBDIRS_CONFIGURE(). > > Thanks f