summaryrefslogtreecommitdiffstatsabout
path: root/m4
diff options
context:
space:
mode:
authorEdward Rudd <urkle@outoforder.cc>2004-01-20 20:33:20 (GMT)
committer Edward Rudd <urkle@outoforder.cc>2004-01-20 20:33:20 (GMT)
commita5d838fab50df5d39396470b2bc9bf25e81cad53 (patch)
tree01968c890dc1c74ec00dd650646a3adf65b4c3e8 /m4
parentccd1b379bfc208c34ad61fc42cac4a797af6d153 (diff)
Added item registration function and added functions to new system header mod_log_sql.h
Registered core item functions in pre_config
Diffstat (limited to 'm4')
-rw-r--r--m4/apache.m46
1 files changed, 3 insertions, 3 deletions
diff --git a/m4/apache.m4 b/m4/apache.m4
index 93319e3..a72343c 100644
--- a/m4/apache.m4
+++ b/m4/apache.m4
@@ -139,7 +139,7 @@ AC_ARG_ENABLE(
139 AC_MSG_RESULT(yes) 139 AC_MSG_RESULT(yes)
140 AC_DEFINE(WITH_APACHE20,1,[Define to 1 if we are compiling with Apache 2.0.x]) 140 AC_DEFINE(WITH_APACHE20,1,[Define to 1 if we are compiling with Apache 2.0.x])
141 APACHE_VERSION="20" 141 APACHE_VERSION="20"
142 APACHE_OUTPUT_NAME=$PACKAGE_NAME.la 142 APXS_EXTENSION=.la
143 APACHE_DEFS="-DWITH_APACHE20" 143 APACHE_DEFS="-DWITH_APACHE20"
144 ifelse([$4], , , $4), 144 ifelse([$4], , , $4),
145 AC_MSG_RESULT(no) 145 AC_MSG_RESULT(no)
@@ -154,7 +154,7 @@ AC_ARG_ENABLE(
154 AC_MSG_RESULT(yes) 154 AC_MSG_RESULT(yes)
155 AC_DEFINE(WITH_APACHE13,1,[Define to 1 if we are compiling with Apache 1.3.x]) 155 AC_DEFINE(WITH_APACHE13,1,[Define to 1 if we are compiling with Apache 1.3.x])
156 APACHE_VERSION="13" 156 APACHE_VERSION="13"
157 APACHE_OUTPUT_NAME=$PACKAGE_NAME.so 157 APXS_EXTENSION=.so
158 APACHE_DEFS="-DWITH_APACHE13" 158 APACHE_DEFS="-DWITH_APACHE13"
159 ifelse([$3], , , $3), 159 ifelse([$3], , , $3),
160 AC_MSG_RESULT(no) 160 AC_MSG_RESULT(no)
@@ -167,6 +167,6 @@ AC_ARG_ENABLE(
167 AC_SUBST(APACHE_INCDIR) 167 AC_SUBST(APACHE_INCDIR)
168 AC_SUBST(APACHE_MODDIR) 168 AC_SUBST(APACHE_MODDIR)
169 AC_SUBST(APACHE_VERSION) 169 AC_SUBST(APACHE_VERSION)
170 AC_SUBST(APACHE_OUTPUT_NAME) 170 AC_SUBST(APXS_EXTENSION)
171 fi 171 fi
172]) 172])