summaryrefslogtreecommitdiff
path: root/buildconf
diff options
context:
space:
mode:
authorStefan Fritsch <sf@apache.org>2010-11-06 14:31:16 +0000
committerStefan Fritsch <sf@apache.org>2010-11-06 14:31:16 +0000
commit35cdba6976ca6f8a9bde73267340c40d7ae6d496 (patch)
treecc1609882f476369e5edea4aef79a868fef4f7fd /buildconf
parent11185f31630922c67eeaf930bc65c80ce7eb007e (diff)
downloadhttpd-35cdba6976ca6f8a9bde73267340c40d7ae6d496.tar.gz
Replace ap_expr with a parser derived from mod_ssl's parser. Make mod_ssl use
the new parser. Rework ap_expr's public interface and provide hooks for modules to add variables and functions. The Netware and Windows build files still need to be adjusted git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1032073 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'buildconf')
-rwxr-xr-xbuildconf14
1 files changed, 7 insertions, 7 deletions
diff --git a/buildconf b/buildconf
index 772610343a..afa3f3896b 100755
--- a/buildconf
+++ b/buildconf
@@ -226,15 +226,15 @@ if [ -f `which cut` ]; then
> httpd.spec )
fi
-# ensure that the mod_ssl expression parser sources are never regenerated
+# ensure that the ap_expr expression parser sources are never regenerated
# when running make
-echo fixing timestamps for mod_ssl sources
-cd modules/ssl
-touch ssl_expr_parse.y
+echo fixing timestamps for ap_expr sources
+cd server
+touch util_expr_parse.y
sleep 1
-touch ssl_expr_parse.c ssl_expr_parse.h ssl_expr_scan.l
+touch util_expr_parse.c util_expr_parse.h util_expr_scan.l
sleep 1
-touch ssl_expr_scan.c
-cd ../..
+touch util_expr_scan.c
+cd ..
exit 0