You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by tr...@apache.org on 2011/01/11 22:42:40 UTC

svn commit: r1057885 - /httpd/mod_fcgid/trunk/modules/fcgid/fcgid_global.h

Author: trawick
Date: Tue Jan 11 21:42:39 2011
New Revision: 1057885

URL: http://svn.apache.org/viewvc?rev=1057885&view=rev
Log:
use a MMN check instead of ifdef for APLOG_USE_MODULE to make
it easier to understand the prereq down the road

Modified:
    httpd/mod_fcgid/trunk/modules/fcgid/fcgid_global.h

Modified: httpd/mod_fcgid/trunk/modules/fcgid/fcgid_global.h
URL: http://svn.apache.org/viewvc/httpd/mod_fcgid/trunk/modules/fcgid/fcgid_global.h?rev=1057885&r1=1057884&r2=1057885&view=diff
==============================================================================
--- httpd/mod_fcgid/trunk/modules/fcgid/fcgid_global.h (original)
+++ httpd/mod_fcgid/trunk/modules/fcgid/fcgid_global.h Tue Jan 11 21:42:39 2011
@@ -22,7 +22,7 @@
 #include "http_core.h"
 #include "http_log.h"
 
-#ifdef APLOG_USE_MODULE
+#if AP_MODULE_MAGIC_AT_LEAST(20100606,0)
 APLOG_USE_MODULE(fcgid);
 #endif