Make configure find apxs2 if present. * build/ac-macros/svn-apache.m4 (FIND_APACHE): Search for apxs2 as well as apxs and look in /usr/bin, where some distros put it. Index: build/ac-macros/svn-apache.m4 =================================================================== --- build/ac-macros/svn-apache.m4 (revision 14705) +++ build/ac-macros/svn-apache.m4 (arbetskopia) @@ -72,9 +72,14 @@ ]) if test "$BINNAME" = "" -a "$APXS" = ""; then - for i in /usr/sbin /usr/local/apache/bin /usr/local/apache2/bin ; do + for i in /usr/sbin /usr/local/apache/bin /usr/local/apache2/bin /usr/bin ; do + if test -f "$i/apxs2"; then + APXS="$i/apxs2" + break + fi if test -f "$i/apxs"; then APXS="$i/apxs" + break fi done fi