use a MMN check instead of ifdef for APLOG_USE_MODULE to make
it easier to understand the prereq down the road


git-svn-id: https://svn.apache.org/repos/asf/httpd/mod_fcgid/trunk@1057885 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/modules/fcgid/fcgid_global.h b/modules/fcgid/fcgid_global.h
index bf34fbb..d52a2fb 100644
--- a/modules/fcgid/fcgid_global.h
+++ b/modules/fcgid/fcgid_global.h
@@ -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