Changes with Apache 2.0.16-dev
+ *) Cleanup the --enable-layout option of configure. This makes
+ us use a consistent location for the config.layout file, and it
+ makes configure more portable.
+ [jun-ichiro hagino <itojun@iijlab.net>]
+
*) Changes to 'ab'; fixed int overrun's, added statistics, output in
csv/gnuplot format, rudimentary ssl support and various other tweaks
to make results more true to what is measured. The upshot of this it
dnl APACHE_LAYOUT(configlayout, layoutname)
AC_DEFUN(APACHE_LAYOUT,[
if test ! -f $srcdir/config.layout; then
- echo "** Error: Layout file $srcdir/../config.layout not found"
+ echo "** Error: Layout file $srcdir/config.layout not found"
echo "** Error: Cannot use undefined layout '$LAYOUT'"
exit 1
fi
- pldconf=config.pld
+ pldconf=./config.pld
changequote({,})
sed -e "1,/[ ]*<[lL]ayout[ ]*$2[ ]*>[ ]*/d" \
-e '/[ ]*<\/Layout>[ ]*/,$d' \
libexecdir='${prefix}/modules'
layout_name=Apache
else
- APACHE_LAYOUT($srcdir/../config.layout, $LAYOUT)
+ APACHE_LAYOUT($srcdir/config.layout, $LAYOUT)
fi
AC_MSG_CHECKING(for chosen layout)