You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by jf...@apache.org on 2001/09/06 10:49:39 UTC

cvs commit: jakarta-tomcat-connectors/jk/native configure.in

jfclere     01/09/06 01:49:39

  Modified:    jk/native configure.in
  Log:
  Improve the error message with the given apxs is no valid.
  
  Revision  Changes    Path
  1.12      +3 -3      jakarta-tomcat-connectors/jk/native/configure.in
  
  Index: configure.in
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/native/configure.in,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- configure.in	2001/08/31 12:16:56	1.11
  +++ configure.in	2001/09/06 08:49:39	1.12
  @@ -1,7 +1,7 @@
   dnl
   dnl Process this file with autoconf to produce a configure script
   dnl
  -AC_REVISION($Id: configure.in,v 1.11 2001/08/31 12:16:56 jfclere Exp $)dnl
  +AC_REVISION($Id: configure.in,v 1.12 2001/09/06 08:49:39 jfclere Exp $)dnl
   
   AC_PREREQ(2.13)
   AC_INIT(common/jk_ajp13.h)
  @@ -73,10 +73,10 @@
                   AC_MSG_ERROR(Invalid location for apxs: '${APXS}')
               fi
               
  -            $APXS -q PREFIX >/dev/null 2>/dev/null || apxs_support=false
  +            ${APXS} -q PREFIX >/dev/null 2>/dev/null || apxs_support=false
       
               if ${TEST} "${apxs_support}" = "false" ; then
  -                AC_MSG_RESULT(could not find apxs)
  +                AC_MSG_RESULT(could not find ${APXS})
                   AC_MSG_ERROR(You must specify a valid --with-apxs path)
               fi