Re: Trying to compile httpd trunk

2019-12-17 Thread Michal Karm Babacek
The last time I did this (a week or so ago on RHEL 7.6), I had to checkout both apr and apr-util, their 1.x branches, not trunk. I know apr and apr-util united under one apr trunk, but httpd trunk probably requires some flags/tweaks to pick srclib/apr trunk without apr-util K. On Tue, Dec

Re: Help needed to test Windows builds in Travis

2019-11-11 Thread Michal Karm
ds and >> steps that you usually do? I am not familiar enough with the platform >> and [1] is still a bit cryptic to me :) >> The end goal is to add the build steps to our Travis config, to run >> them every time that a commit happens. >> >> Thanks in advance! >&g

Re: Migrate to git?

2019-10-09 Thread Michal Karm
ense unless all committers agree that all code commits pass through PR gate, i.e. no direct commits. Almost all concerns about git and its presumed complexity can be addressed by adhering to a fixed workflow. GitHub PR workflow is one of the options. Reading the email thread, I get the vibe that t

Re: Default log file locations

2019-06-28 Thread Michal Karm
DFOREGROUND is used? Is it possible to locate that fd from within a module? Or is that fd closed already even when -DFOREGROUND is used...?  /trying to avoid depending on a new apr release/ K. Michal Karm Babacek -- Sent from my Hosaka Ono-Sendai Cyberspace 7 signature.asc Description: OpenPGP digital signature

lmdb, load-balancing, Sharing data about worker nodes among processes and threads in httpd

2019-02-18 Thread Michal Karm
] https://github.com/CZ-NIC/knot-resolver [4] https://knot-resolver.readthedocs.io/en/stable/daemon.html [5] http://www.openldap.org/software/release/license.html [6] https://github.com/nanomsg/nng Michal Karm Babacek -- Sent from my Hosaka Ono-Sendai Cyberspace 7

Re: Plan to add sandbox branch

2018-11-28 Thread Michal Karm
-ness to network and back. That STATUS info can > be used for "intelligent" load balancing and will provide some > typical server metrics such as memory, # of cpus, etc... > Michal Karm Babacek -- Sent from my Hosaka Ono-Sendai Cyberspace 7

Re: Load balancing and load determination

2018-10-30 Thread Michal Karm
lement this mod_cluster logic. Implementations exist for JBoss AS/Wildfly/Tomcat, but we don't have one for Jetty for example. On the bright side, the protocol itself is dead simple. Disclosure: I am involved in the project. Cheers Michal Karm Babacek -- Sent from my Hosaka Ono-Sendai Cyberspace 7

Re: Does httpd work with buildbot or considering buildbot

2018-09-17 Thread Michal Karm
ere is a trivial smoke test that loads all modules and tries HTTP and HTTPS. The job does not execute the httpd test suite -- it's on my spare time roadmap though... Build script: https://github.com/modcluster/ci.modcluster.io/blob/master/windows/httpd/build.bat Ad "Mustard after the meal",

[PATCH] [BZ 62567] Re: automation and test cases

2018-08-07 Thread Michal Karm
orking on automation and CI, this is a once-a-week nudge nudge [1] for someone to review a patch on [2]. Thx K [1] https://mail-archives.apache.org/mod_mbox/httpd-dev/201807.mbox/%3C1f0601c8-c44c-c5bb-b7be-4d50dca6c34e%40gmail.com%3E [2] https://bz.apache.org/bugzilla/show_bug.cgi?id=62567#c5 Michal Kar

httpd-policy conf glitches fixed: https://bz.apache.org/bugzilla/show_bug.cgi?id=62567#c5

2018-07-30 Thread Michal Karm
Hello, The patch fixes httpd-policy conf glitches https://bz.apache.org/bugzilla/show_bug.cgi?id=62567#c5 Cheers Michal Karm Babacek -- Sent from my Hosaka Ono-Sendai Cyberspace 7

Re: AW: Current trunk win build error

2018-07-25 Thread Michal Karm
gt; Regards > >   > > Rüdiger > >   > > *Von:*William A Rowe Jr > *Gesendet:* Dienstag, 24. Juli 2018 18:16 > *An:* httpd > *Betreff:* Re: Current trunk win build error > >   > > +1, looks great. > >   > Michal Karm Babacek -- Sent from my Hosaka Ono-Sendai Cyberspace 7

Re: AW: AW: Current trunk win build error

2018-07-25 Thread Michal Karm
> > Rüdiger > >> -Ursprüngliche Nachricht- >> Von: Michal Karm >> Gesendet: Mittwoch, 25. Juli 2018 10:28 >> An: dev@httpd.apache.org; Plüm, Rüdiger, Vodafone Group >> >> Betreff: Re: AW: Current trunk win build error >> >> On 0

Re: Current trunk win build error

2018-07-23 Thread Michal Karm
> > > > > > Error C2440 'initializing': cannot convert from 'proxy_worker > > *(__stdcall *)(proxy_balancer *,request_rec > > *,proxy_is_best_callback_fn_t (__cdecl *),void *)' to > > 'apr_OFN_ap_proxy_balancer_get_best_worker_t (__cdecl *)' > > > > mod_proxy c:\vc15\win32\httpd-trunk\modules\proxy\proxy_util.c 4082 > > > > Windows experts to the rescue please :-) > Seems to be an issue between PROXY_DECLARE and the optional function > stuff. > Does the following patch fix it (just guessing)? > > Index: mod_proxy.h > === > --- mod_proxy.h (revision 1836460) > +++ mod_proxy.h (working copy) > @@ -883,7 +883,7 @@ >  /* >   * Needed by the lb modules. >   */ > -APR_DECLARE_OPTIONAL_FN(proxy_worker *, > ap_proxy_balancer_get_best_worker, > +APR_DECLARE_OPTIONAL_FN(PROXY_DECLARE(proxy_worker *), > ap_proxy_balancer_get_best_worker, >                                          (proxy_balancer *balancer, >                                           request_rec *r, >                                           proxy_is_best_callback_fn_t > *is_best, > > > > Regards > > Rüdiger > >   > > Michal Karm Babacek -- Sent from my Hosaka Ono-Sendai Cyberspace 7

[RESOLVED] Re: Regression with CMake Windows builds, 2.4.29 is the last one passing

2018-07-20 Thread Michal Karm
On 07/19/2018 08:18 PM, William A Rowe Jr wrote: > Hi Michal, thanks for your report. > > On Thu, Jul 19, 2018 at 10:36 AM, Michal Karm <mailto:michal.baba...@gmail.com>> wrote: > > Hi guys, > > I would like to ask whether there are any plans on >

Regression with CMake Windows builds, 2.4.29 is the last one passing

2018-07-19 Thread Michal Karm
to come up with a patch. Thank you for your time K. [1] https://bz.apache.org/bugzilla/show_bug.cgi?id=62190 [2] https://bz.apache.org/bugzilla/show_bug.cgi?id=62557 Michal Karm Babacek -- Sent from my Hosaka Ono-Sendai Cyberspace 7

Re: BalancerMember and RFC1035 compliance - BalancerMember worker hostname (65-character.long.DNS.name.com) too long

2018-02-07 Thread Michal Karm
, > Graham > — > Hello Graham, See https://bz.apache.org/bugzilla/show_bug.cgi?id=53218 I believe it is related to what you are talking about. Cheers Michal Karm Babacek -- Sent from my Hosaka Ono-Sendai Cyberspace 7 signature.asc Description: OpenPGP digital signature

Re: windows building

2017-11-16 Thread Michal Karm
o start with [1] (no intention to re-start CMake vs. "native" .vcproj flame) Or do you guys hand-craft NMake files? Any hints? Have I missed anything obvious on the list? Cheers Karm [1] https://github.com/icing/mod_md Michal Karm Babacek -- Sent from my Hosaka Ono-Sendai Cyberspace

Re: mod_proxy_http2 windows build

2016-05-18 Thread Michal Karm
ways helpful Windows people: do we need a mod_proxy_http2.dsp in trunk/modules/http2 (and 2.4.x branch for next release)? -Stefan Or perhaps to seize the opportunity to purge .dep/.mak and have a proper CMakeLists.txt instead? :) Michal Karm Babacek -- Sent from my Hosaka Ono-Sendai Cyberspace 7

Re: svn commit: r1650655 - in /httpd/httpd/branches/2.4.x: CHANGES STATUS modules/proxy/proxy_util.c

2015-11-18 Thread Michal Karm
.gmail.com%3E [2] http://mail-archives.apache.org/mod_mbox/httpd-dev/201511.mbox/%3CCAKQ1sVO_-Shud7EXrCBn-KhjdPdNVk96Npwxeeb6Lk5n0TE1KA%40mail.gmail.com%3E Michal Karm Babacek -- Sent from my Hosaka Ono-Sendai Cyberspace 7