1. 10 Oct, 2001 3 commits
  2. 09 Oct, 2001 1 commit
  3. 06 Oct, 2001 2 commits
  4. 04 Oct, 2001 2 commits
  5. 03 Oct, 2001 1 commit
  6. 02 Oct, 2001 2 commits
  7. 30 Sep, 2001 1 commit
    • Justin Erenkrantz's avatar
      Kill two autoconf-related birds with one commit. · c631e51f
      Justin Erenkrantz authored
      - substr used in APACHE_MODULE for the help string did not parse correctly
        with autoconf 2.50+ so we had to punt there anyway and use AC_HELP_STRING.
      - Add APACHE_HELP_STRING define that will call AC_HELP_STRING on 2.50+
        (actually not 2.13 - look at the regex call) or do our custom variation
        of it.  This function can't have any extra spaces or it will be returned
        in the help string.  So noted.  If anyone can figure out how to insert
        a line break like 2.50+ does when we go over the 26th column, I'd
        appreciate it.  I tried and I'm way too tired to figure it out now.
        Adding this would greatly simplify two or three HELP_STRING uses.
      - Switch all of those annoying WITH and ENABLE functions to use the
        APACHE_HELP_STRING.  This makes everything consistent now.  I've always
        had to go through and keep aligning everything every few months or so
        because I'm the only one who cares.  No more.  I refuse to do it any more!
        Use APACHE_HELP_STRING or be crucified.
      
      Looks decent with autoconf-2.13 and autoconf-2.52.
      
      
      git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@91211 13f79535-47bb-0310-9956-ffa450edef68
      c631e51f
  8. 29 Sep, 2001 1 commit
  9. 28 Sep, 2001 3 commits
  10. 26 Sep, 2001 1 commit
  11. 24 Sep, 2001 1 commit
  12. 21 Sep, 2001 1 commit
  13. 19 Sep, 2001 4 commits
  14. 18 Sep, 2001 4 commits
    • Ryan Bloom's avatar
      Turn the worker MPM's queue into a LIFO. This may · 9da27961
      Ryan Bloom authored
      improve cache-hit performance under some conditions.
      
      Submitted by:   Aaron Bannert <aaron@clove.org>
      
      
      git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@91077 13f79535-47bb-0310-9956-ffa450edef68
      9da27961
    • Justin Erenkrantz's avatar
      Switch back to SIGUSR1 for graceful restarts on all platforms that · 99ec1c2a
      Justin Erenkrantz authored
      support it.  This defines a symbol called AP_SIG_GRACEFUL in
      ap_config_auto.h which will have the appropriate signal value.  All
      direct references to SIGWINCH have been replaced with AP_SIG_GRACEFUL.
      
      On Linux 2.0, use SIGWINCH instead since SIGUSR1 is used by glibc
      2.0's user-space threading library to control threads.  All later
      versions of Linux/glibc don't have this problem.  (Not to mention the
      security holes in older Linux versions which make it unsuitable for
      use as a web server.)  If your platform doesn't have SIGUSR1, use the
      appropriate mojo in configure to define what your graceful restart
      signal should be.
      
      In theory, a configure switch could be added to allow the admin to
      specify the appropriate signal that should be used.  This is left
      as an exercise to the reader for now.
      
      The docs need to be updated.  Since the signal is now configurable,
      just saying SIGUSR1 for graceful restart isn't completely true.  Also,
      the apachectl functionality needs to be moved into httpd - this is
      what Win32 does and it makes us consistent across platforms.
      
      Roy issued a veto against use of SIGWINCH by default, so this should
      resolve that veto.
      
      
      git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@91076 13f79535-47bb-0310-9956-ffa450edef68
      99ec1c2a
    • Ryan Bloom's avatar
      Cleanup the worker MPM. We no longer re-use transaction · d554b00f
      Ryan Bloom authored
      pools.  This incurs less overhead than shuffling the pools
      around so that they can be re-used.  Remove one of the
      queue's condition variables.  We just redefined the API to
      state that you can't try to add more stuff than you allocated
      segments for.
      
      Submitted by:	  Aaron Bannert <aaron@clove.org>
      
      
      git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@91075 13f79535-47bb-0310-9956-ffa450edef68
      d554b00f
    • Greg Stein's avatar
      I always forget this file... · effa04ea
      Greg Stein authored
      
      git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@91068 13f79535-47bb-0310-9956-ffa450edef68
      effa04ea
  15. 17 Sep, 2001 1 commit
    • William A. Rowe Jr's avatar
      · ee42a492
      William A. Rowe Jr authored
         Remove the Win32 script-processing exception from mod_cgi, and
         roll build_command_line/build_argv_list into a unified, overrideable
         ap_cgi_build_command optional function.
      
         Eliminates a ton of Win32 cruft from core.c for registry parsing.
         Win32 (through the default handler, and newest changes to the
         apr_proc_create fn) continues to serve .bat/.exe files.  This is in
         preparation for adding modules/arch/win32/mod_win32 for scripts.
      
         Please review the mod_cgi.c behavior very carefully.
      
      
      git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@91058 13f79535-47bb-0310-9956-ffa450edef68
      ee42a492
  16. 06 Sep, 2001 3 commits
  17. 04 Sep, 2001 1 commit
  18. 02 Sep, 2001 3 commits
  19. 31 Aug, 2001 1 commit
  20. 30 Aug, 2001 4 commits
    • Justin Erenkrantz's avatar
      Fix a segfault with mod_include when r->path_info is not set · db9d065e
      Justin Erenkrantz authored
      (which is the case with mod_proxy).
      
      My only question about this is whether we should place some value
      (such as <UNKNOWN>) when path_info isn't set.
      
      Submitted by:	Ian Holsman <ianh@cnet.com>
      Reviewed by:	Justin Erenkrantz
      
      
      git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90825 13f79535-47bb-0310-9956-ffa450edef68
      db9d065e
    • Justin Erenkrantz's avatar
      Add -X functionality back to httpd. · f24e3d7f
      Justin Erenkrantz authored
      - Updates upgrading.html
      - Reverts Aaron's earlier docco patch (sorry...)
      - Adds -X to all mpms in the tree
      
      
      git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90824 13f79535-47bb-0310-9956-ffa450edef68
      f24e3d7f
    • William A. Rowe Jr's avatar
      · f38b5bf2
      William A. Rowe Jr authored
        * configure.in: added Cygwin specific APR_SETVARs.
      
        * os/config.m4: added Cygwin specific values for $OS and $OS_DIR.
          $OS_DIR will change to "cygwin" as soon as I get the DSO/DLL things
          clean as with 1.3.20.
      
        * support/logresolve.c: added OS specific #ifdef statement to define
          h_errno as extern __declspec(dllimport); it's imported from the
          cygwin1.dll itself.
      
      Submitted by: Stipe Tolj <tolj@wapme-systems.de>
      
      
      git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90805 13f79535-47bb-0310-9956-ffa450edef68
      f38b5bf2
    • William A. Rowe Jr's avatar
      · e28e60f1
      William A. Rowe Jr authored
           Changed syntax of Set{Input|Output}Filter.  The list of filters
           must be semicolon delimited (if more than one filter is given.)
           The Set{Input|Output}Filter directive now overrides a parent
           container's directive (e.g. SetInputFilter in <Directory /web/foo>
           will override any SetInputFilter directive in <Directory /web>.)
           This new syntax is more consistent with Add{Input|Output}Filter
           directives defined in mod_mime.  Also cures a bug in prior releases
           where the Set{Input|Output}Filter directive would corrupt the
           global configuration if the multiple directives were nested.
           [William Rowe]
      
      
      git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90799 13f79535-47bb-0310-9956-ffa450edef68
      e28e60f1