From: kouril Date: Tue, 4 Nov 2003 13:52:14 +0000 (+0000) Subject: - set bugs contact to the developer list X-Git-Tag: v5.0-rc3~16 X-Git-Url: http://www.project-moonshot.org/gitweb/?p=mod_auth_kerb.git;a=commitdiff_plain;h=d3718cc1f0340b72d7ea497d8c2e3f0e97e23572 - set bugs contact to the developer list - the apxs and httpd binaries are also looked for in the sbin subdirs --- diff --git a/configure.in b/configure.in index 1fb0447..165ad8f 100644 --- a/configure.in +++ b/configure.in @@ -1,7 +1,7 @@ # Process this file with autoconf to produce a configure script. AC_REVISION($Revision$) AC_PREREQ(2.53) -AC_INIT(mod_auth_kerb, 0.5-rc2, kouril@users.sourceforge.net) +AC_INIT(mod_auth_kerb, 0.5-rc2, modauthkerb-developers@lists.sourceforge.net) AC_CONFIG_SRCDIR([src/mod_auth_kerb.c]) AC_CONFIG_HEADER([config.h]) @@ -168,7 +168,13 @@ if test "x$with_apache" != "x"; then AC_MSG_ERROR([failed to find apache files in $with_apache]) fi APXS="$with_apache/bin/apxs" + if test ! -x $APXS; then + APXS="$with_apache/sbin/apxs" + fi HTTPD="$with_apache/bin/httpd" + if test ! -x $HTTPD; then + HTTPD"$with_apache/sbin/httpd" + fi fi apache_v1_3=`$HTTPD -v | grep "^Server version: Apache/1.3."`