You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by je...@apache.org on 2003/02/15 18:51:44 UTC

cvs commit: httpd-2.0/support apachectl.in

jerenkrantz    2003/02/15 09:51:44

  Modified:    .        CHANGES configure.in
               support  apachectl.in
  Log:
  Allow apachectl to perform status with links and elinks as well if lynx is
  not available.
  
  Revision  Changes    Path
  1.1070    +3 -0      httpd-2.0/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/CHANGES,v
  retrieving revision 1.1069
  retrieving revision 1.1070
  diff -u -u -r1.1069 -r1.1070
  --- CHANGES	15 Feb 2003 12:55:46 -0000	1.1069
  +++ CHANGES	15 Feb 2003 17:51:44 -0000	1.1070
  @@ -2,6 +2,9 @@
   
     [Remove entries to the current 2.0 section below, when backported]
   
  +  *) Allow apachectl to perform status with links and elinks as well.
  +     [Justin Erenkrantz]
  +
     *) Fix segfault which occurred when a section in an included file was
        not closed. PR 17093.  [Andr� Malo]
   
  
  
  
  1.241     +1 -0      httpd-2.0/configure.in
  
  Index: configure.in
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/configure.in,v
  retrieving revision 1.240
  retrieving revision 1.241
  diff -u -u -r1.240 -r1.241
  --- configure.in	7 Feb 2003 20:28:41 -0000	1.240
  +++ configure.in	15 Feb 2003 17:51:44 -0000	1.241
  @@ -237,6 +237,7 @@
   AC_PROG_LN_S
   AC_CHECK_TOOL(RANLIB, ranlib, true)
   dnl AC_PATH_PROG(PERL_PATH, perl)
  +AC_CHECK_PROGS(LYNX_PATH,[lynx links elinks], [lynx])
   
   dnl various OS checks that apparently set required flags
   AC_AIX
  
  
  
  1.19      +1 -1      httpd-2.0/support/apachectl.in
  
  Index: apachectl.in
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/support/apachectl.in,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -u -r1.18 -r1.19
  --- apachectl.in	3 Feb 2003 17:53:27 -0000	1.18
  +++ apachectl.in	15 Feb 2003 17:51:44 -0000	1.19
  @@ -38,7 +38,7 @@
   # a command that outputs a formatted text version of the HTML at the
   # url given on the command line.  Designed for lynx, however other
   # programs may work.  
  -LYNX="lynx -dump"
  +LYNX="@LYNX_PATH@ -dump"
   #
   # the URL to your server's mod_status status page.  If you do not
   # have one, then status and fullstatus will not work.