update-changes:
@for i in `find changes-entries -type f`; do \
cp CHANGES CHANGES.tmp ; \
- awk -vfname=$$i 'BEGIN{done = 0} \
+ awk -v fname=$$i 'BEGIN{done = 0} \
done == 0 && /^Changes with Apache /{ active = 1; print; next}; \
/^ *\*/ && active == 1 && done == 0{rec=$$0; while(getline<fname){if (! ($$0 ~ /^ *$$/)){print}}printf "\n";print rec; active = 0; done = 1; next} //;' \
CHANGES.tmp > CHANGES ; \
PATCHES ACCEPTED TO BACKPORT FROM TRUNK:
[ start all new proposals below, under PATCHES PROPOSED. ]
- *) Makefile: Do variable setting for awk in a more portable way such that it
- works on MacOS as well.
- Trunk version of patch:
- https://svn.apache.org/r1886098
- Backport version for 2.4.x of patch:
- Trunk version of patch works
- svn merge -c 1886098 ^/httpd/httpd/trunk .
- +1: rpluem, jorton, ylavic
-
*) core: Optimize 'ap_list_provider_names'. Save some memory and potentialy
avoid some useless copy.
trunk patch: http://svn.apache.org/r1883184