From: Jeff Trawick Date: Sat, 2 Feb 2002 21:33:03 +0000 (+0000) Subject: finish implementing --enable-static-checkgid X-Git-Tag: 2.0.32~134 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e39e40da73c0bb32b9839473f923ba7328a2e9a6;p=apache finish implementing --enable-static-checkgid git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@93187 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/support/config.m4 b/support/config.m4 index bbaf0f3e83..f04ae26b0c 100644 --- a/support/config.m4 +++ b/support/config.m4 @@ -43,3 +43,10 @@ if test "$enableval" = "yes" ; then 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)