Return-Path: Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 60585 invoked by uid 500); 2 Feb 2002 21:33:04 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 60574 invoked by uid 500); 2 Feb 2002 21:33:04 -0000 Delivered-To: apmail-httpd-2.0-cvs@apache.org Date: 2 Feb 2002 21:33:03 -0000 Message-ID: <20020202213303.20739.qmail@icarus.apache.org> From: trawick@apache.org To: httpd-2.0-cvs@apache.org Subject: cvs commit: httpd-2.0/support config.m4 X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N trawick 02/02/02 13:33:03 Modified: support config.m4 Log: finish implementing --enable-static-checkgid Revision Changes Path 1.3 +7 -0 httpd-2.0/support/config.m4 Index: config.m4 =================================================================== RCS file: /home/cvs/httpd-2.0/support/config.m4,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- config.m4 30 Sep 2001 07:57:15 -0000 1.2 +++ config.m4 2 Feb 2002 21:33:03 -0000 1.3 @@ -43,3 +43,10 @@ fi ]) APACHE_SUBST(ab_LTFLAGS) + +AC_ARG_ENABLE(static-checkgid,APACHE_HELP_STRING(--enable-static-checkgid,Build a statically linked version of checkgid),[ +if test "$enableval" = "yes" ; then + checkgid_LTFLAGS="-static" +fi +]) +APACHE_SUBST(checkgid_LTFLAGS)