Return-Path: Delivered-To: apmail-apache-cvs-archive@apache.org Received: (qmail 98871 invoked by uid 500); 11 Jul 2000 00:01:51 -0000 Mailing-List: contact apache-cvs-help@apache.org; run by ezmlm Precedence: bulk X-No-Archive: yes Reply-To: new-httpd@apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list apache-cvs@apache.org Received: (qmail 98860 invoked by uid 500); 11 Jul 2000 00:01:51 -0000 Delivered-To: apmail-apache-2.0-cvs@apache.org Date: 11 Jul 2000 00:01:51 -0000 Message-ID: <20000711000151.98856.qmail@locus.apache.org> From: gstein@locus.apache.org To: apache-2.0-cvs@apache.org Subject: cvs commit: apache-2.0/src/modules/mpm/mpmt_pthread config.m4 gstein 00/07/10 17:01:50 Modified: src/modules/mpm/mpmt_pthread config.m4 Log: make sure this is defined, so that mpm_common.c compiles with the right values, functions, whatever. specifically, ap_reclaim_child_processes() was not getting compiled into mpm_common. this appears to keep mpmt_pthread running properly. dunno whether a similar issue exists for prefork or dexter. (until all are torched) Revision Changes Path 1.6 +2 -0 apache-2.0/src/modules/mpm/mpmt_pthread/config.m4 Index: config.m4 =================================================================== RCS file: /home/cvs/apache-2.0/src/modules/mpm/mpmt_pthread/config.m4,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- config.m4 2000/06/13 01:08:19 1.5 +++ config.m4 2000/07/11 00:01:50 1.6 @@ -11,4 +11,6 @@ dnl Obsolete scoreboard code uses this. AC_CHECK_HEADERS(sys/times.h) AC_CHECK_FUNCS(times) + + EXTRA_CFLAGS="$EXTRA_CFLAGS -DMPMT_PTHREAD" fi