Re: Succeed compilation with FIPS

2011-06-04 Thread Andrew Punch
Hi, Typically you would provide the required environment variables to configure. e.g../configure --with-ssl=path_to_openSSL_FIPS_libraries CC=fipsld FIPSLD_CC=gcc Sometimes you might need to specify the environment variables before configure or make for example: CC=fipsld FIPSLD_CC=gcc

Re: [PATCH 41743] Graceful restart with prefork mpm issue

2011-02-02 Thread Andrew Punch
at 07:43 +, Ruediger Pluem wrote: On 02/02/2011 12:57 AM, Andrew Punch wrote: Hi, I have contributed a patch to the long-standing bug 41743. A summary of the issue is that if a keep-alive connection is active then the child process never exits in certain cases (see bug for full

Re: [PATCH 41743] Graceful restart with prefork mpm issue

2011-02-02 Thread Andrew Punch
feedback. Thanks -Andrew On Wed, 2011-02-02 at 07:43 +, Ruediger Pluem wrote: On 02/02/2011 12:57 AM, Andrew Punch wrote: Hi, I have contributed a patch to the long-standing bug 41743. A summary of the issue is that if a keep-alive connection is active then the child process never

[PATCH 41743] Graceful restart with prefork mpm issue

2011-02-01 Thread Andrew Punch
Hi, I have contributed a patch to the long-standing bug 41743. A summary of the issue is that if a keep-alive connection is active then the child process never exits in certain cases (see bug for full details). The expected behaviour, the behaviour of worker and the behaviour of 1.3 is that a

Re: Maintaining modules.mk for modules with multiple sources...

2010-09-22 Thread Andrew Punch
Hi, I recently had a similar problem. What rules do you have for compiling .c into .lo/.slo (or into .lo/.slo via .o)? Does the makefile work correctly if you manually enter the filenames. i.e: C_FILES=merchant_mod.c ... LO_FILES=merchange_mod.lo ... SLO_FILES=merchant_mod.slo ... -Andrew On