1. 17 Dec, 2001 1 commit
  2. 15 Dec, 2001 1 commit
  3. 14 Dec, 2001 1 commit
  4. 12 Dec, 2001 1 commit
  5. 10 Dec, 2001 1 commit
  6. 08 Dec, 2001 1 commit
  7. 07 Dec, 2001 3 commits
  8. 05 Dec, 2001 2 commits
  9. 03 Dec, 2001 2 commits
    • William A. Rowe Jr's avatar
      · 130c56a2
      William A. Rowe Jr authored
        Resolved segfault in mod_isapi when configuring with ISAPICacheFile.
      
      PR: 8563, 8919
      
      
      git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@92301 13f79535-47bb-0310-9956-ffa450edef68
      130c56a2
    • Greg Ames's avatar
      get binbuild working when apr, apr-util, and expat are built shared in · f14311db
      Greg Ames authored
      directories that are not well known to the loader.
      
      How it works:
      * libtool figures out the name of this system's library path environment
        variable (i.e. LD_LIBRARY_PATH, LIBPATH, DYLD_LIBRARY_PATH) at apr
        configure time (existing code)
      * save this variable name in SHLIBPATH_VAR in APRVARS
      * substitute this name when apachectl is created
      * uncomment the lines containing this variable during binbuild
      * install_bindist.sh updates the path to lib/ when the binary is
        installed (existing code)
      
      not done yet, but a good idea:
      * create a file or directory containing all environment variable settings
        for apachectl.  Others env vars need to be tweaked, at least on AIX and
        OS/390, so keeping them separate should reduce headaches long term.
      
      
      git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@92299 13f79535-47bb-0310-9956-ffa450edef68
      f14311db
  10. 01 Dec, 2001 2 commits
  11. 29 Nov, 2001 2 commits
  12. 28 Nov, 2001 1 commit
  13. 27 Nov, 2001 3 commits
  14. 24 Nov, 2001 3 commits
  15. 23 Nov, 2001 1 commit
  16. 22 Nov, 2001 2 commits
  17. 21 Nov, 2001 3 commits
  18. 20 Nov, 2001 3 commits
  19. 19 Nov, 2001 3 commits
  20. 18 Nov, 2001 1 commit
  21. 17 Nov, 2001 1 commit
  22. 15 Nov, 2001 1 commit
  23. 13 Nov, 2001 1 commit
    • Ryan Bloom's avatar
      Allow modules that add sockets to the ap_listeners list to · 0dc8f880
      Ryan Bloom authored
      define the function that should be used to accept on that
      socket.  Each MPM can define their own function to use for
      the accept function with the MPM_ACCEPT_FUNC macro.  This
      also abstracts out all of the Unix accept error handling
      logic, which has become out of synch across Unix MPMs.
      
      The code flow is much easier now for different transports:
      
      1)  During pre-config, post-config or while parsing the config
          file, add a socket to the ap_listeners list, making sure to
          define an accept function at the same time.
      
      2)  MPMs find the correct listener, and call the accept function
          that was defined in step 1.
      
      3)  That accept function returns a void pointer, which is passed
          to the create_connection hook.
      
      4)  create_connection adds the correct low-level filters.
      
      
      git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@91916 13f79535-47bb-0310-9956-ffa450edef68
      0dc8f880